/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Basic Styling for Body */
body {
    background-color: #f4f4f4;
    color: #333;
}

/* Styling the Header and Navigation */
header {
    padding: 5px 0;
    background-color: #202837;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.logo img{
   height: 50px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    position: relative;

}

nav .logo a {
    color: white;
    /* font-size: 26px; */
    font-weight: bold;
    text-decoration: none;
}

/* Menu Styling */
nav ul {
    display: flex;
    list-style: none;
    z-index: 1;

}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
}

/* Main Content Section */
main {
    padding: 20px;
}

section {
    margin-bottom: 50px;
}

section h1 {
    font-size: 26px;
    color: #333;
}

/* Footer Styling */
footer {
    background-color: #008CFF; /* Dark background */
    color: #fff;           /* White text */
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    
}
.footer-contact{
    position: absolute;
    width: 100%;
    bottom: 0;
}
/* fqs style */
.faq-section {
    max-width: 1000px;
    margin: 75px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-section h1 {
    font-size:18px;
    color: #007bff;
    margin-bottom: 10px;
    text-align: left;
}

.faq-section p {
    font-size: 32px;
    color: #002366;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(212, 212, 212);
}

.faq {
    border-top: 1px solid #ddd;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 98%;
    padding: 25px 15px;
    text-align: left;
    background: #f7f7f7;
    color: #003399;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e6e6e6;
}

.faq-answer {
    display: none;
    padding: 15px;
    /* font-size: 0.9rem; */
    color: #555;
    background: #fff;
}

.faq-answer .faq-answer-p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: gray;
    font-weight: 100;

}


/* 0000000000 */
.faq-question {
    width: 98%;
    padding: 25px 15px;
    text-align: left;
    background: #f7f7f7;
    color: #003399;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    z-index: 0;
    
    /* Smooth transition for background, text color, and padding */
    transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.faq-question:hover {
    background: #e6e6e6;
}

/* Plus (+) and Minus (−) sign */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: #007bff;
    
    color: #fff;
    padding-left: 20px; /* Indentation effect */
}

/* Change "+" to "−" */
.faq-question.active::after {
    content: "−";
}

/* Smooth slide-down transition */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    background: #fff;
    padding: 0 15px;
}

.faq-answer .faq-answer-p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: gray;
    font-weight: 100;
}

/* 0000000000 */
/* Mobile and Tablet Responsive Design */


  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Links Section */
  .footer-links {
    /* margin-bottom: 10px; */
  }
  
  .footer-links a {
    color: #f3c623; /* Gold-like color for links */
    text-decoration: none;
    /* margin: 0 10px; */
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff; /* White on hover */
  }
  
  .footer-links span {
    color: #555; /* Separator color */
  }
  
  /* Copyright Section */
  .footer-copyright {
    font-size: 15px;
    color: rgb(228, 228, 228); /* Light gray for copyright text */
    /* margin-top: 5px; */
    font-weight: bold;
  }
  
  

  /* aboutus style */

  .about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding-top: 60px;
}

/* Content styling */
.content {
    max-width: 50%;
    padding: 30px;
}

.content h3 {
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002366;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    color: gray;
}

/* Image styling */
.image {
    max-width: 50%;
}

.image img {
    width: 100%;
    border-radius: 10px;
}



/* Mission & Vision Section */
.mission-vision {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Individual Box Styling */
.box {
    flex: 1;
    background: transparent;
    padding: 30px;
}

/* Title Styling */
.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Blue Title */
.blue {
    color: #007bff;
}

/* Heading Styling */
h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #071952;
}

/* Paragraph Styling */
.mission-vision p {
    font-size: 16px;
    line-height: 1.6;
    color: gray;
}

/* contect style */
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

/* Contact Section */
.contact-section {
    max-width:800px;
    margin: 300px auto;
    text-align: left;
    padding: 20px;
}

/* Contact Title */
.contact-title {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact Heading */
.contact-heading {
    font-size: 32px;
    color: #002366;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Contact Box */
.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    /* padding: 15px; */
    border-radius: 8px;
}
.contact-box i{
    font-size: 60px;
}
/* Email Icon */
.email-icon {
    font-size: 40px;
    color: #007bff;
}

/* Contact Info */
.contact-info h3 {
    font-size: 18px;
    color: #007bff;
    margin: 0;
}

.contact-info p {
    font-size: 16px;
    color: gray;
    margin: 0;
}
.contact-link {
    text-decoration: none;  /* Removes underline */
    color: inherit;         /* Keeps text color same as parent */
    display: block;         /* Makes the whole box clickable */
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-left: -10px;
    background: #f7f7f7;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-box:hover {
    background: #e6e6e6;
}

.why-it-works {
    padding: 50px 20px;
    background: white;
}

.why-it-works h2 {
    color: #003399;
    font-size: 28px;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    font-size: 40px;
    color: #003399;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #003399;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Why It Works Section */
.why-it-works {
    padding: 70px 20px;
    background: white;
    text-align: center;
}

.why-it-works h2 {
    color: #003399;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
}

/* Cards Container */
.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Single Card */
.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 360px;
    text-align: center;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
}
.card:hover .icon{
    
    border: 3px solid #002F6C;
    transition: 0.4s;
}
.card:hover .icon i{
    
    color: #002F6C;
    transition: 0.4s;
}

/* Icon Styling */
.icon {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 3px solid #007bff;
}

.icon i {
    font-size: 90px;
    color: #007bff;
}

/* Card Heading */
.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #003399;
    font-weight: bold;
}

/* Card Description */
.card p {
    font-size: 15px;
    color: rgb(109, 109, 109);
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.container h2 {
    color: #003399;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
    /* border-radius: 5px; */
    padding: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 30px 20px;
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}
.tab-button:hover{
    background-color: #007bff;
    color: white;
    transition: 0.3s;
}

.tab-button.active {
    background-color: #002F6C;
    color: white;
    /* border-radius: 5px; */
    transition: 0.3s;
}

.tab-content {
    display: none;
    background-color: #dedede;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 80px;
    border-radius: 5px;
    text-align: left;
    /* margin-left: 40px;
    margin-right: 40px; */

}
.tab-content p{
    line-height: 1.7em;
}

.tab-content.active {
    display: block;
}

/* Main Blog Post Styling */
main {
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    /* color: #333; */
}
main img{
    max-width: -webkit-fill-available;
    height: auto;
}
main h1{
font-size: 32px;
color: darkblue;
line-height: 40px;
}
main h2{
    font-size: 28px;
    color: rgb(62, 138, 163);
    line-height: 40px;
}

main h3{
    font-size: 24px;
    color: #454545;
    line-height: 40px;
}
main p{
    font-size: 16px;
    color: rgb(70, 70, 70);
    line-height: 1.7em;
    margin-bottom: 20px;
    /* margin-top: 20px; */
    margin-left: 10px;
}
main a{
    color: #007bff;
}
main ul  {
    margin-left: 40px;
    margin-bottom: 10px;
}


.wp-block {
    display: block !important;
}

.wp-block h1, 
.wp-block h2, 
.wp-block h3 {
    color: inherit !important;
}

.wp-block[data-align="wide"] {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* Footer Styles */
.foo {
    background-color: #032D5D;
    color: white;
    padding: 70px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foo-top{
    display: flex;
    /* background: red; */
    justify-content: flex-start;
    padding: 40px;
}

.foo-top h2 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    max-width: 550px;
    text-align: left;
    line-height: 1.5em;
    margin-right: 40px;
}

.foo-h2-strong{
    font-weight: 700;
    font-size: 24px;
}

.foo-top p {
    font-size: 16px;
    margin-bottom: 20px;
}

.foo-button {
    background-color: #008CFF;
    color: white;
    padding: 20px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    margin-left: 10px;
}

.foo-button:hover{
    background-color: white;
    color: #032D5D;
    transition: 0.3s;
}
.a-button{
    background-color: #008CFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    margin-left: 10px;
}
.a-button:hover{
    background-color: white;
    color: #032D5D;
    transition: 0.3s;
}


.foo-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px auto;
    width: 80%;
}

.foo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding: 40px;
}

.foo-column {
    flex: 1;
    min-width: 200px;
}
.foo-column a{
    transition: 0.3s;
    text-decoration: none;
}
.foo-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.foo-column ul {
    list-style: none;
    padding: 0;
}

.foo-column ul li {
    margin-bottom: 5px;
}

.foo-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.foo-column ul li a:hover {
    text-decoration: underline;
    color: #007bff;
    transition: 0.3s;
}



/* Responsive Design */
@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    article h2 {
        font-size: 1.3rem;
    }

    article p {
        font-size: 0.95rem;
    }
}
@media (max-width: 900px) {
    main {
       /* text-align: center; */
    }
    .blog-container{
        justify-content: center;
    }
}


/* media  */
@media (max-width: 1250px) {
    .mission-vision  {
      max-width: 950px;
    }

    .about {
        max-width: 950px;
    }
    nav{
        padding: 0px 15px;
    }
}
@media (max-width: 1150px) {
    nav ul li a {
        padding: 15px 0px;
    }
}
@media (max-width: 950px) {
    .a-button {
        padding: 15px 0px;
        margin-top: 14px;
        display: flex;
        justify-content: center;
        width: 70%;
        justify-self: center;
        margin-left: 0px;
    }
    @media (max-width: 950px) {
    nav ul li {
        margin: 0px 10px;
        
    }
}
       /* Stack the nav items vertically on small screens */
       nav ul li a {
        padding: 15px 25px;
    }
    nav .logo a {
        font-size: 24px; /* Adjust logo font size */
        margin-bottom: 10px;
    }

    /* Hide the menu by default on mobile */
    nav ul {
        /* display: none; */
        flex-direction: column;
        width: 100%;
        text-align: left;
        background-color: #202837;
        padding-top: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        height: 0px;
        transition: 0.5s;
        overflow: hidden;

    }

    /* Show the menu when the hamburger is clicked */
    nav ul.active {
        /* display: flex; */
        height: 300px;
        transition: 0.5s;
        z-index: 1;
    }

    /* Styling the hamburger menu */
    .hamburger {
        display: block;
        font-size: 35px;
        color: white;
        cursor: pointer;
        z-index: 100;
       
    }

    /* Styling for nav items when menu is active */
    nav ul li a {
        font-size: 18px;
        width: 100%;
        text-align: left;
        display: block;

    }
    nav ul li {
        font-size: 18px;
        border: 0px;
        margin: 0;
        border-top: 1px solid rgb(83, 83, 83);
    }

    /* Style for the active state when menu is open */
    .hamburger.open + ul {
        display: block;
    }
    nav{
        padding: 0px 20px;
    }
}
/* Responsive Design */
@media (max-width: 900px) {
    .mission-vision {
        flex-direction: column;
        text-align: center;
    }

    .box {
        max-width: 100%;
    }
    .about {
        flex-direction: column;
        text-align: center;
    }

    .content, .image {
        max-width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 800px) {
    .tabs {
        flex-direction: column;
    }
    .container {
        width: 80%;
    }
    .tab-content{
        margin-left: 0px;
        margin-right: 0px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .footer {
      font-size: 12px;
    }
    .footer-links a {
      /* margin: 0 5px; */
    }
  }
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    table {
        width: 100%;
    }
}
@media (max-width: 600px) {
    nav ul.active {
        height: 264px;
    }
    .a-button {
        padding: 12px 0px;
        margin-top: 14px;
        font-size: 15px;
    }
  .about{
    padding-top: 10px;
  }
  .content h1{
    font-size: 24px;
  }
  .content p{
    font-size: 15px;
  }
  .title {
    font-size: 20px;
}
  .content h3 {
 font-size: 20px;
}
.box h2 {
    font-size: 24px;
}
.mission-vision p{
    font-size: 15px;
}
  .logo img {
    height: 40px;
}
nav ul {
    margin-top: -10px;
    padding-top: 0px;
}
nav ul li a {
    font-size: 15px;
}

.image img{
    width: 70%;
}
.hamburger {
    font-size: 25px;
}

nav{
    margin-top: 5px;
}

.faq-section h1 {
    font-size: 20px;
}
.faq-section p {
    font-size: 24px;
}
.faq-question {
    font-size: 15px;
}
.faq-answer .faq-answer-p
{
    font-size: 15px;
    font-weight: bold;
    color: rgb(88, 88, 88);
}
.faq-section{
    margin: 30px auto;
}
.card{
    width: fit-content;
}
.why-it-works h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
.why-it-works {
    padding: 50px 20px;
}
.card p {
    font-size: 14px;
}
.card h3 {
    font-size: 21px;
}
.icon i {
    font-size: 50px;
}
.icon {
    width: 110px;
    height: 110px;
}
.container h2 {
    font-size: 27px;
    margin-bottom: 30px;
}
.tab-button {
    padding: 25px 20px;
    font-size: 16px;
}
.tab-content p {
    font-size: 14px;
}

.contact-section {
    max-width: 800px;
    margin: 200px auto;
}
.contact-heading {
    font-size: 20px;
}
.contact-box i {
    font-size: 50px;
}
.contact-info h3 {
    font-size: 16px;
}
.contact-info p {
    font-size: 16px;
}
main {
    margin: 10px auto;
}
}






/* Responsive Design */
/* @media (max-width: 768px) {
    main {
        width: 95%;
    }

    article h1 {
        font-size: 2rem;
    }

    article p {
        font-size: 1rem;
    }
    
} */


@media (max-width: 768px) {

    .foo-top {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }
    .foo-top h2 {
        text-align: center;
        margin-right: 0px;
    }
    .foo-button{
        margin-left: 0px;
        padding: 25px 70px;
    }
}
@media (max-width: 600px) {
    main{
        width: 95%;
    }
    main h1 {
        font-size: 20px;
        line-height: 28px;
    }
    main h2 {
        font-size: 19px;
        line-height: 28px;
    }
    main h3 {
        font-size: 17px;
        
    }

    .footer-copyright {
        font-size: 13px;
    }
.foo-h2-strong{
    font-size: 20px;
}
.foo-top h2 {
    font-size: 15px;
}
.foo-button {
font-size: 14px;
padding: 15px 35px;
}
.foo-column h3 {
    font-size: 16px;
}
.foo-column ul li a {
    font-size: 13px;
}
.foo-column p{
    font-size: 14px;
    line-height: 1.5em;
}
.review-images {
    max-width: 85%;

}
}


