
/* Variables */
:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --gradient: linear-gradient(135deg, #2563eb, #3b82f6);
    --transition: 0.3s ease;
    --white: #ffffff;
    --primary: #2563eb;
    --secondary: #3b82f6;
    --text-dark: #2B3445;
    --text-light: #64748b;
    --container-width-lg: 1200px;
    --container-width-md: 960px;
    --container-width-sm: 720px;
    --container-padding: 1rem;
    --header-height: 70px;
    --emergency-height: 40px;
    --total-header: calc(var(--header-height) + var(--emergency-height));
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width-lg);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

main {
    margin-top: var(--total-header);
    overflow: hidden;
}

section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

p,
.text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.5rem;
}

.btn:hover{
    background-color: #db0a7d;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mt-1 {
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mt-2 {
    margin-top: clamp(1rem, 2vw, 2rem);
}

.mt-3 {
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.mt-4 {
    margin-top: clamp(2rem, 4vw, 4rem);
}

.mt-5 {
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.mb-1 {
    margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.mb-2 {
    margin-bottom: clamp(1rem, 2vw, 2rem);
}

.mb-3 {
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.mb-4 {
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.mb-5 {
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-between {
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .flex-md-column {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .flex-sm-column {
        flex-direction: column;
    }
}

.hide-sm {
    display: block;
}

.show-sm {
    display: none;
}

@media (max-width: 576px) {
    .hide-sm {
        display: none;
    }

    .show-sm {
        display: block;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.5s ease-in-out;
    }

    .slide-up {
        animation: slideUp 0.5s ease-in-out;
    }

    .slide-in {
        animation: slideIn 0.5s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.bg-pattern {
    position: relative;
    overflow: hidden;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--light-bg) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.bg-pattern>* {
    position: relative;
    z-index: 1;
}



/* navbar start */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1900px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 102;
}

.bar1, .bar2, .bar3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: var(--transition);
}

.bar1 { top: 0; }
.bar2 { top: 50%; transform: translateY(-50%); }
.bar3 { bottom: 0; }

/* Mobile Navigation */
@media screen and (max-width: 968px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: var(--transition);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .menu-icon.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary);
    }

    .menu-icon.active .bar2 {
        opacity: 0;
    }

    .menu-icon.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary);
    }

    .nav-item {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-item {
        font-size: 1.2rem;
    }
}

/* navbar end */

@media (max-width: 768px) {
    

    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    
    .logo img {
        height: 35px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: var(--container-width-md);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: var(--container-width-sm);
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 80px 0 0;
    }

    .menu-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .vision-mission-grid {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    

    .logo {
        height: 32px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}


main {
    margin-top: var(--total-header);
}



/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid,
    .director-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .about-grid,
    .cards-grid,
    .director-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content,
    .director-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px) rotate(-3deg);
}

[data-animate="slide-left"] {
    transform: translateX(50px) rotate(3deg);
}

.animate {
    opacity: 1;
    transform: translate(0) rotate(0) !important;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.close-menu {
    display: none;
}


/* footer start */
.footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.footer * {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInLogo 1.5s ease-out forwards;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.3s;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.6s;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 2px 0;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.footer-column a:hover {
    color: #db0a7d;
    transform: translateX(8px);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-column a:hover i {
    color: #db0a7d;
    transform: scale(1.2);
}

.footer-column .fa-chevron-right {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(-5px);
}

.footer-column a:hover .fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.3s;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 1.6s;
}

.social-link i {
    font-size: 1.2rem;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: #db0a7d;
    box-shadow: 0 6px 12px rgba(219, 10, 125, 0.2);
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link:active {
    transform: scale(0.95);
}

.footer-bottom {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 1rem; /* Reduce padding to avoid large gaps */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0.5rem 0; /* Reduce space between paragraphs */
    font-size: 0.9rem; /* Optional: smaller font size for compactness */
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #007bff;
}

/* Ensure the footer text stays centered on smaller screens */
@media screen and (max-width: 480px) {
    .footer-bottom {
        padding: 1rem; /* Ensure consistent padding on mobile */
    }

    .footer-bottom p {
        font-size: 0.8rem; /* Slightly smaller text on small screens */
    }
}


.footer-column i {
    margin-right: 8px;
    color: #007bff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }

    .footer-column {
        flex: 100%;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* Keyframes for fadeIn and other animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* footer end */

/* Contact Us Section before footer */
.contact-us {
    position: relative;
    background: url("../images/build.png") center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    z-index: 1;
}

.contact-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)); /* Blackish gradient */
    backdrop-filter: blur(2px);
    z-index: -1;
}

.containerv {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    
}
.contact-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #f8f9fa;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #db0a7d;
    /* Pink button color */
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover Effects */
.cta-button:hover {
    background-color: #e4007f;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .contact-content h2 {
        font-size: 1.5rem;
    }

    .contact-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}


.containervv {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    color: black;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

.faq-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.faq-item {
    background: rgba(221, 226, 238, 0.945);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #0a0a0a;
    font-size: 1.5em;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.faq-question:hover {
    background: rgba(108, 92, 231, 0.1);
    color: #cb26da;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
    opacity: 0;
    transform: translateY(-10px);
    background: linear-gradient(to right, #9d5ca3, #2d83d3);
    border-radius: 0 0 15px 15px;
}

.faq-answer p {
    padding: 20px 0;
    line-height: 1.8;
    color: #dfe6e9;
    font-size: 1.1em;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.4s ease;
    color: #6c5ce7;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        padding: 40px 15px;
    }

    .faq-header h1 {
        font-size: 2.2em;
    }

    .faq-question {
        font-size: 1em;
        padding: 20px;
    }

    .faq-answer p {
        padding: 15px 0;
    }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}


.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Move the button to the left side */
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #16c95b;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .whatsapp-icon {
    background-color: #f6f8f7;
    color: rgb(57, 201, 88);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .whatsapp-icon i {
    font-size: 28px;
  }
  
  .dots {
    width: 8px;
    height: 8px;
    background-color: #00d61d;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
    animation: blink 1s infinite;
    
  }
  
  .whatsapp-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-left: 12px;
    display: none;
    transition: opacity 0.3s ease-in-out;
  }
  
  .whatsapp-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp color on hover */
  }
  
  .whatsapp-btn:hover .whatsapp-text {
    display: inline-block;
    opacity: 1;
  }
  
  .whatsapp-btn:hover .whatsapp-icon {
    background-color: #128C7E; /* Darker color for the icon */
  }
  
  @keyframes blink {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }


  /* Updated Team Banner Styles */
.team-banner {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
}

.banner-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.banner-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.banner-text {
    max-width: 600px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(71, 118, 230, 0.1);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 30px;
    animation: slideIn 0.6s ease;
}

.badge-icon {
    font-size: 24px;
}

.banner-title {
    font-size: 64px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    animation: slideIn 0.6s ease 0.2s both;
}

.title-wrap {
    margin-top: 10px;
}

.highlight-text {
    color: #4776e6;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(71, 118, 230, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.banner-description {
    font-size: 18px;
    line-height: 1.8;
    color: #131212;
    margin-bottom: 50px;
    animation: slideIn 0.6s ease 0.4s both;
}

/* Banner Image Styles */
.banner-image {
    position: relative;
    animation: slideIn 0.6s ease 0.8s both;
}

.image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 2px dashed rgba(71, 118, 230, 0.2);
    border-radius: 30px;
    z-index: -1;
}


/* Background Shapes */
.banner-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(79, 120, 216, 0.082);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 48px;
    }
    
    .image-container {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-text {
        max-width: 100%;
        text-align: center;
    }
    
    
    .image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-banner {
        padding: 80px 0;
    }
    
    .banner-title {
        font-size: 36px;
    }
    .image-container {
        height: 400px;
    }
  
    .banner-image{
        margin-top: 30px;
    }
    .image-shape{
        display: none;
    }
}
