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

/* Header Section */
.header {
    min-height: 100vh; 
    width: 100%;    
    background-image: linear-gradient(rgba(34, 34, 36, 0.849), rgba(62, 112, 176, 0.7)), url('../images/banner.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Navbar styles when scrolled */
nav.scrolled {
    background: rgba(4, 47, 88, 0.808);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 6%;
}

/* Logo */
.logo img {
    width: 90px;
    height: auto;
    display: block;
}



.nav-links .fa-times {
    position: absolute;
    top: 10px; /* Position at the top */
    right: 15px; /* Move to the right */
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1100; /* Ensure it stays above other elements */
}


/* Navigation Links */
.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul {
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.nav-links ul li a:hover {
    color: #f4a261;
    transform: scale(1.2);
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Underline Effect on Hover */
.nav-links ul li::after {
    content: '';
    width: 0;
    height: 2px;
    background: white;
    display: block;
    margin: auto;
    transition: width 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

/* Text Box */
.text-box {
    width: 90%;
    color: #ffffffc6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1 {
    font-size: 50px;
}

.text-box p {
    margin: 10px 0 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.67);
}

/* Visit Button */
.visit-btn {
    padding: 14px 36px;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    border: blue;
    display: inline-block;
    margin-top: 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(196, 193, 191, 0.27);
}

/* Mobile Menu Icon */
nav .fa {
    display: none;
}

/* Responsive Design */

/* For Tablets & Small Screens */
@media (max-width: 768px) {
    .header {
        background-size: cover;
        background-position: center top;
        min-height: 90vh;
    }

    .nav-links {
        position: fixed;
        background: rgba(4, 47, 88, 0.95);
        height: 100vh;
        width: 250px;
        top: 0;
        right: -250px;
        text-align: left;
        z-index: 2;
        transition: right 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
        display: block;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
        padding: 15px 0;
    }

    nav .fa {
        display: block;
        color: white;
        font-size: 23px;
        cursor: pointer;
        margin: 10px;
    }
}

/* For Mobile Screens */
@media (max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }

    .nav-links {
        width: 200px;
        right: -200px;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
    }

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

    nav .fa {
        display: block;
        color: white;
        font-size: 23px;
        cursor: pointer;
    }
}

/* For screens up to 1280px */
@media (max-width: 1280px) {
    nav .fa {
        display: block;
        color: white;
        font-size: 26px;
        cursor: pointer;
        position: absolute;
        right: 30px;
        top: 25px;
    }
    
    .nav-links {
        position: fixed;
        background: rgba(4, 47, 88, 0.95);
        height: 100vh;
        width: 250px;
        top: 0;
        right: -250px;
        text-align: left;
        z-index: 2;
        transition: right 0.3s ease-in-out;
        display: none;
    }

    .nav-links.active {
        right: 0;
        display: block;
    }

    .nav-links ul {
        padding: 30px;
    }

    .nav-links ul li {
        display: block;
        padding: 15px 0;
    }
}

/* For screens up to 1024px */
@media (max-width: 1024px) {
    nav .fa {
        display: block;
    }

    .nav-links {
        width: 220px;
        right: -220px;
    }
}

/* For screens up to 912px */
@media (max-width: 912px) {
    nav .fa {
        display: block;
    }

    .nav-links {
        width: 200px;
        right: -200px;
    }
}

/* For screens up to 820px */
@media (max-width: 820px) {
    nav .fa {
        display: block;
    }

    .nav-links {
        width: 180px;
        right: -180px;
    }
}





/* ==== Slideshow ====== */

.futuristic-slide {
    width: auto; /* Allow dynamic width based on content, removing full-width constraint */
    background: #f8f9fc; /* Very slight blue shade for consistency, matching your reference */
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    max-width: 100%; /* Ensure it doesn’t exceed viewport width */
}

.futuristic-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.3), rgba(240, 245, 255, 0.3)); /* Subtle cartoon-like blue shade */
    z-index: 0;
    opacity: 0.8;
}

.swiper {
    width: auto; /* Allow dynamic width based on content, removing full-width constraint */
    overflow: hidden;
    z-index: 1;
    margin: 0 auto; /* Center the swiper if needed */
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear; /* Ensures smooth, continuous sliding */
    width: auto; /* Allow dynamic width based on slides */
}

.swiper-slide {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    color: rgb(7, 7, 83);
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content !important;
    min-width: 0;
    margin-right: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide:hover {
    transform: scale(1.1); /* Slight scale on hover for interactivity */
}

/* Ensure continuous sliding with no pauses */
.swiper-wrapper {
    animation: slideInfinite 20s linear infinite; /* Custom animation for continuous sliding */
}

@keyframes slideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-slide {
        padding: 20px 0;
    }

    .swiper-slide {
        font-size: 16px; /* Smaller font on mobile */
        padding: 8px 15px; /* Reduced padding on mobile */
        margin-right: 10px; /* Maintain 10px gap on mobile */
        height: 35px; /* Slightly reduced height on mobile */
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        font-size: 14px; /* Even smaller font on very small screens */
        padding: 6px 12px; /* Further reduced padding */
        margin-right: 10px; /* Maintain 10px gap on very small screens */
        height: 30px; /* Further reduced height */
    }
}



/* WhatsApp Button Styling */
.whatsapp-button {
    position: fixed;
    right: 30px;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust vertically to center perfectly */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
    z-index: 1000; /* Ensures it stays on top of other content */
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Removes underline */
}

.whatsapp-button a img {
    width: 60px; /* Maintain size of the GIF, adjust as needed */
    height: 60px; /* Maintain size of the GIF, adjust as needed */
    object-fit: contain; /* Ensures the GIF scales proportionally without cropping */
    transition: transform 0.3s ease; /* Smooth hover effect for the GIF */
    animation: pulse 2s infinite ease-in-out; /* Continuous pulsing animation */
}

/* Hover Animation for the Icon (Additional Animation) */
.whatsapp-button a img:hover {
    transform: scale(1.1) rotate(10deg); /* Slight zoom and rotation on hover for interactivity */
    animation: none; /* Pause the pulse animation on hover to emphasize the hover effect */
}

/* Pulse Animation for Continuous Effect */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Show button when scrolling */
body.scrolled .whatsapp-button {
    opacity: 1; /* Visible when scrolled */
}

/* Hide button near footer */
.footer {
    position: relative;
    height: 200px; /* Adjust this to match your footer height */
}

.footer ~ .whatsapp-button {
    display: none; /* Hides the button when near or below the footer */
}


/* ====== About Us Section ====== */

/* About Section */
.about-section {
    text-align: center;
    padding: 100px 20px;
    background: #f8f9fc; /* Very slight blue shade for a clean, marketing-inspired look */
    position: relative;
    overflow: hidden;
    /* border-left: 100px solid #ffffff; Subtle white border on left */
    /* border-right: 100px solid #ffffff; Subtle white border on right */
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.3), rgba(240, 245, 255, 0.3)); /* Subtle cartoon-like blue shade with a marketing feel */
    z-index: 0;
    opacity: 0.8;
}

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

/* Flexbox Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    z-index: 1;
}

/* Left Image - Futuristic Design with White Frame and Animation */
.about-image {
    position: relative;
    display: inline-block;
    padding: 25px; /* Enhanced white frame effect */
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 0 15px rgba(0, 221, 235, 0.1);
    border-radius: 1px;
    overflow: visible;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 100%;
    max-height: 550px;
}

.about-image:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 221, 235, 0.3);
}

/* Image Styling */
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Overlay Box - Futuristic Neon Design */
.about-overlay-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 10px solid #00ddeb;
    opacity: 0.6;
    z-index: 1;
    background: linear-gradient(135deg, #00ddeb, #ff007a);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.5);
    /* border-radius: 50%; */
    animation: pulse 2s infinite ease-in-out;
}

/* Right Content */
.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.a-highlight {
    color: #0066cc; /* Neon blue for consistency */
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Button */
.btn {
    padding: 12px 25px;
    display: inline-block;
    background: linear-gradient(90deg, #00ddeb, #ff007a);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 221, 235, 0.3);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 221, 235, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.6; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Responsive Design */
@media (max-width: 1325px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-image {
        max-width: 100%;
        order: 1; /* Moves image to the top */
    }

    .about-text {
        max-width: 100%;
        text-align: center;
        order: 2; /* Moves text below the image */
    }

    .about-overlay-box {
        width: 80px;
        height: 80px;
        bottom: -25px;
        left: -25px;
        border-width: 8px;
        /* border-radius: 50%; */
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0; /* Remove padding on sides to hide borders */
        /* border-left: none; Hide left border on mobile */
        /* border-right: none; Hide right border on mobile */
    }

    .about-image {
        max-width: 90%;
        padding: 15px;
        max-height: 400px; /* Reduces image size on smaller screens */
    }

    .about-image img {
        max-height: 350px; /* Further reduces image height on mobile */
    }

    .about-overlay-box {
        width: 60px;
        height: 60px;
        bottom: -15px;
        left: -15px;
        border-width: 6px;
        /* border-radius: 50%; */
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

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

    .about-image {
        max-width: 100%;
        padding: 10px;
        max-height: 300px; /* Further reduces image size on very small screens */
    }

    .about-image img {
        max-height: 250px; /* Further reduces image height on very small screens */
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

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



/* ======= Service Timeline ======== */
.services-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fc; /* Very slight blue shade for a clean, marketing-inspired look */
    position: relative;
    overflow: hidden;
    /* border-left: 100px solid #ffffff; Reduced white border thickness */
    /* border-right: 100px solid #ffffff; Reduced white border thickness */
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.3), rgba(240, 245, 255, 0.3)); /* Subtle cartoon-like blue shade with a marketing feel */
    z-index: 0;
    opacity: 0.8;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    /* Maintained simple, non-uppercase format */
}

.servicesh {
    color: #0066cc; /* Matching blue shade for a clean, professional look */
}

.section-subtitle {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-in-out;
}

/* Timeline Structure */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 60px 0;
    position: relative;
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }
.timeline-item:nth-child(6) { animation-delay: 1.2s; }

.timeline-item.left {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item.right {
    flex-direction: row;
    text-align: left;
}

.timeline-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #00ddeb, #ff007a);
    box-shadow: 0 0 20px rgba(0, 221, 235, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover .timeline-circle {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 221, 235, 0.5);
}

/* Unique Colors with Neon Effects */
.blue { background: linear-gradient(135deg, #007bff, #00ddeb); }
.green { background: linear-gradient(135deg, #28a745, #00ff9f); }
.orange { background: linear-gradient(135deg, #fd7e14, #ffca28); }
.red { background: linear-gradient(135deg, #dc3545, #ff007a); }
.brown { background: linear-gradient(135deg, #8c5523, #ff9f1c); }

/* Service Cards */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 0 15px rgba(0, 221, 235, 0.1);
    width: 480px;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 2px solid rgba(0, 221, 235, 0.2); /* Subtle border like the image */
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(0, 221, 235, 0.05), rgba(255, 0, 122, 0.05), transparent);
    animation: shine 3s infinite linear;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 221, 235, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: #fff;
    background: linear-gradient(135deg, #00ddeb, #ff007a);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 221, 235, 0.3);
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 25px rgba(0, 221, 235, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-card a {
    color: #00ddeb;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card a:hover {
    color: #ff007a;
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 10px 0; /* Remove padding on sides to hide borders */
        margin-bottom: 0;
        /* border-left: none; Hide left border on mobile */
        /* border-right: none; Hide right border on mobile */
    }

    .section-title {
        font-size: 2.2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .timeline-circle {
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .service-card {
        width: 90%;
        max-width: 500px;
        padding: 25px;
    }

    .service-card i {
        font-size: 2.5rem;
        padding: 15px;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .timeline-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-card i {
        font-size: 2rem;
    }
}



/* ====== Contact Us Page Styling ====== */

.contact-section {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fc; /* Very slight blue shade for a clean, marketing-inspired look */
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.3), rgba(240, 245, 255, 0.3)); /* Subtle cartoon-like blue shade */
    z-index: -1; /* Fix: Ensure it’s behind all content */
    opacity: 0.8;
}

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

/* Flexbox Layout */
.contact-content {
    display: flex;
    align-items: stretch; /* Ensure both sides stretch to the same height */
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Left Side: Map */
.contact-map {
    flex: 1; /* Take equal width as the right side */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px; /* Add 5px gap on left and right */
}

.map-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 600px; /* Set a fixed height to match the form section */
    border-radius: 10px;
}

/* Right Side: Contact Form and Info */
.contact-text {
    flex: 1; /* Take equal width as the left side */
    text-align: left;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space evenly */
    margin: 0 5px; /* Add 5px gap on left and right */
}

.contact-text h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.c-highlight {
    color: #0066cc; /* Neon blue for consistency */
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.contact-form label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00ddeb;
    box-shadow: 0 0 10px rgba(0, 221, 235, 0.3);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Send Button */
.send-btn {
    padding: 12px 25px;
    display: inline-block;
    background: linear-gradient(90deg, #00ddeb, #ff007a);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 221, 235, 0.3);
    margin-top: 15px;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 221, 235, 0.5);
}

/* Contact Info */
.contact-info {
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    animation: fadeIn 1.5s ease-in-out;
}

.contact-info i {
    color: #00ddeb;
    font-size: 1.3rem;
}

.contact-info a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff007a; /* Neon pink on hover */
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1325px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-map {
        order: 1; /* Map goes on top */
        margin: 0; /* Reset margin for smaller screens */
    }

    .contact-text {
        order: 2; /* Form and info go below */
        text-align: center;
        margin: 0; /* Reset margin for smaller screens */
    }

    .contact-map,
    .contact-text {
        width: 100%; /* Ensure full width on smaller screens */
        max-width: calc(100% - 10px); /* Add 5px gap on both sides */
        margin: 0 auto; /* Center the content */
    }

    .contact-map iframe {
        height: 400px; /* Reduce height for smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 10px 0;
        margin-top: 0;
    }

    .contact-map iframe {
        height: 350px; /* Further reduce map height */
    }

    .contact-text {
        max-width: calc(90% - 10px);
        margin: 0 auto;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .send-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .contact-info {
        font-size: 1rem;
        gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .contact-info i {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .contact-section {
        padding: 20px 10px;
    }

    .contact-map iframe {
        height: 300px; /* Further reduce map height */
    }

    .contact-text {
        max-width: calc(90% - 10px);
        margin: 0 auto;
    }

    .contact-text h2 {
        font-size: 1.8rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 8px;
        font-size: 0.85rem;
    }

    .send-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .contact-info {
        font-size: 0.9rem;
        gap: 8px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .contact-info i {
        font-size: 1rem;
    }
}


/* ======== Footer Section ======== */

footer {
    background: #25252e; /* Dark Theme */
    color: white;
    padding: 60px 0;
    width: 100%;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Footer Container */
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    gap: 30px;
    flex-wrap: nowrap; /* Prevents sections from wrapping */
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 200px;
    padding: 10px;
}


/* Fix for Follow Us alignment */
.footer-section.follow-us {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    justify-content: flex-start;
}

/* Section Headers */
.footer-section h3 {
    font-size: 20px;
    color: #f4a261;
    margin-bottom: 12px;
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
    font-size: 16px;
}

.footer-section ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #f4a261;
    padding-left: 5px;
}

/* Contact Info */
.footer-section p i {
    margin-right: 10px;
    color: #f4a261;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f4a261;
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 12px;
    font-size: 14px;
    margin-top: 20px;
    color: #bbb;
}

/* Responsive Design */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap; /* Allow wrapping */
        justify-content: center;
        text-align: center;
    }
    .footer-section {
        width: 45%; /* Show two sections per row */
        text-align: left;
    }
    .footer-section.follow-us {
        align-items: flex-start;
    }
    .social-icons {
        justify-content: flex-start;
    }
}


/* Small Tablets & Large Phones (700px - 768px) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-section.follow-us {
        align-items: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* Small Phones (Below 700px) */
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .footer-section {
        width: 100%;
        text-align: center;
    }
    .footer-section.follow-us {
        align-items: center;
    }
    .social-icons {
        justify-content: center;
    }
}





