/* Popup background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup box */
.popup-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: slideUp 0.3s ease;
}

/* Close button */
.popup-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* Form inputs */
.popup-input,
.popup-textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

/* Submit button */
.popup-submit {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.popup-submit:hover {
    background-color: #218838;
}

.popup-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

#downloadForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Adds consistent space between all input elements */
    padding: 20px;
}


@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: bounce 2s infinite;
  }
  
  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover img {
    transform: scale(1.1);
  }
  

/*  */

:root {
    --primary-color: #4a6741;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background-color: var(--white);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: #666 !important;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3a2f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.schedule-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.schedule-btn .phone-icon {
    color: #000;
    /* Ensures it's black */
    font-size: 1.2rem;
    margin-right: 0.5rem;
}



.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 4rem 1.5rem 3rem;
        background-size: cover; /* shows the whole image vertically */
        background-repeat: no-repeat;
        background-position: center;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.enquiry-btn {
    background-color: #D3D3D3;
    color: black;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background-color: #3a5233;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 1;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-icon {
        display: block;
        transition: transform 0.3s ease;
    }

    .menu-icon.active {
        transform: rotate(90deg);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .schedule-btn {
        display: none;
    }
}

/*  */

.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 5%;
    background-color: #D7DBD6;
    gap: 40px;
}

/* LEFT */
.about-left {
    flex: 1;
    max-width: 45%;
    padding-right: 20px;
    position: relative;
}

.about-left h2 {
    font-size: 2.5rem;
    color: #4a5c40;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-left p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Decorative Icon */
.about-left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: url('https://cdn-icons-png.flaticon.com/512/1536/1536543.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
}

/* RIGHT */
.about-right {
    flex: 1;
    max-width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.item-icon {
    font-size: 28px;
    color: #4a5c40;
    flex-shrink: 0;
}

.about-item h3 {
    font-size: 1.2rem;
    color: #4a5c40;
    margin: 0;
}

.about-item ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.about-item ul li {
    font-size: 1rem;
    color: #444;
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-item ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4a5c40;
    font-weight: bold;
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Tablet */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        padding: 50px 6%;
        gap: 40px;
    }

    .about-left,
    .about-right {
        max-width: 100%;
    }

    .about-right {
        grid-template-columns: 1fr 1fr;
    }

    .item-header {
        justify-content: flex-start;
    }

    .about-left::after {
        left: 50%;
        transform: translateX(-50%);
        width: 90px;
        height: 90px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-left h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-left p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.7;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .item-header {
        justify-content: flex-start;
    }

    .about-left::after {
        width: 70px;
        height: 70px;
        bottom: 10px;
    }

    .about-left {
        padding-bottom: 50px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .about-left h2 {
        font-size: 1.7rem;
    }

    .about-left p {
        font-size: 0.95rem;
    }

    .about-item h3 {
        font-size: 1.05rem;
    }

    .about-item ul li {
        font-size: 0.9rem;
    }

    .item-icon {
        font-size: 24px;
    }

    .about-section {
        padding: 40px 5%;
    }
}

/* About Us Section */
.about-continuation {
    background-color: #f5f5f5;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Workflow Item */
.workflow-item {
    text-align: center;
    flex: 1;
}

.workflow-item h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.workflow-item p {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .workflow-container {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }

    .workflow-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .workflow-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .workflow-item {
        width: 100%;
    }

    .workflow-item h2 {
        font-size: 1.8rem;
    }

    .workflow-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .workflow-item h2 {
        font-size: 1.5rem;
    }

    .workflow-item p {
        font-size: 0.75rem;
    }
}


/*  */

.project-section {
    padding: 4rem 0;
    position: relative;
    padding: 50px 5%;

}

.project-wrapper {
    position: relative;
    min-height: 600px;
}

.project-image {
    position: relative;
    width: 70%;
    height: auto;
}

.project-image.right {
    margin-left: auto;
}

.project-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-content {
    position: absolute;
    width: 45%;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
}

.project-content.right {
    right: 0;
}

.project-content.left {
    left: 0;
}

.project-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2A3B18;
    line-height: 1.2;
}

.project-content p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.view-projects {
    display: inline-block;
    text-decoration: none;
    color: #2A3B18;
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.view-projects::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #2A3B18;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.view-projects:hover {
    color: #1a2410;
}

.view-projects:hover::after {
    transform-origin: left;
    transform: scaleX(0);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .project-content {
        width: 50%;
        padding: 2.5rem;
    }

    .project-content h2 {
        font-size: 2rem;
    }

    .project-image img {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .project-section {
        padding: 3rem 0;
    }

    .project-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .project-image {
        width: 100%;
        height: auto;
    }

    .project-image img {
        height: 450px;
    }

    .project-content {
        position: relative;
        width: 94%;
        margin: -80px auto 0;
        top: 0;
        transform: none;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .project-content.right,
    .project-content.left {
        right: auto;
        left: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
/* 
    main {
        padding-top: 3.5rem;
    } */

    .project-section {
        padding: 2rem 0;
    }

    .project-image img {
        height: 300px;
        border-radius: 6px;
    }

    .project-content {
        width: 92%;
        margin-top: -60px;
        padding: 1.5rem;
        border-radius: 6px;
    }

    .project-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .project-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .view-projects {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .project-section {
        padding: 1.5rem 0;
    }

    .project-image img {
        height: 250px;
    }

    .project-content {
        width: 94%;
        margin-top: -40px;
        padding: 1.25rem;
    }

    .project-content h2 {
        font-size: 1.5rem;
    }

    .project-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

/*  */


.challenges-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    padding: 50px 5%;

}

.challenges-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #2A3B18;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.challenge-icon {
    width: 40px;
    height: 40px;
    color: #2A3B18;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    font-size: 1rem;
    color: #2A3B18;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .challenges-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .challenges-section {
        padding: 3rem 0;
    }

    .challenges-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .challenge-card {
        padding: 1.25rem;
    }

    .challenge-icon {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .container {
        padding: 1rem;
    }

    .challenges-section {
        padding: 2rem 0;
    }

    .challenges-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .challenge-card {
        padding: 1rem;
    }

    .challenge-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 0.75rem;
    }

    .challenge-card h3 {
        font-size: 0.9rem;
    }
}


/*  */

.content-container {
    position: relative;
    height: calc(70vh - 8px);
    padding: 50px 5%;

}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.image-section {
    flex: 1;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-section img:hover {
    transform: scale(1.05);
}

.text-section {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 300;
}

.service-description {
    margin-bottom: 3rem;
}

.service-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 80%;
}

.navigation-arrows {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    .text-section {
        padding: 3rem;
    }
}

@media (max-width: 1024px) {
    .slide {
        flex-direction: column;
    }

    .image-section,
    .text-section {
        flex: none;
    }

    .image-section {
        height: 40vh;
    }

    .text-section {
        padding: 2rem;
        height: 30h;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .navigation-arrows {
        right: 2rem;
        bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        height: 100vh;
    }

    .image-section {
        height: 40vh;
    }

    .text-section {
        padding: 1.5rem;
        height: 60vh;
        overflow-y: auto;
    }

    .navigation-arrows {
        right: 1rem;
        bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-description p {
        max-width: 100%;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .image-section {
        height: 35vh;
    }

    .text-section {
        height: 30vh;
        padding: 1rem;
    }

    h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .service-description h2 {
        font-size: 1.1rem;
    }

    .navigation-arrows {
        bottom: 0rem;
        right: 1rem;
    }
}


/*  */

.gallery-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Main Image Container */
.gallery-main {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-image.active {
    opacity: 1;
}

/* Thumbnails Container */
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
}

.thumb-container {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    /* 3:2 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumb-container:hover .thumb {
    opacity: 0.9;
}

.thumb-container.active .thumb {
    opacity: 1;
    border: 3px solid #4a90e2;
}

/* Improved Responsive Design */
@media (max-width: 1024px) {
    .gallery-section {
        padding: 3rem 1.5rem;
        margin-top: 73px;
    }

    .gallery-main {
        height: 500px;
    }

    .gallery-thumbs {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 1rem;
        margin-top: 54px;
    }

    .gallery-main {
        height: 400px;
        margin-bottom: 0.75rem;
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .thumb-container {
        padding-bottom: 75%;
        /* Slightly taller on tablets */
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 1.5rem 0.75rem;
        margin-top: 54px;

    }

    .gallery-main {
        height: 300px;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }

    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.35rem;
    }

    .thumb-container {
        padding-bottom: 60%;
        /* Smaller height for mobile */
    }

    .thumb-container.active .thumb {
        border-width: 2px;
    }
}

@media (max-width: 380px) {
    .gallery-section {
        padding: 1rem 0.5rem;
    }

    .gallery-main {
        height: 250px;
    }

    .gallery-thumbs {
        gap: 0.25rem;
    }

    .thumb-container {
        padding-bottom: 55%;
        /* Even smaller height for very small devices */
    }
}

/*  */


.schedule-section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heading {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.cta-wrapper {
    margin-top: 30px;
}

.cta-text {
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--text-color);
}

.cta-button {
    padding: 12px 30px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.cta-button:hover {
    background-color: black;
    color: var(--background-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-section {
        padding: 60px 20px;
    }

    .heading {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .schedule-section {
        padding: 40px 20px;
    }

    .heading {
        font-size: 1.75rem;
    }

    .cta-button {
        display: block;
        text-align: center;
        width: 100%;
    }
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    /* space between buttons */
    margin-top: 20px;
}

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Hover state */
.download-btn:hover {
    background-color: #1c1d1e;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 14px 0;
    }
}


/*  */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 58, 47, 0.05) 0%, rgba(44, 58, 47, 0.1) 100%);
    z-index: 1;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(44, 58, 47, 0.03) 0%, rgba(44, 58, 47, 0.08) 100%);
    border-radius: 50%;
    z-index: 1;
}

.contact-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2C3A2F;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    background: #fff;
    border-color: #2C3A2F;
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 58, 47, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.submit-btn,
.download-btn {
    padding: 12px 25px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-btn {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}

.submit-btn:hover,
.download-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    z-index: 2;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.corporate-address {
    flex: 2;
    min-width: 260px;
}

.corporate-address h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.corporate-address p {
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    justify-content: flex-end;
    flex: 1;
    min-width: 200px;
}

.social-links a {
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }

    .corporate-address h3 {
        font-size: 1rem;
    }

    .social-links {
        font-size: 1.3rem;
        gap: 15px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}