/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar */
html {
    scroll-padding-top: 100px; /* Adjust this value based on your navbar height */
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right , #00368A,#0077ae);
    padding: 15px 30px;
    position:fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 45px; /* Adjust this size based on your logo */
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-top: auto;
    margin-bottom: auto;
    align-items: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    /* font-family: 'Fredoka One', cursive;*/
    font-family: Arial, sans-serif;
    position: relative; /* Necessary for the underline effect */
    transition: background-color 0.3s ease-in;
}


/********************************************************************************
/* Hover Effect */
.nav-links li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px; /* Positions the underline below the text */
    left: 0;
    background-color: #fbb923; /* The underline color */
    transition: width 0.1s ease-in-out; /* Animation for underline */
}

/* When hovered */
.nav-links li a:hover {
    color: #fbb923; /* Change text color on hover */
}

.nav-links li a:hover::before {
    width: 100%; /* Animate the underline to full width */
}
/***********************************************************************

/* Burger Menu for Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 850px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #333;
        width: 100%;
        text-align: center;
        padding-bottom: 10px;


        
    }
    .nav-links li{
        margin-top: 15px;
    }

    .nav-links a:hover {
        color: #0077ae;
        background: transparent;
    }
    .nav-links li a::before {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -5px; /* Positions the underline below the text */
        left: 0;
        background-color:hsla(9, 100%, 64%, 0); /* The underline color */
        transition: width 0.1s ease-in-out; /* Animation for underline */
    }

    .nav-links.nav-active {
        display: flex;
    }

    .burger {
        display: block;
    }
    .nav-links li {
        margin-top: 15px;
        margin-bottom:10px;
    }
    .logo img {
        height: 30px; /* Adjust this size based on your logo */
        display: block;
    }

}




/***********************************************************************************************************
/*********************************************hero section**************************************************
/* Hero Section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

body {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    background-color: #f4f4f4;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;

}

.hero-content {
    flex: 1;
    padding-right: 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #00AEFF;
    animation: fadeInLeft 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin: 40px 0 50px 0;
    color: #333;
    animation: fadeInLeft 1.2s ease-out;
}

.cta-button {
    background-color: #FBB923;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    animation: fadeInLeft 1.4s ease-out;
}

.cta-button:hover {
    background-color: #e1a620;
}

.hero-image {
    flex: 1;
    text-align: right;
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    max-width:80%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design */
@media (max-width:1100px) {
    .hero-container {
        flex-direction: column;
    }
    .hero{
        margin-top: 100px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        
    }

    .hero-image {
        margin-top: 20px;
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
    }
}


/*<!-----------------*****************************************************------------------------------>*/
/*why us section*/

/* New About Section */
.about {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    color: #00AEFF;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #555;
}

/*<!------------------------------------***********************************************----------->*/

/*****************************************************************************************************/
/* About Us Section */
.about-us {
    background-color: #f4f7f9;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Section Heading */
.about-us h2 {
    font-size: 3rem;
    color: #00AEFF;
    margin-bottom: 40px;
}

/* Introduction Section */
.about-intro p {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Stats Section */
.about-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}

.stat-item {
    background-color: #00AEFF;
    color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
}

/* Mission and Vision Section */
.about-mission, .about-vision {
    margin-bottom: 50px;
}

.about-mission h3, .about-vision h3 {
    font-size: 2.5rem;
    color: #00AEFF;
    margin-bottom: 20px;
}

.about-mission p, .about-vision p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 850px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 80%;
        margin-bottom: 20px;
    }

    .about-intro p {
        font-size: 1.3rem;
    }

    .about-mission h3, .about-vision h3 {
        font-size: 2rem;
    }
}
/**********************************FAQ*******************************************contact us*/

/* FAQ Section Styling */
.faq-section {
    padding: 40px 20px;
    background-color: #f5f6fa;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #2f3640;
    margin-bottom: 30px;
    text-align: center;
}

/* FAQ Item Styling */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    font-size: 20px;
    font-weight: 500;
    color: #2f3640;
    cursor: pointer;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

/* Toggle Animation */
.faq-answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/**********************************contact us*******************************************contact us*/
/* General Contact Section Styling */
.contact-section {
    background-color: #f5f6fa;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid #dcdde1;
}

.contact-section h2 {
    font-size: 30px;
    color: #00AEFF;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px; /* Space between icons */
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #2f3640;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.icon i  {
    font-size: 32px; /* Size of the icons */
    margin-bottom: 10px;
}

/* Facebook Icon Styling */
.facebook i {
    color: #303030;
}

/* WhatsApp Icon Styling */
.whatsapp i {
    color: #303030;
}

/* YouTube Icon Styling */
.youtube i {
    color: #303030;
}

/* Hover Effect */
.icon:hover {
    transform: scale(1.1);
    color: #00a8ff;
}

/* Responsive Design */
@media (max-width: 850px) {
    .social-icons {
        flex-direction: column;
        gap: 20px;
    }
}



/**********************************General Footer Styling******************************************* General Footer Styling */
/**********************************General Footer Styling******************************************* General Footer Styling */

.footer {
    background: linear-gradient(to right , #00368A,#0077ae);
    color: #fff;
    padding: 40px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer h3 {
    font-size: 1.4rem;
    color: #FBB923;
    margin-bottom: 15px;
}

.footer p, .footer a {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00AEFF;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.footer-column a {
    display: inline-block;
    margin-right: 10px;
    color: #ddd;
    font-size: 1rem;
}

.footer-column a:hover {
    color: #00AEFF;
}

/* Responsive Footer */
@media (max-width: 850px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }
}

.lang i  {

    margin-right: 5px;
} 
