    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary-gold: #c9a961;
      --soft-gold: #e8d5b7;
      --rose-gold: #d4a574;
      --deep-navy: #1a2332;
      --soft-charcoal: #2c2c2c;
      --warm-white: #fdfcfa;
      --cream: #f8f6f2;
      --light-cream: #faf8f3;
      --text-primary: #2c2c2c;
      --text-secondary: #6b6b6b;
      --shadow-subtle: 0 2px 20px rgba(201, 169, 97, 0.08);
      --shadow-elegant: 0 8px 40px rgba(201, 169, 97, 0.15);
      --shadow-premium: 0 15px 60px rgba(201, 169, 97, 0.2);
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--warm-white);
      color: var(--text-primary);
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* Premium Typography */
    h1, h2, h3, h4, h5, h6, .heading-font {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    .display-font {
      font-family: 'Cinzel', serif;
    }

    /* Elegant Header */
    header {
      background: rgba(253, 252, 250, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 rgba(201, 169, 97, 0.1);
      /*position: sticky;*/
      /*top: 0;*/
      /*z-index: 1000;*/
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 99;
    }

    header.scrolled {
      box-shadow: var(--shadow-subtle);
    }

    /*.navbar {*/
    /*  padding: 1.2rem 0;*/
    /*}*/

    .navbar-brand img {
      width: 150px;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-brand:hover img {
      transform: scale(1.03);
    }

    .nav-link {
      font-weight: 500;
      color: var(--text-primary) !important;
      position: relative;
      transition: all 0.3s ease;
      padding: 0.5rem 1.2rem !important;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      width: 0;
      height: 1px;
      background: var(--primary-gold);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-50%);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      width: 60%;
    }

    .nav-link:hover {
      color: var(--primary-gold) !important;
    }

    .cta-btn {
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--rose-gold) 100%);
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 30px;
      font-weight: 600;
      color: white;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 15px rgba(201, 169, 97, 0.25);
      font-size: 0.9rem;
      letter-spacing: 0.05em;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(201, 169, 97, 0.35);
      color: white;
    }

    /* Mobile Menu Slide from Left */
    @media (max-width: 991px) {
      .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        padding: 2rem 1.5rem;
      }

      .navbar-collapse.show {
        left: 0;
      }

      .navbar-collapse::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        /*background: rgba(0, 0, 0, 0.5);*/
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: -1;
      }

      .navbar-collapse.show::before {
        opacity: 1;
        visibility: visible;
      }

      .navbar-nav {
        width: 100%;
      }

      .nav-item {
        margin: 0.5rem 0;
      }

      .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 5px;
      }

      .nav-link:hover {
        background: var(--light-cream);
      }

      .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none;
        background: var(--light-cream);
        margin: 0.5rem 0 0 1rem;
      }

      /* Close button for mobile menu */
      .navbar-collapse .navbar-nav::before {
        content: '×';
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        color: var(--text-primary);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--light-cream);
        transition: all 0.3s ease;
      }

      .navbar-collapse .navbar-nav::before:hover {
        background: var(--primary-gold);
        color: white;
      }
    }

    /* NEW CREATIVE HERO BANNER WITH IMAGE */
    .hero-banner {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--deep-navy) 0%, #2a3d54 100%);
      position: relative;
      overflow: hidden;
      padding: 8rem 0 6rem;
      /*z-index: -1;*/
    }

    .hero-banner::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.15), transparent 70%);
      pointer-events: none;
    }

    .hero-banner::after {
      content: '✦';
      position: absolute;
      top: 10%;
      left: 5%;
      font-size: 200px;
      color: var(--primary-gold);
      opacity: 0.03;
      animation: float 10s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(10deg); }
    }

    .hero-content-wrapper {
      display: flex;
      align-items: center;
      gap: 4rem;
      margin-bottom: 3rem;
    }

    .hero-text-section {
      flex: 1;
    }

    .hero-image-section {
      flex: 0 0 400px;
      position: relative;
    }

    .hero-profile-image {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border: 5px solid rgba(201, 169, 97, 0.3);
      animation: fadeInRight 1s ease-out;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-intro {
      text-align: left;
      margin-bottom: 3rem;
      position: relative;
      z-index: 2;
    }

    .hero-intro .subtitle {
      font-size: 0.9rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--soft-gold);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .hero-intro h1 {
      font-size: 4.5rem;
      font-weight: 300;
      color: white;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .hero-intro .tagline {
      font-size: 1.6rem;
      color: var(--soft-gold);
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .hero-intro .description {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, 0.85);
      max-width: 750px;
      line-height: 1.8;
    }

    /* Three Main Category Cards */
    .category-cards {
      position: relative;
      z-index: 2;
      margin-bottom: 4rem;
    }

    .category-card {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 3rem 2.5rem;
      margin-bottom: 2rem;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .category-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-gold), var(--rose-gold));
    }

    .category-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.08), transparent);
      transition: left 0.8s ease;
    }

    .category-card:hover::after {
      left: 100%;
    }

    .category-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 70px rgba(201, 169, 97, 0.35);
      border-color: var(--primary-gold);
    }

    .category-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      background: linear-gradient(135deg, var(--primary-gold), var(--rose-gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .category-title {
      font-size: 2rem;
      color: var(--deep-navy);
      font-weight: 600;
      margin-bottom: 1.2rem;
      line-height: 1.3;
    }

    .category-subtitle {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .category-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .category-tag {
      background: var(--light-cream);
      padding: 0.6rem 1.2rem;
      border-radius: 20px;
      font-size: 0.9rem;
      color: var(--text-primary);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .category-tag:hover {
      background: var(--primary-gold);
      color: white;
      transform: translateY(-2px);
    }

    /* CTA Buttons */
    .hero-cta-section {
      text-align: left;
      position: relative;
      z-index: 2;
    }

    .btn-hero-primary {
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--rose-gold) 100%);
      border: none;
      padding: 1.3rem 3.5rem;
      border-radius: 50px;
      font-weight: 600;
      color: white;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
      margin: 0 0.75rem;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
      color: white;
    }

    .btn-hero-secondary {
      background: transparent;
      border: 2px solid white;
      padding: 1.3rem 3.5rem;
      border-radius: 50px;
      font-weight: 600;
      color: white;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 1.1rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
      margin: 0 0.75rem;
    }

    .btn-hero-secondary:hover {
      background: white;
      color: var(--deep-navy);
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    }

    /* Responsive Design for Hero */
    @media (max-width: 992px) {
      .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
      }

      .hero-intro {
        text-align: center;
      }

      .hero-intro .description {
        margin: 0 auto;
      }

      .hero-cta-section {
        text-align: center;
      }

      .hero-image-section {
        flex: 0 0 300px;
        order: -1;
      }

      .hero-intro h1 {
        font-size: 3.5rem;
      }

      .hero-intro .tagline {
        font-size: 1.3rem;
      }

      .category-card {
        padding: 2.5rem 2rem;
      }

      .category-title {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 768px) {
      .hero-banner {
        padding: 5rem 0 3rem;
      }

      .hero-image-section {
        flex: 0 0 250px;
      }

      .hero-intro h1 {
        font-size: 2.8rem;
      }

      .hero-intro .tagline {
        font-size: 1.1rem;
      }

      .hero-intro .description {
        font-size: 1rem;
      }

      .btn-hero-primary,
      .btn-hero-secondary {
        display: block;
        margin: 1rem auto;
        max-width: 300px;
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
      }

      .category-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
      }

      .category-icon {
        font-size: 2.5rem;
      }

      .category-title {
        font-size: 1.5rem;
      }

      .category-subtitle {
        font-size: 0.95rem;
      }
    }

    @media screen and (max-width:539px) {
      .navbar-brand img {
        width: 100px;
      }
      .cta-btn {
        padding: 0.75rem 1rem;
      }
      .nav-link::before {
          display: none;
      }
    }

    /* Elegant Divider */
    .section-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
      margin: 0;
    }

    /* Premium Services Section */
    .services-section {
      padding: 8rem 0;
      background: var(--light-cream);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .service-card {
      background: white;
      padding: 3.5rem 2.5rem;
      border-radius: 2px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--shadow-subtle);
      border-top: 2px solid transparent;
      position: relative;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--primary-gold), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-elegant);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--primary-gold);
      margin-bottom: 2rem;
    }

    .service-title {
      font-size: 1.8rem;
      color: var(--deep-navy);
      margin-bottom: 1.2rem;
      font-weight: 400;
    }

    .service-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-secondary);
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-gold);
      font-weight: 600;
      text-decoration: none;
      margin-top: 1.5rem;
      transition: gap 0.3s ease;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
    }

    .service-link:hover {
      gap: 1rem;
      color: var(--rose-gold);
    }

    /* About Section */
    .about-section {
      padding: 8rem 0;
      background: white;
      position: relative;
    }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--primary-gold);
      margin-bottom: 1.5rem;
      font-weight: 600;
    }

    .section-title {
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--deep-navy);
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .section-text {
      font-size: 1.1rem;
      line-height: 2;
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .about-image {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: var(--shadow-elegant);
    }

    .about-image img {
      width: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-image:hover img {
      transform: scale(1.03);
    }

    .btn-primary-gold {
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--rose-gold) 100%);
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 2px;
      font-weight: 600;
      color: white;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
      color: white;
    }

    .btn-secondary-outline {
      background: transparent;
      border: 1.5px solid var(--text-primary);
      padding: 1rem 2.5rem;
      border-radius: 2px;
      font-weight: 500;
      color: var(--text-primary);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: inline-block;
    }

    .btn-secondary-outline:hover {
      background: var(--deep-navy);
      border-color: var(--deep-navy);
      color: white;
      transform: translateY(-3px);
    }

    /* Elegant Marquee */
    .credentials-marquee {
      background: linear-gradient(135deg, var(--primary-gold) 0%, var(--rose-gold) 100%);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .marquee-content {
      display: flex;
      animation: scroll 40s linear infinite;
    }

    .marquee-item {
      color: white;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0 3rem;
      white-space: nowrap;
      letter-spacing: 0.1em;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .marquee-item::before {
      content: '◆';
      color: rgba(255, 255, 255, 0.5);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Premium Achievements Section */
    .achievements-section {
      padding: 8rem 0;
      background: var(--light-cream);
      position: relative;
      overflow: hidden;
    }

    .achievement-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-bottom: 6rem;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .achievement-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .achievement-item:nth-child(even) {
      direction: rtl;
    }

    .achievement-item:nth-child(even) > * {
      direction: ltr;
    }

    .achievement-content {
      position: relative;
      padding-left: 3rem;
    }

    .achievement-content::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 3px;
      height: 60px;
      background: linear-gradient(180deg, var(--primary-gold), transparent);
    }

    .achievement-number {
      font-size: 1rem;
      color: var(--primary-gold);
      font-weight: 600;
      margin-bottom: 0.5rem;
      letter-spacing: 0.1em;
    }

    .achievement-title {
      font-size: 2.5rem;
      color: var(--deep-navy);
      margin-bottom: 1.5rem;
      font-weight: 400;
      line-height: 1.3;
    }

    .achievement-text {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--text-secondary);
    }

    .achievement-image {
      position: relative;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: var(--shadow-elegant);
      aspect-ratio: 4/3;
    }

    .achievement-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .achievement-item:hover .achievement-image img {
      transform: scale(1.05);
    }

    /* Premium CTA Section */
    .cta-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--deep-navy) 0%, #2a3d54 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .cta-title {
      font-size: 3rem;
      color: white;
      margin-bottom: 1.5rem;
      font-weight: 300;
    }

    .cta-text {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 3rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Premium Footer */
    footer {
      background: var(--deep-navy);
      color: rgba(255, 255, 255, 0.8);
      padding: 5rem 0 2rem;
    }

    .footer-section {
      margin-bottom: 3rem;
    }

    .footer-title {
      font-size: 1.2rem;
      color: var(--primary-gold);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: var(--primary-gold);
      padding-left: 5px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      margin-top: 3rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: var(--primary-gold);
      text-decoration: none;
    }

    /* Dropdown Styles */
    .dropdown-menu {
      background: white;
      border: none;
      box-shadow: var(--shadow-elegant);
      border-radius: 2px;
      padding: 0.5rem;
      margin-top: 0.5rem;
    }

    .dropdown-item {
      border-radius: 2px;
      padding: 0.75rem 1.25rem;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .dropdown-item:hover {
      background: var(--light-cream);
      color: var(--primary-gold);
    }

    /* Work Section */
    .work-section {
      padding: 8rem 0;
      background: var(--light-cream);
    }

    .work-slider-wrapper {
      margin-top: 4rem;
      position: relative;
      padding: 0 4rem;
    }

    .work-slide {
      padding: 1rem;
    }

    .work-image {
      border-radius: 2px;
      box-shadow: var(--shadow-subtle);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .work-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .work-image:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-elegant);
    }

    .work-image:hover img {
      transform: scale(1.1);
    }

    /* Reviews Section */
    .reviews-section {
      padding: 8rem 0;
      background: var(--light-cream);
    }

    .reviews-slider-wrapper {
      margin-top: 4rem;
      position: relative;
      padding: 0 4rem;
    }

    .review-slide {
      padding: 1rem;
    }

    .review-card {
      background: var(--warm-white);
      padding: 3rem 2.5rem;
      border-radius: 2px;
      box-shadow: var(--shadow-subtle);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .review-card::before {
      content: '"';
      position: absolute;
      top: 1.5rem;
      left: 2rem;
      font-size: 5rem;
      font-family: 'Cormorant Garamond', serif;
      color: var(--primary-gold);
      opacity: 0.15;
      line-height: 1;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-elegant);
    }

    .review-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      font-style: italic;
      position: relative;
      z-index: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      -webkit-line-clamp: 6;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .review-stars {
      color: var(--primary-gold);
      font-size: 1.2rem;
      letter-spacing: 0.2rem;
      margin-bottom: 0.5rem;
    }

    .review-name {
      font-size: 1.1rem;
      color: var(--deep-navy);
      font-weight: 600;
    }

    /* Slick Slider Customization */
    .slick-prev, .slick-next {
      width: 50px;
      height: 50px;
      background: white !important;
      border-radius: 50%;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-subtle);
    }

    .slick-prev:hover, .slick-next:hover {
      transform: scale(1.1);
      box-shadow: var(--shadow-elegant);
      background: var(--primary-gold) !important;
    }

    .slick-prev {
      left: -25px;
    }

    .slick-next {
      right: -25px;
    }

    .slick-prev:before, .slick-next:before {
      font-size: 20px;
      opacity: 1;
      color: var(--text-primary);
    }

    .slick-prev:hover:before, .slick-next:hover:before {
      color: white;
    }

    .slick-dots {
      bottom: -50px;
    }

    .slick-dots li button:before {
      font-size: 10px;
      color: var(--primary-gold);
      opacity: 0.3;
    }

    .slick-dots li.slick-active button:before {
      opacity: 1;
    }

    /* Product Card Hover Effects */
    .product-card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card-hover:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-elegant) !important;
    }

    .product-card-hover img {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card-hover:hover img {
      transform: scale(1.08);
    }

    /* Blog Card Hover Effects */
    .blog-card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card-hover:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-elegant) !important;
    }

    .blog-card-hover img {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .blog-card-hover:hover img {
      transform: scale(1.08);
    }

    /* Scroll Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Smooth Scrolling */
    html {
      scroll-behavior: smooth;
    }

    /* General Responsive */
    @media (max-width: 992px) {
      .section-title {
        font-size: 2.5rem;
      }

      .achievement-item {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .achievement-item:nth-child(even) {
        direction: ltr;
      }

      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .work-slider-wrapper,
      .reviews-slider-wrapper {
        padding: 0 2rem;
      }
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }

      .cta-title {
        font-size: 2rem;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    .hero-banner {
        z-index: -1;
    }
      .about-section,
      .services-section,
      .achievements-section,
      .work-section,
      .reviews-section {
        padding: 4rem 0;
      }

      .achievement-content {
        padding-left: 1.5rem;
      }

      .work-slider-wrapper,
      .reviews-slider-wrapper {
        padding: 0;
      }

      .slick-prev {
        left: 10px;
      }

      .slick-next {
        right: 10px;
      }
    }
    
    .ivaf_logo img {
    width: 150px;
    height: 150px;
    /* aspect-ratio: 4 / 5; */
}
.ivaf_logo {
    position: absolute;
    bottom: 28px;
    left: 0;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 10px #ddd;
    /* padding: 10px; */
}
 
    /* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(212, 165, 116, 0.1));
    border-left: 4px solid var(--primary-gold);
    padding: 2rem;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--deep-navy);
    font-size: 24px;
}
.logo_slug .highlight-box {
    margin: 0;
    transform: translateY(-72px);
    background: #d1a66f;
    text-align: center;
}
.logo_slug .highlight-box h4 {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

@media screen and (max-width:1025px) {
    .hero-banner {
    padding: 3rem 0 6rem;
  
}
.category-card {
    padding: 0rem 1rem;
}
.services-section, .about-section, .achievements-section, .work-section , .reviews-section, .cta-section{
    padding: 2rem 0 !important;
}
.footer-bottom {
    padding-top: 1rem;
    margin-top: 0;
 
}
.footer-section {
    margin-bottom: 0rem;
}
footer {
    padding: 2rem 0 1rem;
}
}

@media screen and (max-width:779px) {
        .hero-banner {
        padding: 3rem 0 1rem;
    }
}
