
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Outfit', sans-serif;
        overflow-x: hidden;
        background: #fff;
      }

      a {
        text-decoration: none;
      }

      ul {
        list-style: none;
      }

      .container {
        width: 100%;
        max-width: 1320px;
        margin: auto;
        padding: 0 20px;
      }

      /* =========================
       HEADER
    ========================== */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 20px 0;
        transition: 0.4s;
      }

      header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      }

      .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* LOGO */
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 10000;
        position: relative;
      }

      .logo-icon {
        font-size: 42px;
        font-weight: 800;
        color: #111;
        line-height: 1;
      }

      .logo-text h2 {
        font-size: 30px;
        font-weight: 700;
        color: #111;
        line-height: 1;
      }

      .logo-text span {
        font-size: 12px;
        letter-spacing: 4px;
        color: #777;
        text-transform: uppercase;
      }

      /* NAVIGATION */
      .nav-menu {
        display: flex;
        align-items: center;
        gap: 40px;
      }

      .nav-menu li a {
        color: #222;
        font-size: 17px;
        font-weight: 500;
        transition: 0.3s;
      }

      .nav-menu li a:hover {
        color: #875534;
      }

      /* RIGHT */
      .header-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .phone {
        color: #444;
        font-size: 16px;
        font-weight: 500;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 600;
        transition: 0.3s;
        cursor: pointer;
      }

      .btn-primary {
        background: #875534;
        color: #fff;
      }

      .btn-primary:hover {
        background: #111;
      }

      /* HAMBURGER */
      .hamburger {
        width: 32px;
        height: 24px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 10001;
        position: relative;
      }

      .hamburger span {
        width: 100%;
        height: 3px;
        background: #111;
        border-radius: 20px;
        transition: 0.4s;
      }

      /* HAMBURGER ACTIVE */
      .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
      }

      /* =========================
       HERO
    ========================== */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        background: url("images/homebgimg.jpg") center/cover no-repeat;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 248, 240, 0.80);
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.45) 45%,
            rgba(255, 255, 255, 0.10) 100%);
      }

      .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-top: 120px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: start;
      }

      .subtitle {
        font-size: 14px;
        letter-spacing: 6px;
        color: #777;
        margin-bottom: 30px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .subtitle::before {
        content: "";
        width: 50px;
        height: 2px;
        background: #875534;
      }

      .hero h1 {
        font-size: 50px;
        line-height: 0.95;
        font-weight: 900;
        color: #111;
        margin-bottom: 35px;
        max-width: 850px;
      }

      .hero h1 span {
        color: #875534;
      }

      .hero p {
        font-size: 18px;
        line-height: 1.7;
        color: #666;
        max-width: 780px;
        margin-bottom: 50px;
      }

      .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 60px;
      }

      .btn-light {
        background: #fff;
        color: #111;
        border: 1px solid #eee;
      }

      .btn-light:hover {
        background: #111;
        color: #fff;
      }

      .stats {
        display: flex;
        gap: 60px;
        flex-wrap: wrap;
      }

      .stat h3 {
        font-size: 52px;
        font-weight: 800;
        color: #111;
        margin-bottom: 5px;
      }

      .stat p {
        font-size: 16px;
        color: #777;
        margin: 0;
      }

      .experience-card {
        background: #f7f1eb;
        padding: 35px;
        border-radius: 25px;
        width: 220px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        margin-top: 80px;
        position: relative;
        z-index: 2;
      }

      .experience-card h2 {
        font-size: 58px;
        color: #875534;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 10px;
      }

      .experience-card p {
        font-size: 18px;
        color: #666;
        margin: 0;
        line-height: 1.5;
      }

      /* =========================
       MOBILE
    ========================== */
      @media(max-width:991px) {
        .hamburger {
          display: flex;
        }

        .header-right .phone,
        .header-right .btn {
          display: none;
        }

        .nav-menu {
          position: fixed;
          top: 0;
          right: -100%;
          width: 280px;
          height: 100vh;
          background: #fff;
          flex-direction: column;
          align-items: flex-start;
          gap: 35px;
          padding: 120px 40px;
          transition: 0.4s ease;
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
          z-index: 999;
        }

        .nav-menu.active {
          right: 0;
        }

        .hero-grid {
          grid-template-columns: 1fr;
        }

        .experience-card {
          margin-top: 0;
        }

        .hero h1 {
          font-size: 65px;
        }

        .hero p {
          font-size: 22px;
        }
      }

      @media(max-width:768px) {
        header {
          padding: 15px 0;
        }

        .logo-text h2 {
          font-size: 24px;
        }

        .logo-text span {
          font-size: 10px;
          letter-spacing: 2px;
        }

        .hero {
          min-height: auto;
          padding: 150px 0 100px;
        }

        .hero h1 {
          font-size: 50px;
          line-height: 1;
        }

        .hero p {
          font-size: 18px;
        }

        .hero-buttons {
          flex-direction: column;
        }

        .btn {
          width: 100%;
        }

        .stats {
          gap: 30px;
        }

        .stat h3 {
          font-size: 38px;
        }

        .experience-card {
          width: 100%;
          max-width: 100%;
        }
      }

      @media(max-width:480px) {
        .hero h1 {
          font-size: 40px;
        }

        .hero p {
          font-size: 16px;
        }

        .subtitle {
          font-size: 11px;
          letter-spacing: 2px;
        }

        .logo-icon {
          font-size: 34px;
        }

        .logo-text h2 {
          font-size: 20px;
        }
      }
    </style>
    <style>
      /* =========================
   ABOUT SECTION
========================== */
      .about-section {
        padding: 120px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
      }

      /* LEFT */
      .about-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 14px;
        margin-bottom: 30px;
        position: relative;
        padding-left: 70px;
      }

      .about-tag::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #875534;
      }

      .about-content h2 {
        font-size: 42px;
        line-height: 1;
        font-weight: 900;
        color: #111;
        margin-bottom: 35px;
      }

      .about-content h2 span {
        color: #875534;
      }

      .about-content p {
        font-size: 15px;
        line-height: 1.9;
        color: #666;
        margin-bottom: 30px;
      }

      /* STATS */
      .about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 50px;
      }

      .about-stat h3 {
        font-size: 56px;
        font-weight: 800;
        color: #111;
        margin-bottom: 10px;
      }

      .about-stat span {
        color: #777;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* RIGHT IMAGE */
      .about-image-wrapper {
        position: relative;
      }

      .about-image-wrapper img {
        width: 100%;
        height: 780px;
        object-fit: cover;
        border-radius: 35px;
        display: block;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
      }

      /* FLOATING CARD */
      .floating-card {
        position: absolute;
        left: -30px;
        bottom: 40px;
        background: #fff;
        padding: 30px;
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        min-width: 210px;
      }

      .floating-card h4 {
        font-size: 52px;
        color: #875534;
        font-weight: 800;
        line-height: 1;
        margin-bottom: 10px;
      }

      .floating-card p {
        color: #666;
        font-size: 18px;
        line-height: 1.5;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .about-grid {
          grid-template-columns: 1fr;
          gap: 60px;
        }

        .about-content h2 {
          font-size: 56px;
        }

        .about-content p {
          font-size: 19px;
        }

        .about-image-wrapper img {
          height: 600px;
        }

        .floating-card {
          left: 20px;
          bottom: 20px;
        }

        .about-stats {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .about-section {
          padding: 90px 0;
        }

        .about-content h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .about-content p {
          font-size: 17px;
          line-height: 1.8;
        }

        .about-image-wrapper img {
          height: 420px;
          border-radius: 25px;
        }

        .floating-card {
          position: relative;
          left: 0;
          bottom: 0;
          margin-top: -50px;
          width: 220px;
        }

        .floating-card h4 {
          font-size: 42px;
        }

        .about-stats {
          gap: 25px;
        }

        .about-stat h3 {
          font-size: 38px;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .about-content h2 {
          font-size: 34px;
        }

        .about-tag {
          font-size: 12px;
          letter-spacing: 3px;
          padding-left: 55px;
        }

        .about-tag::before {
          width: 40px;
        }

        .about-content p {
          font-size: 16px;
        }

        .about-stats {
          grid-template-columns: 1fr 1fr;
        }

        .about-stat h3 {
          font-size: 32px;
        }

        .floating-card {
          width: 190px;
          padding: 22px;
        }
      }
    </style>
    <style>
      /* =========================
   SERVICES SECTION
========================== */
      .services-section {
        padding: 120px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      /* HEADING */
      .services-heading {
        margin-bottom: 70px;
      }

      .section-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 14px;
        margin-bottom: 25px;
        position: relative;
        padding-left: 70px;
      }

      .section-tag::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #875534;
      }

      .services-heading h2 {
        font-size: 72px;
        line-height: 1;
        font-weight: 900;
        color: #111;
      }

      .services-heading h2 span {
        color: #875534;
      }

      /* GRID */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      /* CARD */
      .service-card {
        background: #fff;
        border-radius: 28px;
        overflow: hidden;
        transition: 0.4s;
        border: 1px solid rgba(0, 0, 0, 0.04);
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      }

      .service-image {
        height: 250px;
        overflow: hidden;
      }

      .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
      }

      .service-card:hover img {
        transform: scale(1.08);
      }

      /* CONTENT */
      .service-content {
        padding: 30px;
      }

      .service-icon {
        width: 52px;
        height: 52px;
        background: #f5ebe0;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #875534;
        font-size: 22px;
        margin-bottom: 22px;
      }

      .service-content h3 {
        font-size: 38px;
        line-height: 1.2;
        color: #111;
        margin-bottom: 18px;
        font-weight: 700;
      }

      .service-content p {
        color: #666;
        font-size: 19px;
        line-height: 1.8;
        margin-bottom: 25px;
      }

      .service-content a {
        display: inline-block;
        color: #875534;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
      }

      .service-content a:hover {
        letter-spacing: 2px;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .services-heading h2 {
          font-size: 56px;
        }

        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .service-content h3 {
          font-size: 30px;
        }

        .service-content p {
          font-size: 17px;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .services-section {
          padding: 90px 0;
        }

        .services-grid {
          grid-template-columns: 1fr;
        }

        .services-heading {
          margin-bottom: 50px;
        }

        .services-heading h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .service-image {
          height: 220px;
        }

        .service-content {
          padding: 25px;
        }

        .service-content h3 {
          font-size: 28px;
        }

        .service-content p {
          font-size: 16px;
          line-height: 1.7;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .section-tag {
          font-size: 12px;
          letter-spacing: 3px;
          padding-left: 55px;
        }

        .section-tag::before {
          width: 40px;
        }

        .services-heading h2 {
          font-size: 34px;
        }

        .service-card {
          border-radius: 22px;
        }

        .service-image {
          height: 200px;
        }

        .service-content h3 {
          font-size: 24px;
        }
      }
    </style>
    <style>
      /* =========================
   PORTFOLIO SECTION
========================== */
      .portfolio-section {
        padding: 120px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      /* HEADING */
      .portfolio-heading {
        margin-bottom: 70px;
      }

      .section-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 14px;
        margin-bottom: 25px;
        position: relative;
        padding-left: 70px;
      }

      .section-tag::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: #875534;
      }

      .portfolio-heading h2 {
        font-size: 72px;
        line-height: 1;
        font-weight: 900;
        color: #111;
      }

      .portfolio-heading h2 span {
        color: #875534;
      }

      /* =========================
   GRID
========================== */
      .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        grid-auto-rows: 320px;
      }

      .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        cursor: pointer;
      }

      .portfolio-item.tall {
        grid-row: span 2;
      }

      .portfolio-item.wide {
        grid-column: span 2;
      }

      .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
      }

      .portfolio-item:hover img {
        transform: scale(1.1);
      }

      /* OVERLAY */
      .portfolio-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 35px;
        opacity: 0;
        transition: 0.4s;
      }

      .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
      }

      .portfolio-overlay h3 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 10px;
      }

      .portfolio-overlay p {
        color: #ddd;
        font-size: 17px;
      }

      /* =========================
   POPUP
========================== */
      .portfolio-popup {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: 99999;
      }

      .portfolio-popup.active {
        opacity: 1;
        visibility: visible;
      }

      .portfolio-popup img {
        max-width: 90%;
        max-height: 85%;
        border-radius: 20px;
        animation: zoomEffect 0.4s ease;
      }

      /* CLOSE */
      .popup-close {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 40px;
        color: #fff;
        cursor: pointer;
        z-index: 10;
      }

      /* ANIMATION */
      @keyframes zoomEffect {
        from {
          transform: scale(0.7);
          opacity: 0;
        }

        to {
          transform: scale(1);
          opacity: 1;
        }
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .portfolio-heading h2 {
          font-size: 56px;
        }

        .portfolio-grid {
          grid-template-columns: 1fr 1fr;
        }

        .portfolio-item.wide {
          grid-column: span 2;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .portfolio-section {
          padding: 90px 0;
        }

        .portfolio-heading {
          margin-bottom: 50px;
        }

        .portfolio-heading h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .portfolio-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: 280px;
        }

        .portfolio-item.wide,
        .portfolio-item.tall {
          grid-column: unset;
          grid-row: unset;
        }

        .portfolio-overlay {
          opacity: 1;
        }

        .portfolio-overlay h3 {
          font-size: 24px;
        }

        .popup-close {
          top: 20px;
          right: 25px;
          font-size: 32px;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .portfolio-heading h2 {
          font-size: 34px;
        }

        .section-tag {
          font-size: 12px;
          letter-spacing: 3px;
          padding-left: 55px;
        }

        .section-tag::before {
          width: 40px;
        }

        .portfolio-grid {
          grid-auto-rows: 240px;
        }

        .portfolio-item {
          border-radius: 22px;
        }
      }
    </style>
    <style>
      /* =========================
   WHY SECTION
========================== */
      .why-section {
        position: relative;
        padding: 130px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      /* SHAPES */
      .why-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.18;
      }

      .shape-1 {
        width: 350px;
        height: 350px;
        background: #875534;
        top: -120px;
        left: -120px;
      }

      .shape-2 {
        width: 300px;
        height: 300px;
        background: #111;
        bottom: -100px;
        right: -100px;
      }

      /* =========================
   HEADING
========================== */
      .why-heading {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 80px;
        position: relative;
        z-index: 2;
      }

      .section-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 14px;
        margin-bottom: 25px;
        font-weight: 600;
      }

      .why-heading h2 {
        font-size: 46px;
        line-height: 1;
        font-weight: 900;
        color: #111;
        margin-bottom: 25px;
      }

      .why-heading h2 span {
        color: #875534;
      }

      .why-heading p {
        font-size: 22px;
        line-height: 1.8;
        color: #666;
      }

      /* =========================
   GRID
========================== */
      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        z-index: 2;
      }

      /* CARD */
      .why-card {
        position: relative;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        padding: 45px 35px;
        border-radius: 30px;
        text-align: center;
        transition: 0.4s;
        border: 1px solid rgba(255, 255, 255, 0.6);
        overflow: hidden;
      }

      /* HOVER */
      .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
      }

      .why-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: #875534;
        transform: scaleX(0);
        transition: 0.4s;
      }

      .why-card:hover::before {
        transform: scaleX(1);
      }

      /* FEATURED */
      .featured-card {
        background: linear-gradient(135deg,
            #111 0%,
            #1c1c1c 100%);
      }

      .featured-card h3,
      .featured-card p {
        color: #fff;
      }

      .featured-card .why-icon {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
      }

      .featured-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #875534;
        color: #fff;
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
      }

      /* ICON */
      .why-icon {
        width: 82px;
        height: 82px;
        margin: 0 auto 28px;
        border-radius: 24px;
        background: #f5ebe0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        color: #875534;
        transition: 0.4s;
      }

      .why-card:hover .why-icon {
        transform: rotateY(180deg);
      }

      /* CONTENT */
      .why-card h3 {
        font-size: 34px;
        color: #111;
        margin-bottom: 18px;
        font-weight: 700;
      }

      .why-card p {
        font-size: 18px;
        line-height: 1.8;
        color: #666;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .why-heading h2 {
          font-size: 58px;
        }

        .why-heading p {
          font-size: 19px;
        }

        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .why-card h3 {
          font-size: 28px;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .why-section {
          padding: 90px 0;
        }

        .why-heading {
          margin-bottom: 55px;
        }

        .why-heading h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .why-heading p {
          font-size: 17px;
        }

        .why-grid {
          grid-template-columns: 1fr;
          gap: 22px;
        }

        .why-card {
          padding: 35px 25px;
          border-radius: 24px;
        }

        .why-card h3 {
          font-size: 25px;
        }

        .why-card p {
          font-size: 16px;
        }

        .why-icon {
          width: 70px;
          height: 70px;
          font-size: 28px;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .section-tag {
          font-size: 12px;
          letter-spacing: 3px;
        }

        .why-heading h2 {
          font-size: 34px;
        }
      }
    </style>
    <style>
      /* =========================
   TESTIMONIALS SECTION
========================== */
      .testimonials-section {
        position: relative;
        padding: 130px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      /* BLUR EFFECTS */
      .testimonial-blur {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.15;
      }

      .blur-1 {
        width: 320px;
        height: 320px;
        background: #875534;
        top: -120px;
        left: -100px;
      }

      .blur-2 {
        width: 280px;
        height: 280px;
        background: #111;
        bottom: -100px;
        right: -100px;
      }

      /* =========================
   HEADING
========================== */
      .testimonials-heading {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 75px;
        position: relative;
        z-index: 2;
      }

      .section-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 25px;
      }

      .testimonials-heading h2 {
        font-size: 46px;
        line-height: 1;
        font-weight: 900;
        color: #111;
        margin-bottom: 25px;
      }

      .testimonials-heading h2 span {
        color: #875534;
      }

      .testimonials-heading p {
        font-size: 22px;
        line-height: 1.8;
        color: #666;
      }

      /* =========================
   GRID
========================== */
      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        position: relative;
        z-index: 2;
      }

      /* CARD */
      .testimonial-card {
        position: relative;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        border-radius: 30px;
        padding: 45px 35px;
        transition: 0.4s;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.6);
      }

      .testimonial-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
      }

      /* TOP BORDER */
      .testimonial-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #875534;
        transform: scaleX(0);
        transition: 0.4s;
      }

      .testimonial-card:hover::before {
        transform: scaleX(1);
      }

      /* FEATURED CARD */
      .featured-testimonial {
        background: linear-gradient(135deg,
            #111 0%,
            #1d1d1d 100%);
      }

      .featured-testimonial .testimonial-text,
      .featured-testimonial h4,
      .featured-testimonial span {
        color: #fff;
      }

      .featured-testimonial .user-image {
        background: #fff;
        color: #111;
      }

      .featured-label {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #875534;
        color: #fff;
        font-size: 12px;
        padding: 8px 16px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
      }

      /* QUOTE */
      .quote-icon {
        font-size: 80px;
        color: #875534;
        line-height: 1;
        margin-bottom: 10px;
        opacity: 0.15;
      }

      /* STARS */
      .stars {
        color: #875534;
        font-size: 22px;
        letter-spacing: 3px;
        margin-bottom: 25px;
      }

      /* TEXT */
      .testimonial-text {
        font-size: 20px;
        line-height: 1.9;
        color: #666;
        margin-bottom: 35px;
        font-style: italic;
      }

      /* USER */
      .testimonial-user {
        display: flex;
        align-items: center;
        gap: 18px;
      }

      .user-image {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #f5ebe0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #875534;
        font-weight: 700;
        font-size: 24px;
      }

      .user-info h4 {
        font-size: 24px;
        color: #111;
        margin-bottom: 5px;
      }

      .user-info span {
        font-size: 16px;
        color: #777;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .testimonials-heading h2 {
          font-size: 58px;
        }

        .testimonials-heading p {
          font-size: 19px;
        }

        .testimonial-grid {
          grid-template-columns: 1fr 1fr;
        }

        .testimonial-card {
          padding: 38px 28px;
        }

        .testimonial-text {
          font-size: 17px;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .testimonials-section {
          padding: 90px 0;
        }

        .testimonials-heading {
          margin-bottom: 50px;
        }

        .testimonials-heading h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .testimonials-heading p {
          font-size: 17px;
        }

        .testimonial-grid {
          grid-template-columns: 1fr;
          gap: 22px;
        }

        .testimonial-card {
          border-radius: 24px;
          padding: 35px 25px;
        }

        .quote-icon {
          font-size: 60px;
        }

        .testimonial-text {
          font-size: 16px;
          line-height: 1.8;
        }

        .user-info h4 {
          font-size: 20px;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .section-tag {
          font-size: 12px;
          letter-spacing: 3px;
        }

        .testimonials-heading h2 {
          font-size: 34px;
        }
      }
    </style>
    <style>
      /* =========================
   CONTACT SECTION
========================== */
      .contact-section {
        position: relative;
        padding: 130px 0;
        background: #f8f5f2;
        overflow: hidden;
      }

      /* BLUR EFFECTS */
      .contact-blur {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.15;
      }

      .blur-left {
        width: 320px;
        height: 320px;
        background: #875534;
        top: -100px;
        left: -120px;
      }

      .blur-right {
        width: 280px;
        height: 280px;
        background: #111;
        bottom: -100px;
        right: -100px;
      }

      /* =========================
   HEADING
========================== */
      .contact-heading {
        text-align: center;
        max-width: 850px;
        margin: 0 auto 70px;
        position: relative;
        z-index: 2;
      }

      .section-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 14px;
        margin-bottom: 25px;
        font-weight: 600;
      }

      .contact-heading h2 {
        font-size: 56px;
        line-height: 1;
        font-weight: 900;
        color: #111;
        margin-bottom: 25px;
      }

      .contact-heading h2 span {
        color: #875534;
      }

      .contact-heading p {
        font-size: 22px;
        line-height: 1.8;
        color: #666;
      }

      /* =========================
   WRAPPER
========================== */
      .contact-wrapper {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 35px;
        position: relative;
        z-index: 2;
      }

      /* =========================
   FORM BOX
========================== */
      .contact-form-box {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border-radius: 35px;
        padding: 45px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
      }

      /* GRID */
      .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }

      /* FORM GROUP */
      .form-group {
        margin-bottom: 24px;
      }

      .form-group label {
        display: block;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #666;
        margin-bottom: 12px;
        font-weight: 600;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        width: 100%;
        border: 1px solid #e8e2dc;
        background: #fff;
        border-radius: 18px;
        padding: 18px 20px;
        font-size: 17px;
        color: #111;
        outline: none;
        transition: 0.3s;
        font-family: inherit;
      }

      .form-group input:focus,
      .form-group textarea:focus,
      .form-group select:focus {
        border-color: #875534;
        box-shadow: 0 0 0 4px rgba(229, 155, 19, 0.1);
      }

      .form-group textarea {
        height: 170px;
        resize: none;
      }

      /* BUTTON */
      .contact-btn {
        width: 100%;
        height: 68px;
        border: none;
        border-radius: 50px;
        background: #875534;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
      }

      .contact-btn:hover {
        background: #111;
        transform: translateY(-3px);
      }

      /* =========================
   INFO
========================== */
      .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      /* CARD */
      .contact-info-card {
        display: flex;
        align-items: flex-start;
        gap: 22px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border-radius: 28px;
        padding: 35px;
        transition: 0.4s;
      }

      .contact-info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
      }

      .contact-icon {
        min-width: 70px;
        width: 70px;
        height: 70px;
        border-radius: 22px;
        background: #f5ebe0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #875534;
      }

      .contact-info-card span {
        display: block;
        font-size: 14px;
        color: #777;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }

      .contact-info-card h4 {
        font-size: 30px;
        line-height: 1.5;
        color: #111;
        font-weight: 700;
      }

      /* MAP */
      .map-box {
        overflow: hidden;
        border-radius: 30px;
        height: 320px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      }

      .map-box iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .contact-heading h2 {
          font-size: 58px;
        }

        .contact-heading p {
          font-size: 19px;
        }

        .contact-wrapper {
          grid-template-columns: 1fr;
        }

        .contact-info-card h4 {
          font-size: 24px;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .contact-section {
          padding: 90px 0;
        }

        .contact-heading {
          margin-bottom: 50px;
        }

        .contact-heading h2 {
          font-size: 42px;
          line-height: 1.1;
        }

        .contact-heading p {
          font-size: 17px;
        }

        .contact-form-box {
          padding: 30px 22px;
          border-radius: 25px;
        }

        .form-grid {
          grid-template-columns: 1fr;
          gap: 0;
        }

        .contact-info-card {
          padding: 25px;
          border-radius: 24px;
        }

        .contact-info-card h4 {
          font-size: 20px;
        }

        .contact-icon {
          width: 60px;
          height: 60px;
          min-width: 60px;
          font-size: 24px;
        }

        .map-box {
          height: 260px;
          border-radius: 24px;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .section-tag {
          font-size: 12px;
          letter-spacing: 3px;
        }

        .contact-heading h2 {
          font-size: 34px;
        }

        .contact-btn {
          height: 60px;
          font-size: 16px;
        }
      }
    </style>
    <style>
      /* =========================
   MODERN FOOTER
========================== */
      .modern-footer {
        position: relative;
        background: #0a0a0a;
        padding: 0;
        overflow: hidden;
        color: #fff;
      }

      /* GLOW EFFECTS */
      .footer-glow {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.15;
      }

      .glow-left {
        width: 350px;
        height: 350px;
        background: #875534;
        top: -120px;
        left: -120px;
      }

      .glow-right {
        width: 300px;
        height: 300px;
        background: #fff;
        bottom: -120px;
        right: -120px;
      }

      /* =========================
   CTA SECTION
========================== */
      .footer-cta {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        padding: 80px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .footer-tag {
        display: inline-block;
        color: #875534;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 13px;
        margin-bottom: 20px;
        font-weight: 600;
      }

      .footer-cta h2 {
        font-size: 68px;
        line-height: 1;
        font-weight: 900;
        color: #fff;
      }

      .footer-cta h2 span {
        color: #875534;
      }

      /* BUTTON */
      .footer-btn {
        min-width: 240px;
        height: 68px;
        border-radius: 60px;
        background: #875534;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        transition: 0.4s;
      }

      .footer-btn:hover {
        background: #fff;
        color: #111;
        transform: translateY(-5px);
      }

      /* =========================
   GRID
========================== */
      .footer-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
        gap: 60px;
        padding: 80px 0;
      }

      /* LOGO */
      .footer-logo {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
      }

      .footer-logo-icon {
        width: 55px;
        height: 55px;
        border: 2px solid #fff;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 800;
        color: #fff;
      }

      .footer-logo-text h3 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
      }

      .footer-logo-text span {
        font-size: 13px;
        color: #aaa;
        letter-spacing: 2px;
      }

      .footer-about p {
        color: #aaa;
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 35px;
        max-width: 400px;
      }

      /* SOCIALS */
      .footer-socials {
        display: flex;
        gap: 15px;
      }

      .footer-socials a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        transition: 0.4s;
      }

      .footer-socials a:hover {
        background: #875534;
        transform: translateY(-5px);
      }

      /* LINKS */
      .footer-links h4,
      .footer-contact h4 {
        font-size: 28px;
        margin-bottom: 28px;
        color: #fff;
      }

      .footer-links ul li {
        margin-bottom: 18px;
      }

      .footer-links ul li a {
        color: #aaa;
        font-size: 18px;
        transition: 0.3s;
      }

      .footer-links ul li a:hover {
        color: #875534;
        padding-left: 8px;
      }

      /* CONTACT */
      .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 25px;
      }

      .footer-contact-item span {
        width: 45px;
        height: 45px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #875534;
        font-size: 20px;
      }

      .footer-contact-item p {
        color: #aaa;
        font-size: 18px;
        line-height: 1.8;
      }

      /* =========================
   BOTTOM
========================== */
      .footer-bottom {
        position: relative;
        z-index: 2;
        padding: 28px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .footer-bottom p {
        color: #888;
        font-size: 16px;
      }

      .footer-bottom span {
        color: #875534;
        font-weight: 600;
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .footer-cta {
          flex-direction: column;
          align-items: flex-start;
        }

        .footer-cta h2 {
          font-size: 52px;
        }

        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .modern-footer {
          padding: 0;
        }

        .footer-cta {
          padding: 60px 0;
        }

        .footer-cta h2 {
          font-size: 40px;
          line-height: 1.1;
        }

        .footer-btn {
          width: 100%;
          min-width: 100%;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 45px;
          padding: 60px 0;
        }

        .footer-logo-text h3 {
          font-size: 26px;
        }

        .footer-about p,
        .footer-links ul li a,
        .footer-contact-item p {
          font-size: 16px;
        }

        .footer-links h4,
        .footer-contact h4 {
          font-size: 24px;
        }

        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .footer-cta h2 {
          font-size: 32px;
        }

        .footer-tag {
          font-size: 12px;
          letter-spacing: 3px;
        }

        .footer-logo-icon {
          width: 48px;
          height: 48px;
          font-size: 24px;
        }

        .footer-logo-text h3 {
          font-size: 22px;
        }
      }
    </style>
    <style>
      /* =========================
   MODERN HERO
========================== */
      .modern-hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        padding: 180px 0 100px;
      }

      /* OVERLAY */
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
            rgba(255, 248, 242, 0.96) 0%,
            rgba(255, 248, 242, 0.88) 40%,
            rgba(255, 248, 242, 0.55) 100%);
      }

      /* SHAPES */
      .hero-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        opacity: 0.18;
      }

      .shape-one {
        width: 320px;
        height: 320px;
        background: #9c6238;
        top: -120px;
        left: -120px;
      }

      .shape-two {
        width: 260px;
        height: 260px;
        background: #111;
        bottom: -120px;
        right: -120px;
      }

      /* WRAPPER */
      .hero-wrapper {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        gap: 40px;
      }

      /* =========================
   CONTENT
========================== */
      .hero-tag {
        display: flex;
        align-items: center;
        gap: 18px;
        color: #7b6a5f;
        text-transform: uppercase;
        letter-spacing: 6px;
        font-size: 14px;
        margin-bottom: 35px;
      }

      .hero-tag span {
        width: 60px;
        height: 2px;
        background: #9c6238;
      }

      /* HEADING */
      .hero-content h1 {
        font-size: 62px;
        line-height: 0.95;
        font-weight: 900;
        color: #111;
        margin-bottom: 35px;
      }

      .hero-content h1 span {
        color: #9c6238;
      }

      /* TEXT */
      .hero-content p {
        font-size: 20px;
        line-height: 1.9;
        color: #5e5e5e;
        max-width: 820px;
        margin-bottom: 45px;
      }

      /* BUTTONS */
      .hero-buttons {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
        margin-bottom: 60px;
      }

      .hero-btn {
        height: 68px;
        padding: 0 38px;
        border-radius: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        transition: 0.4s;
      }

      .primary-btn {
        background: #9c6238;
        color: #fff;
        box-shadow: 0 15px 35px rgba(156, 98, 56, 0.25);
      }

      .primary-btn:hover {
        transform: translateY(-5px);
        background: #111;
      }

      .secondary-btn {
        background: #fff;
        color: #111;
        border: 1px solid #eee;
      }

      .secondary-btn:hover {
        background: #111;
        color: #fff;
      }

      /* STATS */
      .hero-stats {
        display: flex;
        gap: 55px;
        flex-wrap: wrap;
      }

      .hero-stat h3 {
        font-size: 62px;
        font-weight: 900;
        color: #111;
        margin-bottom: 8px;
      }

      .hero-stat span {
        color: #666;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* =========================
   RIGHT SIDE
========================== */
      .hero-right {
        position: relative;
        display: flex;
        justify-content: flex-end;
      }

      /* EXPERIENCE */
      .experience-card {
        width: 270px;
        height: 270px;
        border-radius: 35px;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.4);
      }

      .experience-card h2 {
        font-size: 92px;
        line-height: 1;
        color: #9c6238;
        font-weight: 900;
        margin-bottom: 10px;
      }

      .experience-card p {
        color: #444;
        font-size: 28px;
        line-height: 1.5;
      }

      /* FLOATING CARD */
      .floating-card {
        position: absolute;
        left: -60px;
        bottom: 40px;
        background: #fff;
        border-radius: 22px;
        padding: 20px 25px;
        display: flex;
        align-items: center;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        animation: floatCard 3s ease-in-out infinite;
      }

      .floating-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        background: #f3e6dc;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9c6238;
        font-size: 28px;
      }

      .floating-card h4 {
        font-size: 22px;
        color: #111;
        margin-bottom: 5px;
      }

      .floating-card span {
        color: #777;
        font-size: 15px;
      }

      /* FLOAT ANIMATION */
      @keyframes floatCard {
        0% {
          transform: translateY(0);
        }

        50% {
          transform: translateY(-12px);
        }

        100% {
          transform: translateY(0);
        }
      }

      /* =========================
   TABLET
========================== */
      @media(max-width:991px) {
        .hero-wrapper {
          grid-template-columns: 1fr;
        }

        .hero-content h1 {
          font-size: 68px;
        }

        .hero-content p {
          font-size: 20px;
        }

        .hero-right {
          justify-content: flex-start;
        }

        .floating-card {
          left: 180px;
          bottom: -30px;
        }
      }

      /* =========================
   MOBILE
========================== */
      @media(max-width:768px) {
        .modern-hero {
          padding: 150px 0 90px;
          min-height: auto;
        }

        .hero-content h1 {
          font-size: 48px;
          line-height: 1;
        }

        .hero-content p {
          font-size: 17px;
          line-height: 1.8;
        }

        .hero-tag {
          letter-spacing: 2px;
          font-size: 11px;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: flex-start;
        }

        .hero-btn {
          width: 100%;
        }

        .hero-stats {
          gap: 30px;
        }

        .hero-stat h3 {
          font-size: 42px;
        }

        .experience-card {
          width: 220px;
          height: 220px;
        }

        .experience-card h2 {
          font-size: 70px;
        }

        .experience-card p {
          font-size: 20px;
        }

        .floating-card {
          position: relative;
          left: 0;
          bottom: 0;
          margin-top: 20px;
          width: 100%;
        }
      }

      /* =========================
   SMALL MOBILE
========================== */
      @media(max-width:480px) {
        .hero-content h1 {
          font-size: 40px;
        }

        .hero-tag {
          font-size: 10px;
        }

        .hero-stat h3 {
          font-size: 34px;
        }
      }
      .breadcrumb-section{
    background:#f5f5f5;
    padding:40px 15px;
    text-align:center;
}

.breadcrumb-section h1{
    font-size:32px;
    margin-bottom:10px;
    color:#222;
}

.breadcrumb{
    font-size:16px;
}

.breadcrumb a{
    text-decoration:none;
    color:#007bff;
}

.breadcrumb span{
    color:#666;
    margin:0 5px;
}

@media (max-width:768px){
    .breadcrumb-section h1{
        font-size:24px;
    }

    .breadcrumb{
        font-size:14px;
    }
}