/* top header start */
/* ---------- Base Font Styling ---------- */
body {
    font-family: "Domine", serif;
    color: #1f2d3d;
    margin: 0;
    padding: 0;
}

.topbar {
    background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    padding: 3px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ---------- Animated Gradient ---------- */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---------- Left Side ---------- */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.topbar-left a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.topbar-left a i {
    font-size: 16px;
    color: #fff;
}

.topbar-left a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ---------- Right Side ---------- */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-right a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.15));
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25),
        -2px -2px 6px rgba(255, 255, 255, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* 💫 Shine Effect */
.topbar-right a::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(25deg);
    transition: 0.6s;
}

.topbar-right a:hover::before {
    left: 100%;
    top: 100%;
}

/* 🎯 Hover Effect */
.topbar-right a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3),
        -4px -4px 10px rgba(255, 255, 255, 0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .topbar-left a:first-child {
        display: none;
        /* hide email on mobile */
    }
}

@media (max-width: 576px) {
    .topbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 20px;
    }

    .topbar-left a:first-child {
        display: none;
    }

    .topbar-left a:last-child {
        font-size: 14px;
    }

    .topbar-right a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* top header end */

/* navbar start */
a {
    text-decoration: none;
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ---------- Logo ---------- */
.navbar-logo {
    font-size: 28px;
    font-weight: 700;
   /*background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

/* ---------- Navbar Links ---------- */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 500;
    font-size: 16px;
}

.navbar-links a {
    background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-weight: 900;
    /* Bold effect added */
}

.navbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
    transition: width 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

/* ---------- Get Estimate Button ---------- */
/* ---------- Get Estimate Button (Updated Premium Look) ---------- */
.get-estimate-btn {
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #0078ff, #00c6ff);
    background-size: 200% 200%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.get-estimate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-position: right center;
}


/* Gradient Animation Keyframes */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---------- Responsive Menu ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #1976d2;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .navbar-links {
        position: fixed;
        top: 120px;
        right: -100%;
        flex-direction: column;
        background: #fff;
        width: 250px;
        height: calc(100% - 70px);
        padding-top: 30px;
        gap: 20px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .navbar-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ---------- Responsive Adjustments ---------- */
/* @media (max-width: 992px) {
  .navbar {
    padding: 20px 20px;
  }

  .navbar-links {
    transition: right 0.4s ease;
  }

  .get-estimate-btn {
    margin: 0 20px;
  }
} */
/* ---------- Hamburger Animation ---------- */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* navbar end */

/* crousel start */
/* Full screen carousel */
#imageCarousel {
    width: 100%;
    height: 90vh;
}

/* ⭐ iPad / Tablet screens */
@media (min-width: 768px) and (max-width: 1024px) {
    #imageCarousel {
        height: 30vh; /* ← iPad ke liye chhoti height */
    }
}


#imageCarousel .carousel-inner {
    height: 100%;
}

#imageCarousel .carousel-item {
    height: 100%;
    overflow: hidden;
}

#imageCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* animation: zoomAnimation 20s ease-in-out infinite;
  transition: transform 1s ease; */
}

/* ✅ Apply only on desktop screens (width ≥ 1024px) */
@media (min-width: 1024px) {
    #imageCarousel .carousel-item img {
        height: 100%;
        /* reduce height for desktop */
        object-fit: cover;
    }
}


/* ✅ For mobile devices (screen width below 768px) */
@media (max-width: 768px) {
    #imageCarousel .carousel-item img {
        width: 90%;
       
        height: auto;
     
        margin: 0 auto;
      
        display: block;
       
    }
}

@keyframes zoomAnimation {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(0, 0);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Heights */
@media (max-width: 992px) {
    #imageCarousel {
        height: 70vh;
    }
}

@media (max-width: 768px) {
    #imageCarousel {
        height:30vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #imageCarousel {
        height: 30vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 8px;
        margin-bottom: 57px;
    }
}

/* crousel end */

/* heading  start */
/* ---------- Hero Section ---------- */
.hero-section {
    width: 100%;
    /* min-height: 10vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
      margin-top: 20px;   /* jitna margin chaho yahan badha sakti ho */
  }
}

@media (max-width: 576px) {
  .hero-section {
      margin-top: -60px;  /* chote phones ke liye thoda zyada */
  }
}


/* ---------- Gradient Text: Blue Dark to Light ---------- */
.gradient-text {
    background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    font-family: 'Domine', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
}

/* ---------- Animated Underline ---------- */
.gradient-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #0d47a1, #1976d2, #42a5f5);
    border-radius: 5px;
    animation: underlineSlide 1s forwards 1s;
}

@keyframes underlineSlide {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .gradient-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gradient-text {
        font-size: 2rem;
    }
}

/* heading end */

/* fixed button start */
/* Floating Contact Buttons (Left Side) */
.fixed-contact-buttons-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 1s forwards ease-in-out;
    animation-delay: 0.3s;
}

/* Base style for both buttons */
.fixed-contact-buttons-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatUpDown 3s ease-in-out infinite;
}

/* Call button - Blue gradient */
.call-btn {
    background: linear-gradient(135deg, #0078ff, #0053cc);
    animation-delay: 0s;
    box-shadow: 0 0 15px rgba(0, 120, 255, 0.6);
}

/* WhatsApp button - Green gradient */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation-delay: 1s;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* Hover effects */
.fixed-contact-buttons-left a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7),
        0 0 35px rgba(0, 0, 0, 0.2);
}

/* Floating animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .fixed-contact-buttons-left {
        bottom: 80px;
        /* increased from 15px to move upward */
        left: 15px;
        gap: 12px;
    }

    .fixed-contact-buttons-left a {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* fixed button end */

/* about start */
/* ---------- About Section ---------- */
.about-section {
    padding: 20px 0;
}

.about-image img {
    width: 100%;
    max-height: 400px;
    border-radius: 20px;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }
}

/* ---------- Content ---------- */
.about-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

/* Fade Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Logo */
.about-title {
    font-size: 2.3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #003366, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s forwards 0.5s;
}

/* Animate Heading */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Underline */
/* .about-title::after {
    content: "";
    display: block;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #003366, #66ccff);
    margin-top: 5px;
    border-radius: 2px;
    animation: growLine 1s forwards 1s;
} */

/* Grow underline */
@keyframes growLine {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

.about-content p {
    font-size: 1rem;
    /*line-height: 1.8;*/
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.2s;
    /*text-align: justify;*/
}

/* about end */

/* why choose us start */
/* Section Background */
.why-choose-us {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6ebff 100%);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* Section Title */
.text-center h2.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #003366, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
}

.text-center p.section-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* Feature Cards */
.feature-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    transition: transform 0.5s, box-shadow 0.5s, background 0.5s;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.feature-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    background: #e6f0ff;
}

/* Feature Icon */
.feature-icon {
    font-size: 3.5rem;
    color: #003366;
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s;
}

.feature-box:hover .feature-icon {
    color: #66ccff;
    transform: scale(1.2);
}

/* Feature Title */
.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Feature Text */
.feature-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Animation Keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* why choose us end */

/* services section start  */

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.text-center h2.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #003366, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
}

.text-center p.section-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 60px;
}

.service-box {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    transition: transform 0.5s, box-shadow 0.5s, background 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(0, 51, 102, 0.05),
            rgba(102, 204, 255, 0.05),
            rgba(0, 51, 102, 0.05));
    transform: skewX(-25deg);
    transition: all 0.7s;
}

.service-box:hover::before {
    left: -25%;
}

.service-box:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: #e6f0ff;
}

.service-icon {
    margin-bottom: 20px;
    transition: transform 0.5s, box-shadow 0.5s;
    display: inline-block;
}

.service-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(0, 51, 102, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s, box-shadow 0.5s, border 0.5s;
}

.service-box:hover .service-icon img {
    transform: scale(1.3) rotate(10deg);
    box-shadow: 0 25px 50px rgba(0, 51, 102, 0.3);
    border-color: rgba(102, 204, 255, 0.5);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #003366, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    transition: color 0.4s;
}

.service-box:hover .service-text {
    color: #003366;
}

/* services section end */
/* our project section start  */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Card Style */
.property-card {
    position: relative;
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.property-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-bottom: 1px solid #ddd;
}

.property-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.88);
}

.property-content {
    padding: 20px 18px;
    flex-grow: 1;
    color: #1b263b;
    transition: all 0.3s;
}

.property-content h3 {
    margin-top: 0;
    font-size: 17px;
    margin-bottom: 8px;
    color: #1b263b;
    transition: color 0.3s;
}

.property-card:hover .property-content h3 {
    color: #1e90ff;
}

.property-content p {
    font-size: 13px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #333;
}

.property-content p i {
    color: #1e90ff;
    min-width: 18px;
}

.property-content ul {
    padding-left: 18px;
    margin: 4px 0;
    color: #555;
    font-size: 12px;
}

.property-content ul li {
    margin-bottom: 3px;
}

/* Footer Button */
.property-footer {
    padding: 18px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.property-footer a {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #4facff);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.25);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    font-size: 13.5px;
}

.property-footer a::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    top: 0;
    left: -100%;
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.property-footer a:hover::before {
    left: 100%;
}

.property-footer a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(30, 144, 255, 0.45);
}

/* Responsive */
@media(max-width:768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .property-card {
        width: 100%;
        max-width: 360px;
    }

    .property-card img {
        height: 180px;
    }

    .property-content h3 {
        font-size: 16px;
    }

    .property-content p {
        font-size: 12px;
    }

    .property-content ul {
        font-size: 11.5px;
    }

    .property-footer a {
        padding: 9px 18px;
        font-size: 12.5px;
    }
}

/* our project sention end  */

/*enquiry start*/

/* Section */
.contact-section {
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

/* Header */
.header-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.brand-text {
    font-size: 40px;
    font-weight: 700;
    color: #0a3d62;
    animation: fadeDown 1s forwards;
    letter-spacing: 1px;
}

/* Contact Row */
.contact-container {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

/* Left Image */
.image-side {
    flex: 1;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLeft 1s forwards;
    animation-delay: 0.3s;
}

.image-side img {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-side img:hover {
    transform: scale(1.04);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* Right Form */
.form-side {
    flex: 1;
    background: #f9f9f9;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: left;
    opacity: 0;
    transform: translateX(60px);
    animation: slideInRight 1s forwards;
    animation-delay: 0.5s;
}

.form-side h3 {
    font-size: 26px;
    color: #0a3d62;
    margin-bottom: 25px;
    position: relative;
}

.form-side h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3c6382;
    border-radius: 5px;
}

/* Form Rows */
.input-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 12px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    transition: 0.3s;
}

.input-row:hover {
    border-color: #3c6382;
    box-shadow: 0 0 10px rgba(60, 99, 130, 0.25);
}

.input-row i {
    margin-right: 12px;
    color: #3c6382;
    font-size: 17px;
}

.input-row input,
.input-row textarea {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    background: transparent;
    resize: none;
    font-family: "Domine", serif;
    color: #0a3d62;
}

.input-row input::placeholder,
.input-row textarea::placeholder {
    color: #777;
}

.textarea-row {
    align-items: flex-start;
    border-radius: 20px;
    padding: 15px 18px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(90deg, #0a3d62, #3c6382);
    color: white;
    padding: 13px;
    width: 100%;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #1e3799;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 55, 153, 0.35);
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
        gap: 25px;
    }

    .image-side img {
        height: 340px;
    }

    .form-side {
        padding: 30px;
        margin-top: 15px;
        transform: none;
        animation: none;
        opacity: 1;
    }

    .brand-text {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .form-side {
        padding: 25px;
    }

    .input-row {
        padding: 10px 15px;
    }

    .input-row i {
        font-size: 15px;
    }

    .brand-text {
        font-size: 28px;
    }
}

/* enquiry end */

/* footer start */
/* Premium Footer */
.premium-footer {
    background: linear-gradient(135deg, #1b263b, #0a3d62);
    color: #fff;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease forwards;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-top {
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 10px;
}

.footer-box {
    flex: 1 1 195px;
    min-width: 250px;
}

.footer-box h4 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* .footer-box h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 5px;
} */

.footer-box p,
.footer-box li,
.footer-box a {
    color: #dce1eb;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box li {
    margin-bottom: 8px;
}

.footer-box a:hover {
    color: #ffffff;
    transform: translateX(4px);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    /* space between icons */
    margin-top: 15px;
    justify-content: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    background: #333;
    /* default dark bg */
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effects with brand colors */
.footer-social a:hover {
    transform: scale(1.2) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Specific brand colors on hover */
.footer-social a:nth-child(1):hover {
    background: #3b5998;
}

/* Facebook */
.footer-social a:nth-child(2):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Instagram */
.footer-social a:nth-child(3):hover {
    background: #0077b5;
}

/* LinkedIn */
.footer-social a:nth-child(4):hover {
    background: #ff0000;
}

/* YouTube */

/* Footer Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-box {
        margin-bottom: 30px;
    }

    .footer-social a {
        margin: 5px;
    }
}

/* footer end */