@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
/* Topbar base */


.topbar {
    background-color: #006462;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: all 0.4s ease-in-out;
    /* smooth transition */
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease-in-out;
}

.topbar-left i,
.topbar-right i {
    margin-right: 5px;
}

.topbar-right {
    display: flex;
    gap: 12px;
}

/* Center fix for Font Awesome icons */
.topbar-right .icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    margin-left: 4px
}


/* Common 3D Style */
.topbar-right .icon {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%!important;
    background: linear-gradient(145deg, #007c79, #004c4b);
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.4),
        4px 4px 8px rgba(0, 0, 0, 0.5),
        -4px -4px 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Hover Lift + Glow */
.topbar-right .icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        inset 1px 1px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        0 8px 15px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 255, 255, 0.3);
}

/* Facebook 3D Style */
.topbar-right .facebook {
    background: linear-gradient(145deg, #1877f2, #0b4da1);
    box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.5),
        4px 4px 10px rgba(11, 77, 161, 0.7),
        -4px -4px 10px rgba(255, 255, 255, 0.1);
}

/* Instagram 3D Gradient Style */
.topbar-right .instagram {
    background: linear-gradient(145deg, #f58529, #dd2a7b, #8134af);
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.3),
        inset -2px -2px 8px rgba(0, 0, 0, 0.4),
        4px 4px 12px rgba(221, 42, 123, 0.6),
        -4px -4px 10px rgba(255, 255, 255, 0.1);
}

/* Optional glow pulse animation */
.topbar-right .icon:hover i {
    animation: glowPulse 1s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    }
}


/* .topbar-right a:hover {
    color: #f5c842;
    transform: scale(1.1);
} */

/* Mobile Responsive */
@media (max-width: 768px) {
    .topbar {
        flex-direction: row;
        justify-content: space-between;
        font-size: 13px;
        padding: 8px 15px;
        transition: all 0.4s ease-in-out;
        /* smooth on switch */
    }

    /* Hide email on mobile smoothly */
    .topbar-left .email {
        opacity: 0;
        visibility: hidden;
        width: 0;
        margin: 0;
        transition: all 0.4s ease-in-out;
    }

    .topbar-left {
        justify-content: flex-start;
        gap: 5px;
    }

    .topbar-right {
        justify-content: flex-end;
        gap: 10px;
    }
}

.topbar {
    opacity: 0;
    transform: translateY(-10px);
    animation: slideFadeIn 0.6s ease-out forwards;
}

@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* topbar end */
/* Navbar start */
/* Navbar Sticky */
/* Navbar */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    position: sticky;
    top: 0;
    transition: none;
}

/* Sticky behavior */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
}

/* Brand */
.navbar-brand {
    color: #006462 !important;
    font-weight: 600;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    transition: none;
}

.navbar-brand:hover {
    transform: none;
}

.navbar-brand img {
    height: 55px;
    margin-right: 12px;
    transition: none;
}

.navbar-brand img:hover {
    transform: none;
}

/* Links */
.nav-link {
    color: #006462 !important;
    font-weight: 500;
    font-size: 18px;
    transition: none;
    padding: 10px 20px !important;
}

.nav-link:hover {
    color: #ff0000 !important;
    transform: none;
}

/* Dropdown (Desktop) */
@media (min-width: 768px) {
    .dropdown-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: #f8fdfb;
        border-radius: 15px;
        padding: 15px;
        min-width: 400px;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .dropdown-item {
        background: #fff;
        border-radius: 12px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: none;
    }

    .dropdown-item:hover {
        background: linear-gradient(135deg, #00a68c, #006462);
        color: #fff !important;
        transform: none;
        box-shadow: none;
    }

    .dropdown-item i {
        font-size: 16px;
        color: #00a68c;
        transition: none;
    }

    .dropdown-item:hover i {
        transform: none;
        color: #fff;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .navbar-collapse {
        background: #f8fdfb;
        border-radius: 15px;
        margin-top: 10px;
        padding: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: none;
        overflow: hidden;
    }

    .navbar-collapse.collapse:not(.show) {
        max-height: 0;
        opacity: 0;
    }

    .navbar-collapse.show {
        max-height: 600px;
        opacity: 1;
    }

    .dropdown-menu {
        max-height: 300px;
        overflow-y: auto;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        padding: 10px;
        margin-top: 5px;
    }

    .dropdown-item:hover {
        background: linear-gradient(135deg, #00a68c, #006462);
        color: #fff !important;
        transform: none;
    }
}

/* Get a Quote button */
.get-quote-btn {
    background: linear-gradient(135deg, #006462, #00a68c);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 35px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0, 100, 98, 0.4);
    transition: none;
}

.get-quote-btn:hover {
    background: linear-gradient(135deg, #004d4d, #00997f);
    transform: none;
    color: #ff0000;
    box-shadow: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .get-quote-btn {
        padding: 15px 20px;
        font-size: 12px;
        margin-left: 0;
        gap: 6px;
        width: 140px;
        justify-content: center;

    }
}


/* navbar end */



/* crousel end */

/* fixed button start */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Desktop & mobile left */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button base */
.fixed-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    /* Add this line to remove underline */
}

/* Pulse animation for attention */
.fixed-buttons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Call Button - Blue Gradient */
.call-btn {
    background: linear-gradient(135deg, #1e90ff, #0073e6);
}

.call-btn:hover {
    transform: scale(1.2) rotate(-5deg);
    background: linear-gradient(135deg, #0073e6, #1e90ff);
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.6);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #00c853, #64dd17);
}

.whatsapp-btn:hover {
    transform: scale(1.2) rotate(-5deg);
    background: linear-gradient(135deg, #64dd17, #00c853);
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.6);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 90px;
        left: 15px;
        gap: 12px;
    }

    .fixed-buttons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* fixed button end */

/* heading end*/
.section-title {
    font-size: 30px!important;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-transform: capitalize;
    padding: 30px 0 0 0;
    background: linear-gradient(90deg, #00a3a1, #008376, #00c2a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title span {
    font-family: 'Poppins', sans-serif;
}

.section-tagline {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px !important;
    color: #006462;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive font size for mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 25px;
        padding: 20px 0 8px 0;
    }

    .section-tagline {
        font-size: 14px;
        line-height: 1.4;
        max-width: 90%;
    }
}

/* heading end */


/* gallery end */

/* our client start */


@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Section Title ===== */
/* ===== Background Animation ===== */

/* our client end */

/* enquiry start */
/* ===== Enquiry Section ===== */
.enquiry-section {
    background: #ffffff;
    color: #182333;
    padding: 10px 20px;
    font-family: "Cinzel", serif;
}

/* Section Heading */
.enquiry-heading {
    font-family: "Cinzel", serif;
    font-size: 35px;
    font-weight: 700;
    color: #006462;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* .enquiry-heading::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #00c2a8, #008376);
        margin: 8px auto 0 auto;
        border-radius: 2px;
      } */

.enquiry-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
    /* ensures equal height */
    justify-content: space-between;
}

/* ===== Left Image ===== */
.enquiry-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* maintains aspect ratio */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.enquiry-image:hover img {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ===== Right Form ===== */
.enquiry-form {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* centers form vertically */
}

.enquiry-form:hover {
    transform: translateY(-5px);
}

.enquiry-form h2 {
    color: #006462;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
}

.enquiry-form h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #00c2a8;
    display: block;
    margin-top: 8px;
    border-radius: 2px;
}

/* Inputs and Textarea */
.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #00c2a8;
    box-shadow: 0 0 8px rgba(0, 194, 168, 0.3);
    outline: none;
}

/* Button */
.enquiry-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, #00c2a8, #008376);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.enquiry-form button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #008376, #005248);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .enquiry-container {
        flex-direction: column;
        text-align: center;
    }

    .enquiry-form h2 {
        font-size: 28px;
    }

    .enquiry-image img {
        height: auto;
        /* allow normal flow on small screens */
    }
}

/* enquiry end */

/* footer start  */
/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #00766A, #004D47);
    color: #fff;
    padding: 60px 20px 20px 20px;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/projectbgimg.jpg") center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #fff;
}

.footer-about {
    font-size: 15px;
    color: #ccc;
    margin-top: 10px;
    line-height: 1.8;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #00c2a8;
    display: block;
    margin-top: 5px;
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #00c2a8;
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 10px;
    color: #00c2a8;
}

/* 3D Social Icons */
.footer-socials {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.08),
            rgba(0, 0, 0, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.6),
        -4px -4px 12px rgba(255, 255, 255, 0.05),
        inset 2px 2px 6px rgba(255, 255, 255, 0.06),
        inset -2px -2px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    background: #00c2a8;
    color: #fff;
    transform: translateY(-6px) scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(0, 194, 168, 0.4), inset 0 0 8px rgba(0, 194, 168, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-logo,
    .footer-about,
    .footer-bottom {
        text-align: left !important;
    }

    .footer-socials {
        justify-content: flex-start !important;
    }

    .footer-heading {
        margin-top: 30px;
        text-align: left !important;
    }

    .footer-contact p,
    .footer-links a,
    .footer-links li {
        text-align: left !important;
    }
}

/* footer end */

/* breadcrumb banner start */
/* Banner Section */
.breadcrumb-banner {
    position: relative;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(120, 179, 173, 0.4), rgba(71, 144, 136, 0.4)),
        url("images/breadcrumb.webp") center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay to improve contrast */
.breadcrumb-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.breadcrumb-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.breadcrumb {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.breadcrumb span {
    color: #d2d2d2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-banner {
        padding: 10px 5px;
    }

    .breadcrumb-content h1 {
        font-size: 16px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

/* breadcrumb banner end */

/* about why choose us start */

/* Section Styling */
.why-section {
    padding: 80px 10%;
    text-align: center;
    background: linear-gradient(135deg, #009290, #005D5D);
    color: #fff;
}

.why-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s forwards;
}

.why-section h2 span {
    color: #ffd700;
}

/* Cards Row */
.why-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Glassmorphism Cards */
.why-card {
    flex: 1 1 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s, box-shadow 0.4s, color 0.4s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.2s;
}

.why-card:nth-child(2) {
    animation-delay: 0.4s;
}

.why-card:nth-child(3) {
    animation-delay: 0.6s;
}

.why-card:nth-child(4) {
    animation-delay: 0.8s;
}

/* Hover effect */
.why-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.why-card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 15px;
    transition: transform 0.4s, color 0.4s;
}

.why-card:hover i {
    color: #00fff2;
    transform: rotate(10deg);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
    font-family: "Cinzel", serif;
}

.why-card p {
    font-size: 15px;
    color: #e0f7f7;
    line-height: 1.6;
    font-family: "Cinzel", serif;
}

/* Fade-in Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in Down Animation for heading */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* about why choose us end */

/* our mission start */
/* Sections */
.section-mission,
.section-vision {
    display: flex;
    align-items: stretch;
    gap: 50px;
    padding: 80px 10%;
}

.section-mission {
    background: #f0f0f0;
}

.section-vision {
    background: #e8f7f7;
}

/* Images */
.section-mission-img,
.section-vision-img {
    flex: 1;
    display: flex;
    opacity: 0;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.section-mission-img {
    animation-name: slideFromLeft;
}

.section-vision-img {
    animation-name: slideFromRight;
}

.section-mission-img img,
.section-vision-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Content */
.section-mission-content,
.section-vision-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    animation: fadeInBlock 1s forwards;
    animation-delay: 0.3s;
}

/* Titles */
.section-mission-title,
.section-vision-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #005D5D;
    font-family: "Cinzel", serif;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s forwards;
}

.highlight-text {
    color: #009290;
}

/* Paragraphs */
.section-mission-text,
.section-vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: #23435c;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
    animation-delay: 0.5s;
    /* font-family: "Cinzel", serif; */
}

/* Animations */
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBlock {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
/* Responsive */
@media (max-width: 992px) {

    .section-mission,
    .section-vision {
        flex-direction: column;
        gap: 20px;
        padding: 60px 5%;
    }

    .section-mission-img img,
    .section-vision-img img {
        height: auto;
        /* keep image natural height */
        max-height: 400px;
        /* limit max height */
    }

    /* Make image appear first on mobile for both sections */
    .section-mission-img,
    .section-vision-img {
        order: -1;
    }

    .section-mission-title,
    .section-vision-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .section-mission-text,
    .section-vision-text {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .section-mission,
    .section-vision {
        padding: 10px 5%;
        gap: 15px;
    }

    .section-mission-title,
    .section-vision-title {
        font-size: 24px;
    }

    .section-mission-text,
    .section-vision-text {
        font-size: 16px;
         line-height: 1.5; 
        text-align: justify;
        word-spacing: -2px;
    }
}


/* our mission end */

/* contact us start */
/* Wrapper & Heading */
.section-contact-wrapper {
    padding: 40px 10% 0 10%;
    background: #f9f9f9;
}

.section-contact-heading {
    text-align: center;
    margin-bottom: 50px;
    font-family: "Cinzel", serif;
    opacity: 0;
    animation: headingFade 1s forwards;
}

.section-contact-heading h2 {
    font-size: 36px;
    color: #005d5d;
}

.section-contact-heading-highlight {
    color: #009290;
}

@keyframes headingFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.section-contact {
    display: flex;
    gap: 50px;
    padding: 80px 0;
    font-family: "Cinzel", serif;
    background: #f9f9f9;
}

/* Map Animation */
.section-contact-map {
    flex: 1;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    animation: mapSlideFade 1s forwards;
}

/* Form Animation */
.section-contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    animation: formSlideFade 1s forwards;
    animation-delay: 0.3s;
}

/* Titles */
.section-contact-title {
    font-size: 36px;
    color: #005d5d;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-20px);
    animation: titleFade 1s forwards;
    animation-delay: 0.5s;
}

.section-contact-highlight {
    color: #009290;
}

/* Form Fields */
.section-contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-contact-form-inner input,
.section-contact-form-inner textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: "Cinzel", serif;
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: inputFade 1s forwards;
}

.section-contact-form-inner input:nth-child(1) {
    animation-delay: 0.7s;
}

.section-contact-form-inner input:nth-child(2) {
    animation-delay: 0.85s;
}

.section-contact-form-inner input:nth-child(3) {
    animation-delay: 1s;
}

.section-contact-form-inner textarea {
    animation-delay: 1.15s;
}

.section-contact-form-inner input:focus,
.section-contact-form-inner textarea:focus {
    border-color: #009290;
    box-shadow: 0 0 10px rgba(0, 146, 144, 0.2);
}

/* Button */
.section-contact-form-inner button {
    padding: 15px;
    background: #009290;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: inputFade 1s forwards;
    animation-delay: 1.3s;
    transition: 0.3s;
}

.section-contact-form-inner button:hover {
    background: #005d5d;
    transform: translateY(-3px);
}

/* Animations */
@keyframes mapSlideFade {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes formSlideFade {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes inputFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-contact {
        flex-direction: column;
        gap: 30px;
        padding: 60px 5%;
    }

    .section-contact-map,
    .section-contact-form {
        width: 100%;
        min-height: 300px;
    }

    .section-contact-title {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-contact-title {
        font-size: 24px;
    }

    .section-contact-form-inner input,
    .section-contact-form-inner textarea {
        font-size: 14px;
    }

    .section-contact-form-inner button {
        font-size: 14px;
    }
}

/* contact us end */

/* gallery start */
/* Gallery Section */
.my-gallery-section {
    padding: 60px 20px;
    background: #f7f7f7;
    text-align: center;
}

.my-gallery-heading {
    font-size: 36px;
    margin-bottom: 40px;
    color: #008376;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Cinzel", serif;
    font-weight: bold;
}

/* Gallery Grid */
.my-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
}

.my-gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 95%;
}

.my-gallery-item img {
    width: 100%;
    height: 250px;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.my-gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.my-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 131, 118, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    font-family: "Cinzel", serif;
}

.my-gallery-item:hover .my-gallery-overlay {
    opacity: 1;
}

/* Modal Styles */
.my-modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.my-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 15px;
}

#myModalCaption {
    text-align: center;
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
}

.my-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.my-close:hover {
    color: #008376;
}

/* Responsive */
@media (max-width: 992px) {
    .my-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .my-gallery-item {
        width: 90%;
    }
}

@media (max-width: 576px) {
    .my-gallery-grid {
        grid-template-columns: 1fr;
    }

    .my-gallery-heading {
        font-size: 28px;
    }

    .my-gallery-item img {
        height: 200px;
    }

    .my-gallery-overlay {
        font-size: 18px;
    }

    .my-gallery-item {
        width: 95%;
    }
}

/* gallery end */

/* our client start*/
.hospital-list-section {
    background: linear-gradient(to right, #e0f7f7, #f7f7f7);
    padding: 60px 10%;
    font-family: "Cinzel", serif;
    text-align: center;
    position: relative;
}

.hospital-list-section h2 {
    font-size: 36px;
    background: linear-gradient(90deg, #008376, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.hospital-list-container {
    display: flex;
    justify-content: center;
}

.hospital-list {
    columns: 2;
    column-gap: 60px;
    list-style: none;
    font-size: 18px;
    color: #005d5d;
    line-height: 2;
    text-align: left;
    padding: 0;
}

.hospital-list li {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 147, 144, 0.05);
}

/* Hover effect without changing cursor */
.hospital-list li:hover {
    background: rgba(0, 147, 144, 0.15);
    transform: translateX(6px);
    color: #00695c;
}

/* Arrow styling */
.hospital-list li::before {
    content: "→";
    color: #008376;
    margin-right: 8px;
    transition: transform 0.3s, color 0.3s;
}

.hospital-list li:hover::before {
    color: #00b894;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .hospital-list {
        columns: 1;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hospital-list-section h2 {
        font-size: 28px;
    }

    .hospital-list {
        font-size: 14px;
    }
}

/* our client end */



/* team end */