 

        :root {
            --navy: #10233f;
            --navy-dark: #08182d;
            --gold: #c99a3b;
            --gold-light: #e4c477;
            --cream: #faf7f0;
            --white: #ffffff;
            --text: #26364a;
            --muted: #6c7888;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "DM Sans", sans-serif;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: "Playfair Display", serif;
        }

        a {
            text-decoration: none;
        }

        /* =========================================
           TOP BAR
        ========================================= */

        .topbar {
            background: var(--navy-dark);
            color: rgba(255,255,255,.8);
            font-size: 13px;
            padding: 9px 0;
        }

        .topbar i {
            color: var(--gold-light);
            margin-right: 6px;
        }

        /* =========================================
           HEADER
        ========================================= */

        .main-header {
             background: #fff;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 9999;
        }

        .navbar {
            padding: 0px 0;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 11px;
        }

        .brand-mark {
            width: 45px;
            height: 45px;
            background: var(--navy);
            color: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-family: "Playfair Display", serif;
            font-size: 20px;
            font-weight: 700;
            border: 2px solid var(--gold);
        }

        .brand-text strong {
            display: block;
            color: var(--navy);
            font-size: 16px;
            letter-spacing: .5px;
        }

        .brand-text span {
            color: var(--gold);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .navbar-nav .nav-link {
            color: var(--navy);
            font-size: 14px;
            font-weight: 600;
            margin: 0 9px;
            transition: .3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold);
        }

        .header-btn {
            background: var(--gold);
            color: #fff !important;
            padding: 11px 21px !important;
            border-radius: 3px;
        }

        .header-btn:hover {
            background: var(--navy);
        }

        /* =========================================
           HERO
        ========================================= */

        .hero {
            min-height: 650px;
            position: relative;
            background:
                linear-gradient(90deg,
                    rgba(8,24,45,.96) 0%,
                    rgba(8,24,45,.82) 42%,
                    rgba(8,24,45,.25) 100%),
                url("https://richestyashdeo.com/assets/images/im2.jfif");

            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 720px;
            color: #fff;
            padding: 80px 0;
        }

        .hero-label {
            color: var(--gold-light);
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(42px, 5vw, 72px);
            line-height: 1.08;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: var(--gold-light);
        }

        .hero p {
            color: rgba(255,255,255,.82);
            font-size: 17px;
            line-height: 1.8;
            max-width: 620px;
            margin-bottom: 32px;
        }

        .btn-gold {
            background: var(--gold);
            border: 1px solid var(--gold);
            color: #fff;
            padding: 14px 27px;
            border-radius: 3px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-gold:hover {
            background: #fff;
            color: var(--navy);
            border-color: #fff;
        }

        .btn-outline-light-custom {
            color: #fff;
            border: 1px solid rgba(255,255,255,.6);
            padding: 14px 27px;
            border-radius: 3px;
            font-weight: 600;
            margin-left: 8px;
            transition: .3s;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--navy);
        }

        /* =========================================
           TRUST STRIP
        ========================================= */

        .trust-strip {
            background: var(--gold);
            color: #fff;
            padding: 18px 0;
        }

        .trust-item {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
        }

        .trust-item i {
            margin-right: 7px;
        }

        /* =========================================
           COMMON SECTION
        ========================================= */

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--cream);
        }

        .section-label {
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .section-title {
            color: var(--navy);
            font-size: 44px;
            line-height: 1.15;
            margin-bottom: 17px;
        }

        .section-text {
            color: var(--muted);
            line-height: 1.8;
            font-size: 16px;
        }

        /* =========================================
           ABOUT
        ========================================= */

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 470px;
            object-fit: cover;
            border-radius: 4px;
        }

        .about-badge {
            position: absolute;
            right: -20px;
            bottom: 25px;
            background: var(--navy);
            color: #fff;
            padding: 25px;
            width: 190px;
            border-left: 4px solid var(--gold);
        }

        .about-badge strong {
            font-family: "Playfair Display", serif;
            font-size: 30px;
            display: block;
            color: var(--gold-light);
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .about-list li {
            margin-bottom: 14px;
            color: var(--text);
        }

        .about-list i {
            color: var(--gold);
            margin-right: 10px;
        }
        .footer-contact a {
            color: rgba(255,255,255,.68);
            text-decoration: none;
            transition: .3s;
        }

        .footer-contact a:hover {
            color: var(--gold-light);
        }
        /* =========================================
           PRODUCTS
        ========================================= */

        .product-card {
            background: #fff;
            border: 1px solid #eee;
            height: 100%;
            transition: .35s;
            overflow: hidden;
            border-radius: 5px;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(16,35,63,.12);
        }

        .product-image {
            height: 270px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.07);
        }

        .product-number {
            position: absolute;
            top: 16px;
            left: 16px;
            width: 38px;
            height: 38px;
            background: var(--gold);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

        .product-body {
            padding: 25px;
        }

        .product-body h3 {
            color: var(--navy);
            font-size: 25px;
            margin-bottom: 11px;
        }

        .product-body p {
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .product-link {
            color: var(--gold);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-link i {
            margin-left: 6px;
            transition: .3s;
        }

        .product-link:hover i {
            margin-left: 11px;
        }

        /* =========================================
           GLOBAL REACH
        ========================================= */

        .reach-section {
            background: var(--navy);
            color: #fff;
        }

        .reach-section .section-title {
            color: #fff;
        }

        .reach-section .section-text {
            color: rgba(255,255,255,.72);
        }

        .reach-box {
            padding: 28px;
            border: 1px solid rgba(255,255,255,.13);
            height: 100%;
            transition: .3s;
        }

        .reach-box:hover {
            border-color: var(--gold);
        }

        .reach-icon {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gold);
            color: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .reach-box h4 {
            font-size: 22px;
        }

        .reach-box p {
            color: rgba(255,255,255,.65);
            margin: 0;
            line-height: 1.7;
            font-size: 14px;
        }

        /* =========================================
           WHY CHOOSE US
        ========================================= */

        .why-card {
            padding: 32px 25px;
            border: 1px solid #e8e5df;
            height: 100%;
            background: #fff;
        }

        .why-icon {
            font-size: 27px;
            color: var(--gold);
            margin-bottom: 18px;
        }

        .why-card h4 {
            color: var(--navy);
            font-size: 22px;
            margin-bottom: 10px;
        }

        .why-card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }

        /* =========================================
           CTA
        ========================================= */

        .cta {
            background:
                linear-gradient(rgba(16,35,63,.94), rgba(16,35,63,.94)),
                url("https://richestyashdeo.com/assets/images/im3.jfif");

            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: #fff;
            text-align: center;
        }

        .cta h2 {
            font-size: 46px;
            margin-bottom: 15px;
        }

        .cta p {
            color: rgba(255,255,255,.75);
            max-width: 650px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        /* =========================================
           FOOTER
        ========================================= */

        footer {
            background: #071426;
            color: rgba(255,255,255,.68);
            padding-top: 65px;
        }

        .footer-brand {
            color: #fff;
            font-family: "Playfair Display", serif;
            font-size: 25px;
            margin-bottom: 17px;
        }

        .footer-about {
            line-height: 1.8;
            font-size: 14px;
            max-width: 390px;
        }

        .footer-title {
            color: #fff;
            font-family: "Playfair Display", serif;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 11px;
        }

        .footer-links a {
            color: rgba(255,255,255,.65);
            font-size: 14px;
            transition: .3s;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-contact {
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-contact i {
            color: var(--gold);
            width: 22px;
        }

        .social-links {
            display: flex;
            gap: 9px;
            margin-top: 20px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            border: 1px solid rgba(255,255,255,.2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .3s;
        }

        .social-links a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 55px;
            padding: 20px 0;
            font-size: 13px;
        }

        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {

            .navbar-nav {
                padding-top: 15px;
            }

            .header-btn {
                display: inline-block;
                margin-top: 10px;
            }

            .hero {
                min-height: 600px;
            }

            .about-badge {
                right: 15px;
            }

            .section-title {
                font-size: 38px;
            }
        }

        @media (max-width: 767px) {

            .topbar {
                display: none;
            }

            .navbar {
                padding: 12px 0;
            }

            .hero {
                min-height: 570px;
                background-position: 65% center;
            }

            .hero-content {
                padding: 55px 0;
            }

            .hero h1 {
                font-size: 43px;
            }

            .hero p {
                font-size: 15px;
            }

            .btn-outline-light-custom {
                margin-left: 0;
                margin-top: 10px;
            }

            .trust-item {
                margin: 7px 0;
            }

            .section {
                padding: 65px 0;
            }

            .section-title {
                font-size: 34px;
            }

            .about-image img {
                height: 370px;
            }

            .about-badge {
                right: 10px;
                bottom: 15px;
            }

            .cta h2 {
                font-size: 35px;
            }
        }
          /* =========================================
            HERO BANNER - DESKTOP
          ========================================= */
.hero-banner {
    width: 100%;
    min-height: auto;
    height: auto;
    overflow: hidden;
}

.hero-banner .carousel-inner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-banner .carousel-item {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    object-position: center center;
}


          /* Dark overlay */

          .hero-overlay {
              position: absolute;
              inset: 0;

              background:
                  linear-gradient(
                      90deg,
                      rgba(8, 24, 45, 0.96) 0%,
                      rgba(8, 24, 45, 0.88) 38%,
                      rgba(8, 24, 45, 0.48) 70%,
                      rgba(8, 24, 45, 0.15) 100%
                  );
          }


          /* Bootstrap helper */

          .min-vh-75 {
              min-height: 680px;
          }


          /* Hero content */

          .hero-content {
              position: relative;
              z-index: 2;

              padding: 70px 0;
              max-width: 720px;
          }


          .hero-small-title {
              display: inline-block;

              color: #e4c477;

              font-size: 13px;
              font-weight: 700;

              letter-spacing: 3px;

              margin-bottom: 20px;
          }


          .hero-content h1 {
              color: #ffffff;

              font-family: "Playfair Display", serif;

              font-size: clamp(45px, 5vw, 72px);

              line-height: 1.08;

              margin-bottom: 25px;
          }


          .hero-content h1 span {
              display: block;

              color: #e4c477;
          }


          .hero-content p {
              color: rgba(255,255,255,.82);

              font-size: 17px;

              line-height: 1.8;

              max-width: 620px;

              margin-bottom: 32px;
          }


          /* Buttons */

          .hero-buttons {
              display: flex;
              flex-wrap: wrap;
              gap: 12px;
          }


          .btn-gold {
              background: #c99a3b;

              border: 1px solid #c99a3b;

              color: #fff;

              padding: 14px 27px;

              border-radius: 3px;

              font-weight: 600;

              transition: .3s;
          }


          .btn-gold:hover {
              background: #ffffff;

              color: #10233f;

              border-color: #ffffff;
          }


          .btn-outline-light-custom {
              color: #fff;

              border: 1px solid rgba(255,255,255,.65);

              padding: 14px 27px;

              border-radius: 3px;

              font-weight: 600;

              transition: .3s;
          }


          .btn-outline-light-custom:hover {
              background: #ffffff;

              color: #10233f;

              border-color: #ffffff;
          }


          /* =========================================
            LARGE TABLET
          ========================================= */

          @media (max-width: 1199px) {

              .hero-banner {
                  min-height: 620px;

                  background-position: center center;
              }

              .min-vh-75 {
                  min-height: 620px;
              }

              .hero-content {
                  max-width: 650px;
              }

          }


          /* =========================================
            TABLET
          ========================================= */

          @media (max-width: 991px) {

              .hero-banner {
                  min-height: 600px;

                  background-position: 60% center;
              }

              .min-vh-75 {
                  min-height: 600px;
              }

              .hero-content {
                  padding: 60px 0;
              }

              .hero-content h1 {
                  font-size: 52px;
              }

              .hero-content p {
                  font-size: 16px;
              }

              .hero-overlay {
                  background:
                      linear-gradient(
                          90deg,
                          rgba(8, 24, 45, 0.94),
                          rgba(8, 24, 45, 0.62)
                      );
              }

          }


          /* =========================================
            MOBILE
          ========================================= */

          @media (max-width: 767px) {

              .hero-banner {

                  /* IMPORTANT */

                  min-height: 650px;

                  background-size: cover;

                  background-position: 65% center;

              }


              .min-vh-75 {
                  min-height: 650px;
              }


              .hero-overlay {

                  background:
                      linear-gradient(
                          180deg,
                          rgba(8, 24, 45, 0.82) 0%,
                          rgba(8, 24, 45, 0.91) 100%
                      );

              }


              .hero-content {

                  padding: 50px 15px;

                  max-width: 100%;

              }


              .hero-small-title {

                  font-size: 11px;

                  letter-spacing: 2px;

                  margin-bottom: 15px;

              }


              .hero-content h1 {

                  font-size: 40px;

                  line-height: 1.12;

                  margin-bottom: 20px;

              }


              .hero-content h1 span {

                  display: inline;

              }


              .hero-content p {

                  font-size: 15px;

                  line-height: 1.7;

                  margin-bottom: 25px;

              }


              .hero-buttons {

                  display: flex;

                  flex-direction: column;

                  align-items: stretch;

                  gap: 10px;

              }


              .hero-buttons .btn {

                  width: 100%;

                  text-align: center;

                  padding: 13px 20px;

              }

          }


          /* =========================================
            SMALL MOBILE
          ========================================= */
@media (max-width: 480px) {

    .hero-banner {
        width: 100%;
        min-height: auto !important;
        height: auto !important;
        background-position: center center;
        overflow: hidden;
    }

    .hero-banner .carousel-inner {
        width: 100%;
        height: auto !important;
    }

    .hero-banner .carousel-item {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-image {
        display: block;
        width: 100%;
        height: auto !important;
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        object-fit: contain;
        object-position: center;
    }

    .hero-content {
        padding: 40px 12px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-small-title {
        font-size: 10px;
    }

}
    
        .gallery-section {
            background: #ffffff;
        }

        .gallery-card {
            position: relative;
            height: 330px;
            overflow: hidden;
            border-radius: 6px;
            background: #10233f;
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;

            display: flex;
            align-items: flex-end;

            padding: 25px;

            background:
                linear-gradient(
                    to top,
                    rgba(8,24,45,.94),
                    rgba(8,24,45,.15) 65%,
                    transparent
                );

            color: #fff;
        }

        .gallery-overlay span {
            color: #e4c477;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .gallery-overlay h3 {
            color: #fff;
            font-size: 25px;
            margin: 6px 0 0;
        }

        @media (max-width: 767px) {

            .gallery-card {
                height: 280px;
            }

            .gallery-overlay {
                padding: 20px;
            }

            .gallery-overlay h3 {
                font-size: 21px;
            }

        }

        @media (max-width: 480px) {

            .gallery-card {
                height: 250px;
            }

        }


          .contact-section {
              background: #faf7f0;
          }


          /* LEFT */

          .contact-info {
              height: 100%;
              padding-right: 30px;
          }

          .contact-item {
              display: flex;
              align-items: center;
              gap: 15px;

              margin-top: 25px;
          }

          .contact-icon {
              min-width: 48px;
              width: 48px;
              height: 48px;

              display: flex;
              align-items: center;
              justify-content: center;

              background: #10233f;
              color: #e4c477;

              border-radius: 3px;
          }

          .contact-item small {
              display: block;

              color: #8a929d;

              font-size: 11px;

              text-transform: uppercase;

              letter-spacing: 1.5px;

              margin-bottom: 4px;
          }

          .contact-item a,
          .contact-item strong {
              color: #10233f;

              font-size: 14px;

              font-weight: 600;
          }

          .contact-item a:hover {
              color: #c99a3b;
          }


          /* FORM */

          .contact-form {
              background: #ffffff;

              padding: 40px;

              border: 1px solid #e7e1d7;

              box-shadow: 0 15px 40px rgba(16,35,63,.07);
          }

          .form-heading {
              margin-bottom: 25px;
          }

          .form-heading h3 {
              color: #10233f;
              font-size: 29px;
              margin-bottom: 6px;
          }

          .form-heading p {
              color: #6c7888;
              font-size: 14px;
              margin: 0;
          }

          .contact-form label {
              display: block;

              color: #26364a;

              font-size: 13px;

              font-weight: 600;

              margin-bottom: 7px;
          }

          .contact-form .form-control,
          .contact-form .form-select {
              min-height: 50px;

              border: 1px solid #ddd8ce;

              border-radius: 3px;

              padding: 12px 14px;

              font-size: 14px;

              box-shadow: none;
          }

          .contact-form textarea.form-control {
              height: auto;
              resize: vertical;
          }

          .contact-form .form-control:focus,
          .contact-form .form-select:focus {
              border-color: #c99a3b;

              box-shadow: 0 0 0 3px rgba(201,154,59,.10);
          }

          .contact-btn {
              width: 100%;

              border: 1px solid #c99a3b;

              background: #c99a3b;

              color: #ffffff;

              padding: 14px 25px;

              border-radius: 3px;

              font-size: 14px;

              font-weight: 700;

              transition: .3s;
          }

          .contact-btn:hover {
              background: #10233f;
              border-color: #10233f;
          }


          /* MOBILE */

          @media (max-width: 991px) {

              .contact-info {
                  padding-right: 0;
              }

          }

          @media (max-width: 767px) {

              .contact-form {
                  padding: 25px 20px;
              }

              .form-heading h3 {
                  font-size: 25px;
              }

          }

          @media (max-width: 480px) {

              .contact-form {
                  padding: 22px 15px;
              }

              .contact-item {
                  align-items: flex-start;
              }

          }

.footer-logo {
    width: 180px;
    height: auto;
    display: block;
    
}
.brand-mark {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important;
    border-radius: 0 !important;
   
    border: none !important;
    box-shadow: none !important;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0 !important;
}