.elementor-1415 .elementor-element.elementor-element-d0b3214{--display:flex;--overflow:hidden;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1415 .elementor-element.elementor-element-a14573e{margin:-24px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1415 .elementor-element.elementor-element-01c6b92{margin:-24px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(min-width:768px){.elementor-1415 .elementor-element.elementor-element-d0b3214{--content-width:100vw;}}/* Start custom CSS for html, class: .elementor-element-9d24cad *//* --- About Hero Section with Reveal --- */
.about-hero-section {
    height: 70vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Changed to match the page background for a seamless transition */
}

/* This is the animated container that reveals the content */
.about-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    
    /* Initial state for the animation */
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    
    /* Apply the reveal animation */
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not already in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7); /* Adjust brightness for text readability */
}

.about-hero-content {
    position: relative;
    z-index: 2; /* Sits on top of the video */
    opacity: 0;
    transform: translateY(30px);
}

.about-hero-title {
    font-family: 'Panchang', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    margin: 0;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 10px;
}

/* --- Reusable Split-Content Sections (About & Mission) --- */
.about-visspan-section,
.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 50px;
    background-color: #f4f4f4;
}

/* Specific background for the second section if desired */
.mission-section {
    background-color: #fff; /* Alternating color for visual separation */
}

.media-wrapper {
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1); /* For reveal animation */

}

.media-wrapper:nth-of-type(1) img {

    opacity: 0; /* Add this to make it initially invisible */
}



/* .text-wrapper {

} */

.text-wrapper h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.text-wrapper p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 30px;
}

.cta-link {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #9C347E;
}

.cta-link .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* --- Responsive adjustments for both sections --- */
@media (max-width: 900px) {
    .about-visspan-section,
    .mission-section {
        grid-template-columns: 1fr;
    }

    /* On mobile, for the reversed section, the text will correctly appear above the image */
    .mission-section .text-wrapper {
        order: -1; /* This ensures text is first even if it wasn't in HTML */
    }
}

/* --- Team Section --- */
.team-section {
    padding: 100px 50px;
    text-align: center;
    background-color: #fff;
}

.team-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Using similar flip-card logic as your partners section */
.team-card {
    background-color: transparent;
    height: 450px;
    perspective: 1000px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
}

.team-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-card-back {
    background: linear-gradient(-45deg, #004f71, #03736D);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card-back h3 {
    font-size: 1.8rem;
    margin: 0;
}

.team-card-back span {
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
}


/* --- Timeline Section --- */
.timeline-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-size: 3rem;
    font-weight: 700;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* The vertical line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #ddd;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box; /* This is the fix */
}

/* The circle on the timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #fff;
    border: 3px solid #03736D;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

/* Place items on the left and right */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    opacity: 0; /* For reveal animation */
    transform: translateY(20px); /* For reveal animation */
}

.timeline-content h3 {
    margin-top: 0;
    color: #03736D;
}

/* --- Overwriting Contact Section for CTA --- */
.contact-form p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}

.contact-form .cta-button {
    background-color: #fff;
    color: #222;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.contact-form .cta-button:hover {
    background-color: #ddd;
}


/* --- Responsive Design --- */
@media (max-width: 900px) {
    .mission-section {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Timeline adjustments */
    .timeline-container::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-item::after {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 3.5rem;
    }
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e18671e *//* --- Contact Hero Section with Reveal --- */
.contact-hero-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Seamless transition background */
}

.contact-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-content h1{
    font-size: 4rem;
    font-family: 'Panchang';
}

.contact-hero-content p{
    font-size: 1.25rem;

}



/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;           /* ADD THIS */
    transform: translateY(30px); /* ADD THIS */
}

.contact-form-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.main-contact-form .cta-button {
    align-self: flex-start;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
}

.contact-details {
    padding: 60px;
    background: #03736D; /* Using a brand color */
    color: #fff;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Original: Details | Map */
    background: #fff;
}

/* ▼▼▼ ADD THIS NEW RULE FOR THE MIRRORED LAYOUT ▼▼▼ */
.details-map-section.layout-mirrored {
    grid-template-columns: 1.5fr 1fr; /* Mirrored: Map | Details */
}

/* Adds a small gap between the two map sections */
.details-map-section + .details-map-section {
    margin-top: 20px;
}



/* --- FAQ Section --- */
.faq-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .details-map-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 3.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a14573e *//* --- Contact Hero Section with Reveal --- */
.contact-hero-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Seamless transition background */
}

.contact-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-content h1{
    font-size: 4rem;
    font-family: 'Panchang';
}

.contact-hero-content p{
    font-size: 1.25rem;

}



/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;           /* ADD THIS */
    transform: translateY(30px); /* ADD THIS */
}

.contact-form-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.main-contact-form .cta-button {
    align-self: flex-start;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
}

.contact-details {
    padding: 60px;
    background: #03736D; /* Using a brand color */
    color: #fff;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Original: Details | Map */
    background: #fff;
}

/* ▼▼▼ ADD THIS NEW RULE FOR THE MIRRORED LAYOUT ▼▼▼ */
.details-map-section.layout-mirrored {
    grid-template-columns: 1.5fr 1fr; /* Mirrored: Map | Details */
}

/* Adds a small gap between the two map sections */
.details-map-section + .details-map-section {
    margin-top: 20px;
}



/* --- FAQ Section --- */
.faq-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .details-map-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 3.5rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-01c6b92 *//* --- Contact Hero Section with Reveal --- */
.contact-hero-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4; /* Seamless transition background */
}

.contact-hero-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    animation: sweepBackground 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

/* Add this keyframe animation if it's not in your main style.css */
@keyframes sweepBackground {
    from { clip-path: polygon(0 0, 0 0, 0 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }
}

.contact-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.contact-hero-content h1{
    font-size: 4rem;
    font-family: 'Panchang';
}

.contact-hero-content p{
    font-size: 1.25rem;

}



/* --- Contact Form Section --- */
.contact-form-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;           /* ADD THIS */
    transform: translateY(30px); /* ADD THIS */
}

.contact-form-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.main-contact-form .cta-button {
    align-self: flex-start;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
}

.contact-details {
    padding: 60px;
    background: #03736D; /* Using a brand color */
    color: #fff;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Details & Map Section --- */
.details-map-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Original: Details | Map */
    background: #fff;
}

/* ▼▼▼ ADD THIS NEW RULE FOR THE MIRRORED LAYOUT ▼▼▼ */
.details-map-section.layout-mirrored {
    grid-template-columns: 1.5fr 1fr; /* Mirrored: Map | Details */
}

/* Adds a small gap between the two map sections */
.details-map-section + .details-map-section {
    margin-top: 20px;
}



/* --- FAQ Section --- */
.faq-section {
    padding: 100px 50px;
    background-color: #f4f4f4;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 3rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .details-map-section {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 400px;
    }
}
@media (max-width: 768px) {
    .contact-hero-content h1 { font-size: 3.5rem; }
}/* End custom CSS */