* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}
/* General Navbar Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #203864;
    color: white;
}

header .logo img {
    width: 150px;
}

.navmenu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navmenu li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 10px;
    transition: background-color 0.3s ease;
}

.navmenu li a:hover {
    background-color: #1a5fb4;
    border-radius: 5px;
}

.cta {
    background-color: #ff9800;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #e68a00;
}
/* Hamburger Menu Styling */
.hamburger {
    display: none; /* Hidden by default for larger screens */
    font-size: 24px;
    cursor: pointer;
    color: white; /* Adjust color as per your preference */
}

/* Show Hamburger on Smaller Screens */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Visible on smaller screens */
    }
}

/* Responsive Navbar Styling */
@media (max-width: 768px) {
    .navmenu {
        display: none; /* Hide menu initially */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #203864;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navmenu.active {
        display: flex; /* Show menu when toggled */
    }

    .navmenu li {
        margin-bottom: 10px;
    }

    .navmenu li:last-child {
        margin-bottom: 0;
    }

    /* .hamburger {
        display: block;
        cursor: pointer;
        font-size: 24px;
        color: white;
    } */
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position to avoid scrolling */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Prevent scrolling inside the modal */
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}
.modal-content {
    position: fixed; /* Stay in a fixed position */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Align center */
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Adjust size as needed */
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

.hero {
    height: 60vh;
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero .btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #e6e6e6;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
}

.about {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

.about-heading h3{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-values {
    text-align: left;
}

.about-values h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-item .icon {
    font-size: 2rem;
    color: #007BFF;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.value-item p { 
    font-size: 1rem; 
    color: #555;
}


.services {
    padding: 2rem 2rem;
    background: #f9f9f9;
    text-align: center;
    background: #ebebeb;
}

.services h2{
    color: #ff6a00;
    font-size: 2.5rem;
}

.services h3{
    color: black;
    font-size: 1.5rem;
}
.services h4{
    color: black;
    font-size: 20px;
    padding-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted minmax for better scaling */
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center; /* Center the grid horizontally */
    align-content: center; /* Center the grid vertically if needed */
}


.services-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: auto; /* Set a fixed height to make all boxes uniform */
} 

.services-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.services-card p {
    color: #333;
    margin: 0;
}

.services-card:hover {
    transform: scale(1.05);
}


/* Enagagement Model */

.engagement-models {
    text-align: center;
    padding: 20px;
  }
  
  .engagement-models h1 {
    font-size: 2rem;
    color: #333;
  }
  
  .engagement-models p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  .models-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .model-card {
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 300px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .model-card:hover {
    transform: translateY(-5px);
  }
  
  .model-card img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .model-card h2 {
    font-size: 1.5rem;
    color: #007BFF;
    margin-bottom: 15px;
  }
  
  .model-card ul {
    list-style-type: none;
    padding: 0;
  }
  
  .model-card ul li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  
  .model-card ul li:before {
    content: "•";
    color: #007BFF;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  @media (max-width: 768px) {
    .models-container {
      flex-direction: column;
      align-items: center;
    }
  }


.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: url('path/to/your-background-image.jpg') no-repeat center center/cover;
    color: #fff;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.52); /* Adds a dark overlay */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    color: white;
    background-color: #007bff;
}

.cta-buttons .btn:hover {
    background: #fff;
    color: #000000;
    border-color: #007BFF;
}

/* .cta-buttons .btn.secondary {
    background: transparent;
    color: #fff;
} */

.cta-buttons .btn.secondary:hover {
    background: #fff;
    color: #333;
}

.partners {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}
.partners h3{
    color: #ff6a00;
    font-size: 2.5rem;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.partner-card p {
    font-weight: bold;
    color: #333;
    margin: 0;
}

.partner-card:hover {
    transform: scale(1.05);
}
@media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .hero .btn {
      padding: 1rem 1rem;
    }
    .about-heading h3{
        font-size: 2rem;
    }
  }


footer {
    background-color: #002c66;
    color: #ffffff;
    padding: 20px 0;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 15px;
    background-color: #002c66;
    padding: 1rem;
  }
  
  .footer-section h3 {
    color: #ff6a00;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-section .social-icons a {
    color: #ffffff;
    margin-right: 10px;
    font-size: 20px;
    text-decoration: none;
  }
  
  .footer-section .social-icons a:hover {
    color: #ff6a00;
  }
  
  .footer-section.newsletter form {
    display: flex;
    flex-direction: column;
  }
  
  .footer-section.newsletter form input {
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
  }
  
  .footer-section.newsletter form button {
    padding: 10px;
    background-color: #ff6a00;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .footer-section.newsletter form button:hover {
    background-color: #e55a00;
  }
  
  .footer-section.newsletter img {
    margin-top: 20px;
    max-width: 100%;
  }

.footer {
    display: flex;
    flex-wrap: wrap; /* Makes it stack on smaller screens */
    justify-content: space-between;
    padding: 20px;
    background-color: #333; /* Adjust as needed */
    color: #fff;
}

.footer .column {
    flex: 1 1 100%; /* Adjusts to take full width on smaller screens */
    margin: 10px;
}

.social-bg a {
    color: white !important;
}

/* Responsive Footer Styling */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .footer .column {
        flex: 1 1 30%; /* 3 columns on tablets and up */
    }
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjust for mobile */
        gap: 1rem; /* Reduce gap for smaller screens */
    }
}




/* Privacy Policy */
/* General Styling for Privacy Policy */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}
.hero-privacy {
    height: 20vh;
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-privacy h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

main.privacy-policy {
    padding: 20px;
}

/* Hero Section */
.privacy-policy .hero {
    background-color: #007bff; /* Adjust this for your theme */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.privacy-policy .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.privacy-policy .hero p {
    font-size: 1.2rem;
    margin: 0;
}

/* Content Section */
.privacy-policy .content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    padding: 30px;
    max-width: 800px;
}

.privacy-policy .content h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #007bff; /* Accent line under headings */
    padding-bottom: 5px;
}

.privacy-policy .content h4{
    color:  black;
    font-size: 1.5rem;
}

.privacy-policy .content p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #555;
}
.privacy-policy .content li {
    font-size: 1rem;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #555;
}


.privacy-policy .content a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.privacy-policy .content a:hover {
    text-decoration: underline;
}

/* Links */
.privacy-policy .content a {
    color: #0056b3; /* Adjust link color */
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-privacy h1{
        font-size: 2rem;
    }

    .privacy-policy .hero h1 {
        font-size: 2rem;
    }

    .privacy-policy .hero p {
        font-size: 1rem;
    }

    .privacy-policy .content {
        padding: 20px;
    }

    .privacy-policy .content h2 {
        font-size: 1.5rem;
    }
}


/* About US */
.about-us-hero {
    height: 40vh;
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.about-us-hero h1 {
    font-size: 2rem;
    margin-bottom: 0;
    color: White;;
}

.about-us-hero .btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.about-us-hero .btn:hover {
    background: #e6e6e6;
}

.about-us {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    color: #333;
  }
  
  .about-us h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .about-us h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #f5a623;
    margin: 10px auto 0;
  }
  
  .description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
  }
  
  .stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .stat {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }
  
  .stat:hover {
    transform: translateY(-5px);
  }
  
  .stat h2 {
    font-size: 2rem;
    margin: 0;
    color: #333;
  }
  
  .stat h2 span {
    color: #f5a623;
  }
  
  .stat p {
    font-size: 1rem;
    margin: 10px 0 0;
    color: #666;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      align-items: center;
    }
  
    .stat {
      max-width: 100%;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .about-us h1 {
      font-size: 2rem;
    }
  
    .description {
      font-size: 0.9rem;
    }
  
    .stat h2 {
      font-size: 1.5rem;
    }
  
    .stat p {
      font-size: 0.9rem;
    }
  }

  /* Core values */
  .core-values-head {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin: 20px 0;
}

.core-values {
    padding: 20px;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.value-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.value-card .icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.value-card h2 {
    font-size: 1.2rem;
    color: #1d3557;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
        align-items: center;
    }

    .value-card {
        width: 100%;
        max-width: 90%;
    }
}

/* Why Choose */
.why-choose {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
  }
  
  .why-choose h2 {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 1rem;
  }
  
  .why-choose .intro {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
  }
  
  .features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .feature {
    background: #f7faff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    text-align: left;
  }
  
  .feature-number {
    font-size: 2.5rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .feature h3 {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 0.5rem;
  }
  
  .feature p {
    font-size: 1rem;
    color: #555555;
  }