 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}
    .navbar-nav .nav-link {
        font-size: 16px;
        transition: color 0.3s ease;
    }
    .navbar-nav .nav-link:hover {
        color: #06c4fd !important;
    }
/* Slider Section */
/* Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #101820;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-block: 50px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    display: none; /* Hide all slides initially */
    align-items: center;
    justify-content: space-between;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: flex;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content {
    max-width: 50%;
    padding: 20px;
}

.content h1 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.content p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
}

.btn-call {
    display: inline-block;
    background: #06c4fd;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
}
/*
.btn-call:hover {
    background: #0056b3;
}
*/
.slide img {
    width: 35%;
    height: auto;
    object-fit: cover;
    margin-top: 50px;
}

/* 🔹 Fix Mobile View */
@media (max-width: 768px) {
    .hero-slider {
        height: auto;
        padding: 50px 0;
        margin-top: 85px;
    }

    .slider-container {
        flex-direction: column;
        text-align: center;
    }

    .slide {
        flex-direction: column;
    }

    .content {
        max-width: 100%;
        padding: 10px;
    }

    .slide img {
        width: 100%;
        max-width: 90%;
        margin-top: 20px;
    }
}

/* Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.slider-dots span.active {
    background: #007bff;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover, .next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
.about-us-section {
    background: #101820;
    backdrop-filter: blur(10px);
    padding: 80px 0;
    color: white;
}

.about-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    font-size: 1.1rem;
    margin: 10px 0;
}

.about-text ul li i {
    color: #06c4fd;
    margin-right: 10px;
}

.animated-image {
    width: 80%;
    animation: floatAnimation 3s infinite ease-in-out;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.features-section {
    background: #101820;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #06c4fd;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(6, 196, 253, 0.2);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(6, 196, 253, 0.6);
}

.feature-icon {
    font-size: 40px;
    color: #06c4fd;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-card p {
    font-size: 1rem;
    color: #ddd;
}
.cta-section {
    background: linear-gradient(135deg, #06c4fd, #043a4a);
    padding: 80px 0;
    text-align: center;
    color: white;
    box-shadow: 0 0 20px rgba(6, 196, 253, 0.4);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-button {
    background: #ffffff;
    color: #06c4fd;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cta-button:hover {
    background: #101820;
    color: white;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}
.why-choose-us {
    background: #101820;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #06c4fd;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.why-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(6, 196, 253, 0.2);
    transition: 0.3s;
}

.why-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06c4fd, #004c7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    margin: 0 20px;
    transition: 0.3s;
}

.why-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.why-item:hover {
    background: #06c4fd;
    color: black;
    transform: scale(1.05);
}

.why-item:hover .why-icon {
    background: white;
    color: #06c4fd;
}

@media (max-width: 768px) {
    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin-bottom: 10px;
    }
}
.pricing-section {
    background: #0a0a0a;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #06c4fd;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #141414;
    padding: 30px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(6, 196, 253, 0.2);
    transition: 0.3s;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #06c4fd;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    color: #cccccc;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    font-size: 1rem;
    margin: 10px 0;
    color: #cccccc;
}

.pricing-card ul li i {
    color: #06c4fd;
    margin-right: 8px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #06c4fd;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
/*
.btn:hover {
    background: white;
    color: #06c4fd;
}*/

.popular {
    background: linear-gradient(135deg, #06c4fd, #004c7f);
    color: white;
    transform: scale(1.05);
}

.popular h3 {
    color: white;
}

.popular ul li i {
    color: white;
}

.popular .btn {
    background: white;
    color: #06c4fd;
}

@media (max-width: 768px) {
    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
    }
}
.footer {
    background: #101820;
    color: white;
    padding: 60px 0 10px;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: #cccccc;
    max-width: 250px;
}

.footer-links, .footer-contact, .footer-social {
    width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #06c4fd;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #06c4fd;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cccccc;
}

.footer-contact p i {
    color: #06c4fd;
    margin-right: 8px;
}

.footer-social .social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #06c4fd;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #cccccc;
}

.contact-section {
    background: #0a0a0a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #06c4fd;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.contact-form, .contact-info {
    width: 100%;
    max-width: 400px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: white;
    font-size: 16px;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaaaaa;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #06c4fd;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #0590c1;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #06c4fd;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #cccccc;
}

.contact-info p i {
    color: #06c4fd;
    margin-right: 8px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #06c4fd;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}
