/* General Styles */

body {
    font-family: 'serif', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Adjusting container styles */
.header-container,
.hero-container,
.impact-numbers-container,
.services-list,
.team,
.contact-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section Styles */
.header {
    background-color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px; /* Optional: add padding to align content with the rest of the page */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.7em;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.logo p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #007bff;
}

.contact-btn {
    background-color: #b2f302;
    color: #333;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #a1dc01;
}

.menu-icon {
    display: none; /* Hidden by default */
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px; /* Adjust as needed */
    top: 20px;   /* Adjust as needed */
}

/* Collapsible Menu Styles */
.collapsible-menu {
    display: none; /* Hidden by default */
    background-color: #f8f9fa;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;/* Align items to the left */
}

.nav-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align text to the left */
}

.nav-mobile ul li {
    margin: 10px 0;
}

.nav-mobile ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-mobile .contact-btn {
    align-self: flex-end; /* Align the button to the right */
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        display: none; /* Hide desktop navigation */
    }
    .menu-icon {
        display: block; /* Show menu icon */
    }
    .contact-btn {
        width: auto;
        text-align: right; /* Align button to the right */
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        align-items: center;
    }
    .contact-btn {
        align-self: flex-end; /* Align the button to the right */
        width: auto;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    .nav-mobile .contact-btn {
        align-self: flex-end; /* Ensure the button stays aligned to the right */
        margin-top: 10px;
    }
}

/* Hero Section Styles */
.hero {
    background-color: #fff;
    padding: 60px 0;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    order: 1; /* Ensures content is first on smaller screens */
}

.hero-title {
    font-size: 45px;
    line-height: 1.5;
    font-weight: bold;
    color: #2d2d2d;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.primary-btn {
    background-color: #b2f302;
    color: #333;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: #a1dc01;
}

.secondary-btn {
    background-color: #333;
    color: #fff;
    transition: background-color 0.3s;
}

.secondary-btn:hover {
    background-color: #555;
}

.hero-image {
    max-width: 40%; /* Ensures the image takes up less space */
    order: 2; /* Ensures image is second on smaller screens */
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        order: 2; /* Ensures content is first on smaller screens */
        margin-bottom: 20px;
    }
    .hero-image {
        order: 1; /* Ensures image is second on smaller screens */
        text-align: center;
        max-width: 80%; /* Adjust image size for tablets */
    }
    .hero-title {
        font-size: 35px; /* Adjust font size for tablets */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px; /* Further adjust font size for mobile devices */
    }
    .hero-image {
        max-width: 80%; /* Adjust image size for tablets */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px; /* Adjust font size for smaller mobile devices */
    }
    .hero-content {
        max-width: 100%; /* Ensures the content takes full width */
    }
    .hero-image {
        max-width: 100%; /* Ensures the image takes full width */
    }
    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
}



/* Impact Numbers Section Styles */
.impact-numbers {
    background-color: #09132E;
    color: #D7FF73;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.impact-numbers-container {
    display: flex;
    align-items: center;
}

.impact-numbers-heading {
    font-size: 24px;
    font-weight: 700;
    margin-right: 30px;
    width: 25%;
    text-align: left;
    color: #fff;
}

.impact-numbers-stats {
    display: flex;
    justify-content: space-between;
    width: 75%;
}

.impact-number {
    text-align: center;
}

.impact-number h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #D7FF73;
    transition: all 0.5s ease-in-out;
}

.impact-number p {
    font-size: 18px;
    margin: 0;
    color: #D7FF73;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .impact-numbers-stats {
        flex-direction: column;
        align-items: center;
    }
    .impact-number {
        margin-bottom: 20px;
    }
}

/* Services Section Styles */
.services-list a { text-decoration: none; }
.services {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.services-heading {
    font-size: 34px;
    font-weight: 700;
    color: #1E1B4B;
    margin-bottom: 10px;
}

.services-subheading {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item i {
    font-size: 50px;
    color: #1E1B4B;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1E1B4B;
}

.service-item p {
    font-size: 16px;
    color: #555;
}

.services-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background-color: #9cdd00;
    color: #fff;
    border: none;
}

.btn-secondary {
    background-color: transparent;
    color: #1E1B4B;
    border: 1px solid #1E1B4B;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #1E1B4B;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }
    .services-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Team Section Styles */
.team {
    padding: 80px 0;
    text-align: center;
    background-color: #f7f7ff;
}

.team-heading {
    font-size: 34px;
    font-weight: 700;
    color: #2C2A53;
    margin-bottom: 15px;
}

.team-subheading {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.02);
}

.member-image img {
    border-radius: 15px;
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.member-info {
    margin-left: 40px;
    text-align: left;
}

.member-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C2A53;
}

.member-role {
    display: inline-block;
    font-size: 16px;
    background-color: #6c63ff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .member-info {
        margin-left: 0;
        text-align: center;
    }

    .member-image img {
        width: 200px;
        height: 200px;
    }

    .team-heading {
        font-size: 28px;
    }

    .team-subheading {
        font-size: 16px;
    }
}

/* Our Clientele Section */
.clientele {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.clientele-heading {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1E1B4B;
}

.clientele-slider {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

.clientele-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.clientele-grid-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    flex-shrink: 0;
    transition: opacity 1s ease;
}

.clientele-item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
    width: 18%;
    box-sizing: border-box;
    height: 150px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clientele-item:hover {
    transform: scale(1.05);
}

.clientele-item i {
    font-size: 2em;
    color: #1E1B4B;
    margin-bottom: 10px;
}

.clientele-item h3 {
    font-size: 1em;
    color: #333;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d3d3d3; /* Light grey background color */
    color: blue; /* Blue color for arrow */
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1;
}

.left-arrow {
    left: -40px; /* Place the arrow outside the box */
}

.right-arrow {
    right: -40px; /* Place the arrow outside the box */
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .clientele-item {
        width: 30%; /* Adjust width for tablets */
    }
}

@media (max-width: 768px) {
    .clientele-item {
        width: 45%; /* Adjust width for mobile devices */
    }

    .left-arrow, .right-arrow {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .clientele-item {
        width: 90%; /* Adjust width for smaller mobile devices */
        margin-bottom: 20px; /* Add margin for spacing */
    }

    .clientele-grid-row {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    .left-arrow, .right-arrow {
        display: none; /* Hide arrows on small screens */
    }
}

/* We Are Expanding Section Styles */
.expanding {
    padding: 60px 0;
    background-color: #09132E;
    text-align: center;
    color: #fff;
}

.expanding-heading {
    font-size: 34px;
    font-weight: 700;
    color: #9cdd00;
    margin-bottom: 10px;
}

.expanding-subheading {
    font-size: 16px;
    margin-bottom: 40px;
}

.expanding-cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.expanding-card {
    background-color: #fff;
    color: #1E1B4B;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 40px;
    color: #9cdd00;
    margin-bottom: 15px;
}

.expanding-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.expanding-card p {
    font-size: 14px;
    margin-bottom: 20px; /* Ensure space between paragraph and iframe */
}

.expanding-card iframe, .expanding-card img {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 10px;
    margin-top: 10px; /* Add margin to space out iframes/images */
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .expanding-cards {
        flex-direction: column;
        align-items: center;
    }
    .expanding-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* FAQ Section Styles */
.faq {
    padding: 60px 40px;
    background-color: #ffffff;
}

.faq-heading {
    font-size: 34px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
    text-align: center;
}

.faq-subheading {
    font-size: 20px;
    margin-bottom: 30px;
    color: #003366;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    padding: 10px;
    text-align: left;
    border: 1px solid #003366;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #F5F5F5;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 20px;
    width: 100%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background-color: #ffffff;
    color: #003366;
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* Contact Form Section Styles */
.contact-form {
    padding: 40px 0;
    background-color: #09132E;
    text-align: center;
    color: #fff;
}

.contact-form-heading {
    font-size: 34px;
    font-weight: 700;
    color: #86c200;
    margin-bottom: 10px;
}

.contact-form-subheading {
    font-size: 18px;
    margin-bottom: 40px;
    color: #fff;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #003366;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

input::placeholder, textarea::placeholder {
    color: #999;
}

.submit-button {
    background-color: #86c200;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #86c200;
}

/* Mobile and Tablet Adjustments */
@media (max-width: 768px) {
    .contact-form-heading {
        font-size: 28px;
    }

    .form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input, textarea {
        font-size: 14px;
    }

    .submit-button {
        padding: 12px;
    }
}

/* Footer Section Styles */
.footer {
    background-color: #2F3645; /* Dark background */
    color: #D7FF73; /* Light text */
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-section {
    margin-bottom: 20px;
    width: 30%;
}

.logo-section {
    display: flex;
    align-items: flex-start; /* Align logo and text vertically */
}

.footer-logo {
    max-width: 60px;
    margin-right: 15px; /* Adjust margin for spacing */
}

.footer-section h3, .footer-section h4 {
    color: #fff; /* Ensure headings are white */
    margin-bottom: 10px;
}

.footer-section p, .footer-section a, .footer-section ul {
    color: #D7FF73; /* Ensure text and links are light */
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-right: 8px;
}

.image-section {
    text-align: center;
}

.footer-image {
    max-width: 100%;
    height: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #D7FF73;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    text-align: center;
    margin: 5px 0;
    color: #D7FF73;
}

.footer-social {
    text-align: center;
    flex: 1;
}

.footer-social a {
    color: #D7FF73;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .footer-left, .footer-right {
        margin-bottom: 10px;
    }
    .footer-social {
        margin-top: 10px;
    }
    .logo-section {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo {
        margin-bottom: 10px;
    }
@media (max-width: 768px) {
  /* Global Mobile Fixes */
  html, body {
    overflow-x: hidden;
    position: relative;
  }

  /* Hero Section Fix */
  .hero-image {
    max-width: 100% !important;
    padding: 0 20px;
  }

  /* Impact Numbers Fix */
  .impact-numbers-container {
    flex-direction: column;
  }
  .impact-numbers-heading {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .impact-numbers-stats {
    width: 100%;
  }

  /* Clientele Section Fix */
  .clientele-item {
    width: 100% !important;
    height: auto;
    margin: 10px 0;
  }

  /* Footer Fix */
  .footer-section {
    width: 100% !important;
    text-align: center;
    padding: 0 20px;
  }

  /* Universal Box Model Fix */
  * {
    box-sizing: border-box;
  }

  /* Header Button Alignment Fix */
  .nav-mobile .contact-btn {
    margin-right: 20px;
  }
}