/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EFF4FFA6;
    color: #333;
}
h1{
    color: #FFFFFF;
}

h2, h3, h4 {
    color: #1A2166;
}

.btn {
    background-color: #4EB290;
    color: white;
    font: Rubik;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
}

.btn.secondary {
    background-color: #E8ECEF;
    font: Rubik;
    color: #4EB290;
}

/* Top Bar Styling */
.top-bar {
    background-color: #1A2166; /* Dark Blue Background */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar img {
    width: 18px; /* Adjust the size of the icons */
    height: 18px;
    vertical-align: middle;
}

/* Navigation Styles */
.main-nav {
    background: #333;
    padding: 15px 0;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #B0B4B7;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 15px;
}

.dropdown-menu a {
    color: #333;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    color: #B0B4B7;
    background: #f9f9f9;
}



/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px 88px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #323B4B;
    font-weight: 600;
    font-size: 18px;
}

.btn {
    background: linear-gradient(45deg, #1A2166, #2DAF74);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .btn:active {
    transform: translateY(1px);
  }
  
  /* Optional: Add a shine effect on hover */
  .btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.3s ease;
  }
  
  .btn:hover::after {
    left: 100%;
  }



/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 511.96453857421875px;
    background-size: cover;
    text-align: center;
    color: white;
    font-size: 24px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 50px;
}

.hero-content p {
    font: inter;
    size: 15.27;
    font-weight: 400;
    line-height: 150%;

}


/* Specialized Divisions */
.specialized-divisions {
    font-size: 20px;
    text-align: center;
    justify-content: center;
    padding:30px 40px;
    gap: 80px;
    font: Poppins;

}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    font: Poppins;
    font-size: 18px;

}

.card {
    background: #0000001A;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 400px;
    font: Poppins;
    color: #A6AAA8;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}

.card img {
    max-width: 60px;
    margin-bottom: 10px;
}

/* Why Trust Us Section */
.why-trust-us {
    text-align: center;
    padding: 40px 0;
}

.why-trust-us h2 {
    font-size: 30px;
    color: #1A2166; /* Dark blue */
    margin-bottom: 20px;
}

.trust-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trust-card {
    background-color: #F7F9FC; /* Light background */
    border: 2px solid #1A2166; /* Border color */
    padding: 20px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
}

.trust-number {
    font-size: 32px;
    font-weight: bold;
}

.green-text {
    color: #2DAF74; /* Green */
    border: 1px solid #2DAF74;
}

.blue-text {
    color: #1A2166; /* Dark Blue */
}

.dark-blue-text {
    color: #1A2166;
}


/* Additional Content Below "Why Trust Us" */
.additional-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px; /* Better for responsiveness */
    margin: 80px auto;
    padding: 40px;
    gap: 60px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Softer shadow */
}

.additional-text {
    width: 50%;
}

/* Main Heading (h1/h2) */
.additional-text h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a365d; /* Deep blue for trust */
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Subheadings (h3) */
.additional-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #2d3748; /* Dark gray */
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
}

.additional-text h3 img {
    width: 26px;
    height: 26px;
    margin-right: 12px;
}

/* List Items (Bullet Points) */
.additional-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.additional-text li {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #4a5568; /* Soft gray for readability */
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #edf2f7; /* Subtle separator */
}

.additional-text li::before {
    content: "•";
    color: #4EB290; /* Brand accent color */
    font-size: 24px;
    margin-right: 12px;
    line-height: 1;
}

/* Image Section */
.additional-image {
    width: 50%;
    text-align: center;
}

.additional-image img {
    max-width: 100%;
    border-radius: 0px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.additional-image img:hover {
    transform: scale(1.02);
}

/* "Our Awesome Clients" Section */
.clients-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #EFF4FFA6;
}

.clients-section h2 {
    color: #1A2166;
    font-size: 28px;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.client-logos img {
    max-width: 150px;
    height: auto;
    object-fit: contain; /* Ensures images retain their aspect ratio */
    transition: transform 0.3s ease;
}

.client-logos img:hover {
    transform: scale(1.1);
}

/* Navigation Arrows for Client Logos */
.client-navigation {
    font-size: 18px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.client-navigation button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1A2166;
    transition: color 0.3s ease;
}

.client-navigation button:hover {
    color: #4EB290;
}

/* Testimonial Section */
.testimonial-section {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.testimonial-container {
    display: flex;
    align-items: center;
    max-width: 2000px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-image img {
    max-width: 1000px;
    height: 500px;
    border-radius: 0px;
}

.testimonial-content {
    padding: 20px 40px;
    max-width: 500px;
}

.testimonial-content h2 {
    font-size: 28px;
    color: #1A2166;
    margin-bottom: 10px;
}

.quote {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
}

.quote-icon {
    font-size: 28px;
    color: #1A2166;
    font-weight: bold;
    margin-right: 10px;
}

.testimonial-text h3 {
    font-size: 20px;
    color: #1A2166;
    margin: 0;
}

.designation {
    font-size: 15px;
    color: #8a8fa7;
    margin-bottom: 10px;
}

.testimonial-message {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
}

.dot.active {
    background: #1A2166;
}

.arrow {
    font-size: 20px;
    color: #1A2166;
    margin-left: 10px;
    cursor: pointer;
}

/* Call-to-Action */
.cta {
    text-align: center;
    font-size: 18px;
    padding: 60px;
    background: #E8ECEF;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.primary {
    background-color: #4EB290;
    color: white;
}

.primary:hover {
    background-color: #3C8B6F;
}

.secondary {
    background-color: transparent;
    color: #4EB290;
    border: 2px solid #4EB290;
}

.secondary:hover {
    background-color: #4EB290;
    color: white;
}


/* Footer Styles */
.footer {
    background-color: #0D1326;
    color: #fff;
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 0 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #B0B3C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.contact p {
    color: #B0B3C1;
    font-size: 14px;
    margin: 5px 0;
}

.contact a {
    color: #50C878; /* Light Green */
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #B0B3C1;
}

/* Responsive Design - Mobile & Tablet */
@media screen and (max-width: 1024px) {
    /* Base Reset */
    * {
        box-sizing: border-box;
        max-width: 130%;
    }

    

    /* Navigation */
    nav {
        flex-direction: column;
        align-items: center;
        padding: 26px 5%;
        width: 100%;
        font-size: 10px;
    }

    nav a {
        padding: 8px 0;
    }

    /* Hero Section */
    .hero {
        height: auto;
        padding: 40px 5%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(24px, 5vw, 32px);
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: clamp(14px, 3vw, 10px);
        text-align: center;
    }

    /* Cards Layout */
    .cards-container,
    .trust-cards {
        align-items: center;
        flex-direction: column;
        gap: 20px;
        padding: 0 5%;
    }

    .card {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    /* Content Sections */
    .additional-content {
        flex-direction: column;
        padding: 30px 5%;
        text-align: center;
    }

    .additional-text,
    .additional-image {
        width: 100%;
    }

    /* Client Logos */
    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 5%;
    }

    /* Testimonials */
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 5%;
    }

    .testimonial-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    /* CTA Section */
    .cta {
        padding: 40px 5%;
        width: 100%;
        text-align: center;
    }

    /* Footer */
    .footer {
        width: 100%;
        padding: 30px 5%;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Tablet-Specific Adjustments (768px-1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cards-container,
    .trust-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 45%;
        min-width: 300px;
    }

    .testimonial-container {
        flex-direction: row;
        align-items: center;
    }
}

/* Small Mobile Devices (< 400px) */
@media screen and (max-width: 400px) {
    .top-bar {
        font-size: 12px;
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .card {
        min-width: 280px;
    }
}


@media screen and (max-width: 768px) {
    /* Fixing top bar alignment */
    .top-bar {
        text-align: center;
        font-size: 15px;
        display: flex;
        justify-content: center;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        overflow-x: hidden;
        
    }


    .top-bar span {
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
    }


    nav {
        flex-direction: column;
        align-items: center;
        background-color: white;
        gap: 20px;
        padding: 10px;
        width: 90%;

    }

 
    .cta {
        padding: 40px 20px;
        width: 90%;
    }
    .footer{
        width: 110%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        top: 0;
        left: -10;
        z-index: 1000;
    }
}
