
         @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
       
       :root {
            --primary: #1a1a1a;
            --secondary: #D4AF37;
            --gold-dark: #B8941E;
            --text-light: #666;
            --text-dark: #1a1a1a;
            --bg-light: #f8f8f8;
            --bg-white: #ffffff;
            --bg-dark: #1a1a1a;
               --primary-gold: #c9a87c;
            --dark-navy: #1a2332;
            --soft-gray: #f8f9fa;
            --text-dark: #2c3e50;

            --bg: #ffffff;
      --surface: #ffffff;
      --card: #ffffff;
      --text: #111111;
      --muted: #555555;
      --border: rgba(0,0,0,0.12);
      --accent: #d4af37; /* soft gold */
      --accent-2: #9e7c21;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(0,0,0,.12);
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.8;
            overflow-x: hidden;
            background: var(--bg-white);
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 1.5rem 0;
            box-shadow: 0 2px 15px rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .navbar-brand {
                  font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--primary) !important;
    position: absolute;
    top: -42px;
    border-bottom-right-radius: 22px;
    background: transparent;
    padding: 10px;
    border-bottom-left-radius: 22px;
        }

        /* .navbar-brand::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--secondary);
        } */

        .navbar-brand img{width: 135px;
        margin-top:8px;}

        .nav-link {
            color: var(--primary) !important;
            margin: 0 1rem;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--secondary) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Banner Carousel */
        .banner-carousel {
            height: 100vh;
            position: relative;
        }

        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(212, 175, 55, 0.15));
        }

        .carousel-caption {
            top:70%;
            transform: translateY(-50%);
            bottom: auto;
            z-index: 10;
        }

        .carousel-caption h1 {
            font-size: 4rem;
         
            letter-spacing: 3px;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
            color: var(--secondary);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
                font-weight: bold;
        }

        .carousel-caption p {
            font-size: 1.6rem;
            font-weight: 100;
            line-height: 2;
            max-width: 812px;
            margin: 0 auto;
            animation: fadeInUp 1.2s ease;
            color: #ffffff;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

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

        /* Section Styling */
        section {
            padding:2rem 0;
            background: var(--bg-white);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--primary);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--secondary);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 2;
            max-width: 900px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        /* Property Cards */
        .property-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.5s ease;
            background: var(--bg-white);
            margin-bottom: 2rem;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .property-image {
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            background-color: #e0e0e0;
        }

        .property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .property-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
            color: white;
        }

        .property-title {
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            color: var(--secondary);
        }

        .property-card .p-4 {
            background: var(--bg-white);
            color: var(--text-light);
        }

        .property-card .p-4 .text-muted {
            color: var(--text-light) !important;
        }

        /* Stats Section */
        .stats-section {
            background: var(--primary);
            border-top: 3px solid var(--secondary);
            border-bottom: 3px solid var(--secondary);
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 200;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ffffff;
            letter-spacing: 2px;
            font-weight: 300;
        }

        /* CTA Button */
        .cta-btn {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            padding: 1rem 3rem;
            font-size: 0.9rem;
            letter-spacing: 2px;
            transition: all 0.4s;
            text-transform: uppercase;
            font-weight: 500;
        }

        .cta-btn:hover {
            background: var(--secondary);
            color: var(--bg-white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        /* Testimonial */
        .testimonial-card {
            background: var(--bg-light);
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin: 2rem 0;
            border-left: 4px solid var(--secondary);
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-light);
            line-height: 2;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            font-weight: 500;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: #050506;
            color: white;
            padding: 4rem 0 2rem;
            border-top: 3px solid var(--secondary);
        }

        footer h5 {
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            color: var(--secondary);
        }

        footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        footer a:hover {
            color: var(--secondary);
        }

        .social-icons a {
            font-size: 1.5rem;
            margin: 0 1rem;
            color: var(--secondary);
            transition: all 0.3s;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            .carousel-caption p {
                font-size: 1rem;
            }
            section {
                padding: 4rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
        }


        .why-section {
      padding: 8rem  0rem 0rem 0rem;
      max-height: 930px;
    }

    .why-subtitle {
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .why-heading {
      color: #050506;
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 4rem;
    }

    .why-section  .carousel-item {
      /* background: #fff; */
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      border-radius: 0;
      overflow: hidden;
    }

    .why-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .why-content {
      background: #f5f5f5;
      padding: 2rem 5rem 7rem 5rem;
      position: relative;
    }

    .why-content h3 {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .title-below-txt{
      font-style: italic;
    margin-bottom: 14px !important;
    margin-top: -14px !important;
    color:#B8941E !important;

    }
    .service-btn{
      padding:0.6rem 1rem;
      color:#B8941E;
      border:2px solid #B8941E;
      margin-bottom:12px;
    }
    .why-content p {
      color: #666;
      line-height: 1.8;
      font-size: 1rem;
      margin-bottom: 1rem;
    }

     .why-section .carousel-controls {
      position: absolute;
      bottom: 2rem;
      left: 5rem;
      display: flex;
      gap: 0.5rem;
    }

     .why-section .carousel-controls button {
      background: none;
      border: 1px solid #ddd;
      color: var(--accent);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .why-section .carousel-controls button:hover {
      background: var(--secondary);
      color: #fff;
      border-color: var(--secondary);
    }

    @media (max-width: 992px) {
      .why-content {
        padding: 3rem 2rem 6rem;
        text-align: center;
      }

      .carousel-controls {
        left: 50%;
        transform: translateX(-50%);
      }
    }

    .why-section .carousel-item::before {
            content: '';
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: none;
            display:none;
        }

        /* award  */

    /* Section Base */
    .projects-section {
      padding: 8rem 0;
      background: var(--card-bg);
      position: relative;
    }

    /* Header */
    .projects-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .projects-header h5 {
      color: var(--secondary);
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
    }

    .projects-header h2 {
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--accent);
    }

    .projects-header a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 500;
      letter-spacing: 1px;
      font-size: 0.95rem;
      border-bottom: 1px solid var(--secondary);
      padding-bottom: 3px;
      transition: all 0.3s;
    }

    .projects-header a:hover {
      color: var(--accent);
      border-color: var(--accent);
    }

    /* Scrollable Container */
    .scroll-container {
      display: flex;
      gap: 2rem;
      overflow-x: hidden;
      padding: 1rem 0 4rem;
      cursor: grab;
      perspective: 1500px;
    }

    .project-card {
      flex: 0 0 360px;
      height: 460px;
      position: relative;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      transform: translateZ(0);
      transition: all 0.4s ease;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .project-card:hover {
      transform: translateY(-10px) rotateY(5deg) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      transition: opacity 0.4s;
    }

    .project-card:hover img {
      opacity: 1;
    }

    .project-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
      color: #fff;
    }

    .project-overlay h4 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .project-overlay p {
      font-size: 0.95rem;
      opacity: 0.8;
    }

    .project-number {
      position: absolute;
      bottom: 1.2rem;
      right: 1.8rem;
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.12);
      pointer-events: none;
    }

    /* Background Fade for Depth */
    .projects-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.05), transparent);
      z-index: 1;
    }

    @media (max-width: 992px) {
      .project-card {
        flex: 0 0 80%;
        height: 380px;
      }

      .projects-header h2 {
        font-size: 2rem;
      }
    }


    /* about section */

        .about-section {
      padding:5rem 0;
      background: linear-gradient(to bottom, #fdfdf9, #fcfcfa);
    }

    .about-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      margin-top:4rem;
    }

    .about-content-home{
      margin-top:50px;
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 24px;
      display: block;
      transition: transform 0.4s ease;
    }

    .about-image img:hover {
      transform: scale(1.03);
    }

    .feature-grid {
        display: flex;
    background: #f4f0e3;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    /* margin-left: 0rem; */
    margin-top: 2rem;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    align-content: center;
    padding: 40px;
    border-radius: 12px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .feature-icon {
      background: var(--secondary);
      color: var(--primary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    }

    .feature-content h5 {
      font-weight: 600;
      margin-bottom: 0.3rem;
      min-height: 62px;
    }

    .about-content-home ul{list-style: circle;}
    .about-content-home ul li{color:#666;}

    .feature-content p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      color:#666;
    }

    .about-text {
      margin-top:0rem;
      /* margin-bottom: 4rem;; */
    }

    .about-text h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
    }

     .btn-custom {
      margin-top: 2rem;
      background: var(--secondary);
      color: var(--primary);
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 15px rgba(0,0,0,0.08);
      margin-left:1rem;
    }

    .feature-titles{font-weight: bold;
    padding-bottom: 10px;}
    .feature-para{color:#666;}

    .about-text .btn-custom:hover {
      transform: translateY(-2px);
      background: #f5f55f;
    }

    @media (max-width: 992px) {
      .feature-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-top: 2rem;
      }
      .about-text {
        margin-top: 4rem;
      }
      .about-text h1 {
        font-size: 2.3rem;
      }
    }

    /* tesimonial */

 .testimonial-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: hidden;
        }

        .testimonial-slider {
            padding: 20px 0;
            margin: 0 -15px;
        }

        .testimonial-card {
            background: white;
            border-radius: 8px;
            padding: 60px 40px 50px;
            margin: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            min-height: 420px;
            display: flex !important;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-quote {
            font-style: italic;
            font-size: 18px;
            line-height: 1.8;
            color: #333;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .testimonial-author {
            text-align: center;
            margin-top: auto;
        }

        .author-divider {
            width: 80px;
            height: 1px;
            background: #c9a87c;
            margin: 0 auto 25px;
        }

        .author-name {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-family: 'Georgia', serif;
        }

        .author-location {
            font-size: 15px;
            color: #999;
            font-weight: 400;
        }

        .slick-slide{
            height:570px !important;
        }
        /* Slick Slider Custom Dots */
        .slick-dots {
            bottom: -15px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: #c9a87c;
            opacity: 0.4;
        }

        .slick-dots li.slick-active button:before {
            opacity: 1;
            color: #c9a87c;
        }

        /* Hide default arrows */
        .slick-prev,
        .slick-next {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 40px 30px;
                min-height: 350px;
            }

            .testimonial-quote {
                font-size: 16px;
            }

            .author-name {
                font-size: 20px;
            }
        }


        /* consultancy service */

          .consultancy-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
            overflow: hidden;
        }

        .consultancy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
            opacity: 0.15;
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
        }

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

        .text-content {
            color: white;
        }

        .section-subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #d4af37;
            font-weight: 500;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            width: 40px;
            height: 1px;
            background: #d4af37;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .highlight {
            color: #d4af37;
            position: relative;
            display: inline-block;
        }

        .description {
            font-size: 18px;
            line-height: 1.8;
            color: #c4c4c4;
            margin-bottom: 50px;
            font-weight: 300;
        }

        .cta-button {
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            color: white;
            border: none;
            padding: 18px 45px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
        }

        .visual-content {
            position: relative;
        }

        .consultation-image {
            width: 100%;
            height: 550px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            position: relative;
        }

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

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

        .overlay-icons {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .consultation-image:hover .overlay-icons {
            opacity: 1;
        }

        .icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.3s ease;
        }

        .icon-item:hover {
            background: rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.5);
            transform: translateY(-5px);
        }

        .icon-item i {
            font-size: 36px;
            color: #d4af37;
            margin-bottom: 15px;
        }

        .icon-item span {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .floating-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: #d4af37;
            color: #1a1a2e;
            padding: 20px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
            animation: float 3s ease-in-out infinite;
        }

        .floating-badge .badge-text {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
            line-height: 1.3;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            border: none;
            padding: 30px;
        }

        .modal-title {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
        }

        .btn-close {
            filter: invert(1);
        }

        .modal-body {
            padding: 40px;
        }

        .form-label {
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 10px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: #d4af37;
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        .submit-btn {
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 50px;
            width: 100%;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

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

            .main-title {
                font-size: 42px;
            }

            .consultation-image {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 36px;
            }

            .description {
                font-size: 16px;
            }

            .section-subtitle::before,
            .section-subtitle::after {
                width: 20px;
            }

            .floating-badge {
                width: 100px;
                height: 100px;
                top: -15px;
                right: -15px;
            }

            .overlay-icons {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .cont-div{background:#000;
        height:500px;
    margin-top: 34px;}

        #contact{margin-top: -220px !important;
    border-radius: 22px;
    width: 60%;
    margin: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;}




  /* about pge */

     .hero-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(26, 35, 50, 0.75), rgba(26, 35, 50, 0.75)), 
                        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600') center/cover;
            color: white;
            position: relative;
            background-attachment: fixed;
        }

        .hero-content {
            text-align: center;
            padding: 40px 20px;
        }

        .hero-subtitle {
            font-size: 14px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 72px;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .hero-tagline {
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 1px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Story Section */
        .story-section {
            padding: 50px 0;
            background: white;
            position: relative;
            z-index: 10;
        }

        .section-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 50px;
            color: var(--dark-navy);
            text-align: center;
                letter-spacing: 1px;
        }

        .story-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 17px;
            line-height: 32px;
            color: var(--text-light);
            text-align: justify;
        }

        .story-content p {
            margin-bottom: 30px;
        }

        .story-content p {
            margin-bottom: 30px;
        }

        /* About Agrvals Section */
        .about-agrvals-section {
            padding: 120px 0;
            background: var(--soft-gray);
        }

        .about-content {
            text-align: center;
        }

        .about-subtitle {
            font-size: 29px;
    color: var(--dark-navy);
    margin-bottom: 40px;
    font-weight: 400;
        }

        .about-content p {
            font-size: 17px;
            line-height: 2;
            color: var(--text-light);
            margin-bottom: 25px;
        }

        .about-closing {
            font-size: 18px;
            color: var(--text-dark);
            font-weight: 500;
            margin-top: 40px;
        }

        .about-tagline {
            font-size: 19px;
            color: var(--primary-gold);
            font-style: italic;
            margin-top: 30px;
            font-weight: 500;
        }

        /* Vision & Mission Section */
        .vision-mission-section {
            padding: 120px 0;
            background: white;
        }

        .vm-card {
            background: var(--soft-gray);
            padding: 60px 40px;
            border-radius: 10px;
            height: 100%;
            text-align: center;
            transition: all 0.4s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .vm-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-gold), #d4af37);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
        }

        .vm-card h3 {
            font-size: 32px;
            color: var(--dark-navy);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .vm-divider {
            width: 60px;
            height: 3px;
            background: var(--primary-gold);
            margin: 0 auto 30px;
        }

        .vm-card p {
            font-size: 16px;
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .vm-closing {
            font-weight: 500;
            color: var(--text-dark);
            margin-top: 25px;
        }

        .highlight-text {
            color: var(--primary-gold);
            font-weight: 500;
        }

        /* Philosophy Section */
        .philosophy-section {
            padding: 100px 0;
            background: var(--soft-gray);
        }

        .philosophy-box {
            background: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            max-width: 1000px;
            margin: 40px auto 0;
            text-align: center;
        }

        .philosophy-box p {
            font-size: 18px;
            line-height: 1.9;
            color: var(--text-light);
        }

        /* Expertise Section */
        .expertise-section {
            padding: 120px 0;
            background: white;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .expertise-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            transition: all 0.4s ease;
            background: white;
            border: 1px solid #f0f0f0;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .expertise-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-gold), #d4af37);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
        }

        .expertise-card h4 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        .expertise-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Why Work Section */
        .why-work-section {
            padding: 100px 0;
            background: var(--dark-navy);
            color: white;
        }

        .why-work-section .section-title {
            color: white;
        }

        .why-work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .why-work-item {
            text-align: center;
        }

        .why-work-number {
            font-size: 48px;
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .why-work-item h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: white;
        }

        .why-work-item p {
            font-size: 15px;
            color: #b0b0b0;
            line-height: 1.7;
        }

        /* Process Section */
        .process-section {
            padding: 120px 0;
            background: white;
        }

        .process-timeline {
            max-width: 900px;
            margin: 60px auto 0;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-gold);
            transform: translateX(-50%);
        }

        .process-step {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            flex: 1;
            padding: 30px;
            background: var(--soft-gray);
            border-radius: 10px;
            margin: 0 30px;
        }

        .process-number {
            position: absolute;
            left: 50%;
            top: 20px;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 600;
            color: white;
            z-index: 2;
        }

        .process-content h4 {
            font-size: 26px;
            margin-bottom: 15px;
            color: var(--dark-navy);
        }

        .process-content p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Divider */
        /* .section-divider {
            width: 80px;
            height: 3px;
            background: var(--primary-gold);
            margin: 0 auto 40px;
        } */

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 48px;
            }

            .section-title {
                font-size: 36px;
            }

            .process-timeline::before {
                left: 30px;
            }

            .process-step,
            .process-step:nth-child(even) {
                flex-direction: row;
            }

            .process-number {
                left: 30px;
                transform: translateX(0);
            }

            .process-content {
                margin-left: 90px;
                margin-right: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-tagline {
                font-size: 16px;
            }

            .story-section {
                padding: 80px 0;
            }

            .philosophy-box {
                padding: 40px 30px;
            }

            .expertise-grid,
            .why-work-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* award */


        /* Hero Section */
        .hero-section1 {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(26, 35, 50, 0.75), rgba(26, 35, 50, 0.75)), 
                        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1600') center/cover;
            color: white;
            position: relative;
            background-attachment: fixed;
        }

          .hero-section1  .hero-content {
            text-align: center;
            padding: 40px 20px;
        }

          .hero-section1  .hero-subtitle {
            font-size: 14px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-weight: 500;
        }

           .hero-section1 .hero-title {
            font-size: 72px;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.2;
        }

           .hero-section1 .hero-tagline {
            font-size: 20px;
            font-weight: 300;
            letter-spacing: 1px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 20px 0;
            background: white;
        }

        .section-title {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark-navy);
            text-align: center;
        }

       
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        /* Create non-uniform grid */
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item:nth-child(5) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item:nth-child(8) {
            grid-column: span 2;
        }

        .gallery-item:nth-child(11) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-info h4 {
            color: white;
            font-size: 20px;
            margin-bottom: 5px;
        }

        .gallery-info p {
            color: var(--primary-gold);
            font-size: 14px;
            margin: 0;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(201, 168, 124, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .lightbox-close:hover {
            background: var(--primary-gold);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(201, 168, 124, 0.9);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: var(--primary-gold);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-caption {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 35, 50, 0.9);
            padding: 20px 40px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
        }

        .lightbox-caption h4 {
            color: white;
            font-size: 22px;
            margin-bottom: 5px;
            text-align: center;
        }

        .lightbox-caption p {
            color: var(--primary-gold);
            font-size: 14px;
            margin: 0;
            text-align: center;
        }

        .lightbox-counter {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 35, 50, 0.9);
            padding: 10px 25px;
            border-radius: 30px;
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: none;
        }

        .filter-btn {
            display: none;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 48px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(5),
            .gallery-item:nth-child(8),
            .gallery-item:nth-child(11) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .lightbox-nav {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .lightbox-prev {
                left: 15px;
            }

            .lightbox-next {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-tagline {
                font-size: 16px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .lightbox-caption {
                bottom: 15px;
                padding: 15px 25px;
            }

            .lightbox-caption h4 {
                font-size: 18px;
            }
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* dubai */

        /* HERO */
.hero-two {
  position: relative;
  isolation: isolate;
  min-height: 72vh;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.28) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
  transform: scale(1.02);
}
.hero-inner {
  padding: 96px 0 88px;
}

#dubai-prop #benefits .grid{display:block;}
/* Responsive */

@media only screen and (min-width: 320px) and (max-width: 480px) {
/* 
    .feature-grid {display:none;} */

    .carousel-caption h1 {
        font-size: 2rem;
    }

.carousel-item {
    height: 70vh;}



.carousel-caption {
    top: 58%;}

    .banner-carousel {
    height: 71vh;}
    .why-section {
    padding: 1rem 0rem 0rem 0rem;}

    .why-heading {
    
    font-size: 1.5rem;
 
    margin-bottom: 0rem;
}

.why-subtitle {font-size:0.7rem;}

#whyCarousel .carousel-item {
    height: 100vh;}



    .why-content {
        padding: 1rem 1rem 5rem;}

        .why-section .carousel-controls {left:0;
        right:0;}

       .stat-item {
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    align-content: stretch;
}

.stat-number {
    font-size: 1.5rem;}

    .about-section {
    padding: 0rem 0;}

    .about-text {
        margin-top: 2rem;}

        .about-text h1 {
        font-size: 2rem;
    }

    .align-items-start {margin-top:-35px;
    margin-bottom:2rem;}
    .btn-custom {
    margin-top: 0rem;}
    
    .feature-grid {display:none;
    padding:0px;}

    .consultation-image{display: none;}
    .floating-badge{display:none;}
    .projects-section {
    padding: 1rem 0;}

    .content-wrapper {padding: 10px 0;}
    .cta-button {padding: 18px;font-size: 13px;}

    #contact {
    margin-top:-139px !important;
    border-radius: 22px;
    width:100%;
  } 

  .section-title {
    font-size: 31px;}

    .section-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;}


    .navbar-brand {position:static  !important;}
    .navbar-toggler{
        margin-top:-20px;
    }

    .navbar-brand img {
    width: 135px;
    margin-top: -22px;
}

.align-items-start .col-lg-6{margin-bottom:0px !important;}

  


/* dubai res */

#dubai-prop .hero-inner {
    padding: 146px 0 8px;
}


/* global prob */

    #global .banner {
        margin-top: 138px;
    }

#global .banner-content {padding:0px;}

#global .banner{height:29vh;}

#global .hero {
    max-width: 900px;
    margin: 0px auto;}

    #global .section {margin:40px auto;}

    /* awards */

    .gallery-grid {margin-top:20px;}

    .hero-section1 .hero-title {
    font-size: 29px;}
    .hero-section1 {
    height: 40vh;
margin-top: 122px;}

/* about */

#about-page .hero-section {
           height: 41vh;
        margin-top: 120px;}


        .story-section {
        padding: 30px 0;}

        .about-agrvals-section {
    padding: 20px 0;}
    .vision-mission-section {
    padding: 20px 0;}

    .philosophy-section {
    padding: 20px 0;}


      #about-page .navbar-toggler {
        margin-top: -20px;
        float: right;
        /* margin-right: 120px; */
        margin-top: 14px;
    }
   
}

    @media only screen and (min-width: 768px) and (max-width: 1024px) {

 .navbar-brand {position:static  !important;}
    .navbar-toggler{
        margin-top:-20px;
    }

    .carousel-item {
    height: 46vh;}

    .banner-carousel{
    height: 45vh;}

    .stat-number {
    font-size: 1.5rem;}

    .about-section {
    padding: 0rem 0;}

    .feature-item {
    display: inline;}
    .feature-content h5 {
    min-height: 44px;
    font-size: 15px;
}

.projects-section {
    padding: 1rem 0;}

    #whyCarousel  .carousel-item {
    height: 85vh;}

    .why-section {max-height: 100%;}

    .consultation-image img {display:none;}

        .floating-badge {display:none;}

        .consultation-image {
        height: 0px;
    }

    .consultancy-section {
    min-height: 13vh;}

    .content-wrapper {padding:10px 0px;}

    #contact {
    margin-top: -140px !important;
width:95%;}

.carousel-caption p {
    font-size: 1em;}

    .carousel-caption h1 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;}


    /* dubai */

    .hero-two { min-height: 37vh;
    margin-top: 80px;}

    #global .banner {
        height: 30vh;
        margin-top: 164px;
    }

    .hero { margin: 7px auto !important;}

    #contact  .hero {margin: 190px auto 0px !important;}

    }

    


@media only screen and (min-width: 1280px) and (max-width: 1500px) {
     .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        margin-right: -59px;}

}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    /* filter: invert(1); */
}

