@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SF-Pro-Display-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SF-Pro-Display-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SF-Pro-Display-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

body {
    font-family: 'SF Pro Display', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer !important;
}



/* Glassy Background */
.navbar-custom {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1); /* Transparent White */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    font-family: 'poppins';
    font-size: 16px;
    line-height: 24px;
}

/* Button Style */
.btn-primary-custom {
    background-color: #136DFB;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 100;
    line-height: 24px;
    letter-spacing: .8px;
}

.btn-primary-custom:hover {
    background-color: white !important;
    color: #136DFB;
}

/* Fixed Navbar */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* HERO SECTION */
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fc;
    text-align: center;
}

.hero-title {
    font-family: 'SF Pro Display', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 35px;
    }
}

.highlight {
    color: #136DFB;
}

.hero-text {
    font-size: 18px;
    margin-top: 15px;
    color: #000;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 400;
    padding: 15px 0;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary-custom, .btn-outline-custom {
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary-custom {
    background-color: #007bff;
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    border: 2px solid #007bff;
}

.btn-outline-custom {
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline-custom:hover {
    background-color: #007bff;
    color: white;
}

/* HERO IMAGE */
.hero-image {
    max-width: 100%;
    height: auto;
}

.ellipse-1, .ellipse-2 {
    width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .ellipse-1, .ellipse-2 {
        width: 80px;
    }
}

/* ARROWS */
.hero-arrow-1 {
    position: absolute;
    top: -50px;
    left: -30px;
    width: 100px;
}

.hero-arrow-2 {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 100px;
}

@media (max-width: 768px) {
    .hero-arrow-1, .hero-arrow-2 {
        display: none;
    }
}

/* FLOATING CARD */
.floating-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

.card-subtitle {
    font-size: 16px;
    color: #555;
}

/* FLOATING ANIMATION */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    animation: floatAnimation 4s ease-in-out infinite;
}

/* SERVICES SECTION */
.services-section {
    background-color: #fff;
    padding: 150px 0px;
}

/* Title and Subtitle */
.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    text-align: center;
}

.services-subtitle {
    font-size: 20px;
    color: #000;
    text-align: center;
    font-weight: 400;
    line-height: 30px;
}


/* SERVICE CARDS */
.service-card {
    background-color: #009FFF; /* Blue background */
    color: #fff;              /* White text */
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%; /* Change width to 100% for better responsiveness */
    max-width: 400px; /* Set a max-width for the cards */
    margin: 0 auto; /* Center the cards */
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: #007bff;
    border-radius: 60%;
    margin: 0 auto;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-title {
    font-weight: 500;
    margin-top: 1rem;
    font-size: 24px;
    text-align: center;
    line-height: 42px;
}

.service-text {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

/* Adjustments for responsive alignment */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px; /* Add space between cards */
    }
}


/* ABOUT SECTION */
.about-section {
    background-color: #fff;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    letter-spacing: 0%;
    width: 60%;
    margin-bottom: 20px; /* Add margin-bottom for spacing */
}

.text-primary {
    margin-bottom: 10px; /* Add margin-bottom for spacing */
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 20px; /* Add margin-bottom for spacing */
}

.about-icon {
    width: 50px;
    height: 50px;
    background-color: #009FFF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    padding: 32px;
}

.about-heading {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 33.6px;
}

.about-text {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 24px;
    width: 75%;
}

/* IMAGE STYLING */
.about-image {
    width: 100%;
    max-width: 616px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.divider {
    padding: 10px 30px;
}


/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: #fff;
    padding: 150px 0px 200px 0;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
    letter-spacing: 0%;
}

.testimonials-text {
    font-size: 18px;
    color: #000;
    line-height: 27px;
    font-family: 'poppins';
    font-weight: 400;
}

/* TESTIMONIAL CARD */
.testimonial-card {
    background-color: #009FFF; /* Blue background */
    color: #fff;
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    width: 100%; /* Make cards fill container width */
    min-height: 350px; /* Minimum height */
    height: 100%; /* Allow height to grow */
    display: flex; /* Ensure consistent layout */
    flex-direction: column; /* Stack content vertically */
}

/* STARS */
.stars {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* CLIENT INFO */
.client-info {
    margin-top: auto; /* Push to bottom */
    gap: 15px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.client-name {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    color: #FCFCFC;
    line-height: 24px;
}

.client-position {
    font-size: 14px;
    color: #FCFCFC;
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 18px;
    color: #FCFCFC;
    font-family: 'Poppins';
    line-height: 27px;
    font-weight: 400;
    flex-grow: 1; /* Allow text to expand */
    overflow-y: auto; /* Add scrolling if needed */
}

/* READ MORE LINK */
.read-more {
    display: block;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    margin-top: 20px;
}

.read-more i {
    font-size: 1rem;
}

.carousel-indicators {
    bottom: -100px !important;
    margin-bottom: 0 !important;
}

/* CAROUSEL INDICATORS */
.carousel-indicators button {
    background-color: #136DFB33 !important;
    width: 80px !important;
    height: 5.5px !important;
    border-radius: 6px;
    
    padding: .5px !important;
}

.carousel-indicators .active {
    background-color: #009FFF !important;
}


/* FAQs SECTION */
.faqs-section {
    background-color: #fff;
    padding: 50px 0px;
}

.faqs-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 57.6px;
}

.faqs-subtitle {
    font-size: 18px;
    color: #000;
}

/* Adjustments for responsive alignment */
@media (max-width: 768px) {
    .faqs-title {
        font-size: 36px; /* Smaller title size for mobile */
    }

    .faqs-subtitle {
        font-size: 16px; /* Smaller subtitle size for mobile */
    }

    .accordion-button {
        font-size: 18px; /* Adjust button font size */
    }
}

/* ACCORDION STYLING */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: #e0e6f7;
    font-weight: 600;
    color: #000;
    box-shadow: none;
    /* border-radius: 8px 0px 0px 8px; */
    height: 121px;
    padding: 50px;
    font-size: 22px;
    font-family: 'SF Pro Display', sans-serif;
}

.accordion-button:focus {
    box-shadow: none;
    height: 121px;
}

.accordion-button:not(.collapsed) {
    background-color: #009FFF;
    color: #fff;
}

.accordion-body {
    background-color: #009FFF;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    padding-left: 50px;
}

.accordion-header {
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
}



/* CTA Section */
.cta-section {
    padding: 100px 0; /* Adjust padding for better spacing */
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center items horizontally */
}

.cta-title {
    font-size: 48px; /* Adjust title size for responsiveness */
    text-align: center; /* Center align title */
}

.cta-subtitle {
    font-size: 18px; /* Adjust subtitle size for responsiveness */
    text-align: center; /* Center align subtitle */
}

.cta-btn {
    border-radius: 50px;
    width: 145px;
    height: 44px;
    background-color: #136DFB;
    margin-top: 20px; /* Add margin for spacing above the button */
}


/* FOOTER SECTION */
.footer-section {
    background-color: #f8f9fc;
    padding: 50px 0; /* Adjust padding for better spacing */
    color: #000;
}

.footer-logo {
    width: 206.08px;
    height: 83.29px;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 27px;
}

/* Email Subscription */
.footer-form {
    max-width: 75%;
    margin-bottom: 10px;
    position: relative;
    margin-top: 34px;
}

.footer-form input {
    border-radius: 20px;
    padding: 20px;
    background-color: #F3F3F3;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
}

.footer-form .btn {
    border-radius: 20px;
    padding: 12px 20px;
    position: absolute;
    right: 0;
}

/* Footer Links */
.footer-title {
    font-weight: 600;
    margin-bottom: 20px; /* Adjust margin for better spacing */
    font-size: 16px;
}

.footer-links li {
    margin-bottom: 10px; /* Adjust margin for better spacing */
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links a:hover {
    color: #007bff;
}

/* Social Media Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    padding: 10px 16px;
    font-size: 1.2rem;
    color: #007bff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: #007bff;
    color: #fff;
}

/* Copyright */
.footer-copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0; /* Reduce padding on smaller screens */
    }

    .footer-title {
        font-size: 14px; /* Smaller title size for mobile */
    }

    .footer-text {
        font-size: 14px; /* Smaller text size for mobile */
    }

    .footer-subtext {
        font-size: 12px; /* Smaller subtext size for mobile */
    }

    .footer-form .btn-primary-custom {
        width: 100px; /* Adjust width for mobile */
        padding: 12px; /* Adjust padding for better appearance */
    }

}

@media (max-width: 1549px) {
    .hero-image {
        height: 700px;
        width: 700.5px;
        top: -450px;
        left: 620px;
    }
    .floating-card {
        bottom: -200px;
        right: -500px;
    }

    /* .hero-arrow-1 {
        top: -277px;
        right: -150px;
        z-index: 10;
    } */
    
    .hero-arrow-2 {
        right: -305px;
    }
    
}

/* Further adjustments for smaller screens */
@media (max-width: 1400px) {

    .hero-section {
        padding: 300px 0 250px 0;
    }

    .hero-image {
        width: 100%;
        top: -450px;
        left: 600px;
    }
    .service-card {
        width: 350px;
    }

    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-text {
        font-size: 14px;
    }
    .testimonial-card {
        width: 100%;
    }
    .ellipse-1 {
        width: 100%;
    }
    .ellipse-2 {
        width: 100%;
    }

    
    .hero-title {
        font-size: 55px;
    }

    .hero-text {
        font-size: 19px;
        margin-top: 10px;
        color: #000;
        max-width: 500px;
        line-height: 30px;
        font-weight: 400;
        letter-spacing: 0px;
        padding: 15px 0px;
    }

    .btn-primary-custom {
        font-size: 13px;
    }
    
    .btn-outline-custom {
       font-size: 13px;
    }
    
}

/* Even smaller screens */
@media (max-width: 1200px) {

    .hero-image {
        max-width: 500px;
        top: -450px;
        left: 470px;
    }

    .floating-card {
        bottom: -200px;
        right: -250px;
    }
    
    .testimonial-card {
        width: 100%;
    }

    .hero-arrow-1 {
        top: -350px;
        right: 200px;
    }
    
    .hero-arrow-2 {
        right: -55px;
    }
    
    .about-image {
        max-width: 100%;
        height: auto;
    }

}

@media (max-width: 1000px) {
    

    .hero-image {
        max-width: 500px;
        top: -450px;
        left: 470px;
    }

    .floating-card {
        bottom: -200px;
        right: -150px;
    }


    
    .hero-arrow-2 {
        right: -5px;
    }

}

@media (max-width: 900px) {
    .testimonials-section {
        margin-top: 110px;
    }
    .faqs-section {
        margin-top: 140px;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {

    .about-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-title {
        font-size: 36px; /* Smaller title size for mobile */
        margin-bottom: 15px; /* Adjust margin-bottom for mobile */
        padding-left: 25px; /* Apply padding only to the text column */
    }

    .text-primary {
        margin-bottom: 8px; /* Adjust margin-bottom for mobile */
        padding-left: 25px; /* Apply padding only to the text column */
    }

    .about-item {
        margin-bottom: 25px; /* Adjust margin-bottom for mobile */
        padding-left: 25px; /* Apply padding only to the text column */
    }
}
