/* ==================== */
/* GLOBAL STYLES & VARIABLES */
/* ==================== */
:root {
    --gold: #D4AF37;
    --burgundy: #771e44;
    --cream: #f9f5f0;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    padding-top: 10px;
    background-color: #f8f9fa;
  }
  
  .text-primary {
    color: var(--gold) !important;
  }
  
  /* ==================== */
  /* HEADER & NAVIGATION */
  /* ==================== */
  .internal-header {
    background-color: #000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    

  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    
  }
  
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .header-logo img {
    height: 50px;
  }
  
  /* Navigation Menu */
  .nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  .nav-menu li {
    margin: 0 15px;
  }
  
  .nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--gold);
  }
  
  .dropdown-menu li a {
    color: rgb(255, 255, 255);
  }
  
  /* Social Icons */
  .social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  .social-icons li {
    margin-left: 15px;
  }
  
  .social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: var(--gold);
  }
  
  /* Mobile Toggle Button */
  .navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    order: 2;
  }
  
  .toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background: #f1f1f1;
    margin: 5px 0;
  }
  
  /* ==================== */
  /* HERO SECTION */
  /* ==================== */
  .about-hero {
    background: linear-gradient(rgba(119, 30, 68, 0.7), rgba(66, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  /* ==================== */
  /* CONTENT SECTIONS */
  /* ==================== */
  .section-title {
    color: var(--burgundy);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold);
  }
  
  /* Cards (Contact & Feature) */
  .contact-card,
  .feature-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    margin-bottom: 30px;
  }
  
  .contact-card:hover,
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 3px solid var(--gold);
  }
  
  .feature-box:hover {
    transform: translateY(-10px);
  }
  
  .contact-icon,
  .feature-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  /* ==================== */
  /* FORM STYLES */
  /* ==================== */
  .contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid var(--gold);
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  
  textarea.form-control {
    height: auto;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline-color: #b8860b;
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
    border-color: #b8860b;
  }
  
  .btn-primary {
    background-color: var(--burgundy);
    border-color: var(--burgundy);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  
  .btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
  }
  
  /* ==================== */
  /* MAP & TIMELINE */
  /* ==================== */
  .contact-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .timeline {
    position: relative;
    padding-left: 50px;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gold);
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }
  
  .timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  
  
  /* ==================== */
  /* RESPONSIVE STYLES */
  /* ==================== */
  @media (max-width: 992px) {
    .header-container {
      flex-direction: column;
      padding-top: 30px;
    }
    
    .header-logo {
      position: static;
      transform: none;
      margin-bottom: 15px;
    }
    
    .nav-menu {
      margin-bottom: 15px;
    }
    
    body {
      padding-top: 180px;
    }
    
    .hero-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    body{
      justify-content: center;
    }
    /* Header */
    .header-container {
      flex-wrap: wrap;
      font-size: 15px;
    }
  
    .social-icons {
      order: 1;
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
    }
  
    .header-logo {
      order: 2;
      text-align: center;
      width: 100%;
    }
  
    .navbar-toggler {
      display: block;
      order: 3;
    }
  
    .nav-menu {
      display: none;
      order: 4;
      width: 100%;
      flex-direction: column;
      background: #000000;
      padding: 30px;
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-menu li {
      margin: 10px 0;
      text-align: center;
    }
  
    .dropdown-menu {
      position: static;
      border: none;
      box-shadow: none;
      background: rgba(0,0,0,0.1);
    }
  
    /* Hero Adjustments */
    .hero-title {
      font-size: 2.5rem;
    }
    
    /* Content */
    .section-title {
      font-size: 1.8rem;
    }
    
    .contact-form {
      padding: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 1.8rem;
    }
    
    .section-title {
      font-size: 1.5rem;
    }
    
    .contact-card,
    .feature-box {
      padding: 20px;
    }
  }
  /*brand*/

  /* ===== ROOT VARIABLES ===== */
  :root {
      --gold: #D4AF37;
      --burgundy: #771e44;
      --cream: #f9f5f0;
  }

  body {
      font-family: 'Roboto', sans-serif;
      color: #333;
      padding-top: 100px;
      background-color: #f8f9fa;
  }

  /* ===== HEADER STYLES ===== */
  .internal-header {
      background-color: #000;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      padding: 0px 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      position: relative;
  }

  .header-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
  }

  .header-logo img {
      height: 50px;
  }

  .nav-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
  }

  .nav-menu li {
      margin: 0 15px;
  }

  .nav-menu a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      padding: 5px 0;
      position: relative;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
      color: var(--gold);
  }

  .dropdown-menu li a {
      color: rgb(255, 255, 255);
  }

  .social-icons {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
  }

  .social-icons li {
      margin-left: 15px;
  }

  .social-icons a {
      color: white;
      font-size: 18px;
      transition: color 0.3s;
  }

  .social-icons a:hover {
      color: var(--gold);
  }

  .navbar-toggler {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      order: 2;
  }

  .toggler-icon {
      display: block;
      width: 25px;
      height: 2px;
      background: #f1f1f1;
      margin: 5px 0;
  }

  /* ===== BRAND HERO SECTION ===== */
  .brand-hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
      background-size: cover;
      background-position: center;
      height: 60vh;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
      margin-bottom: 60px;
     
  }

  .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  /* ===== BRAND CONTENT SECTION ===== */
  .brand-section {
      padding: 80px 0;
  }

  .section-title {
      color: var(--burgundy);
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 30px;
      font-size: 2.2rem;
  }

  .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 3px;
      background: var(--gold);
  }

  .brand-highlight {
      background-color: var(--cream);
      padding: 40px;
      border-radius: 8px;
      margin-bottom: 40px;
      border-left: 5px solid var(--gold);
  }

  .quality-card {
      background: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
      transition: all 0.3s ease;
      border-top: 3px solid transparent;
      margin-bottom: 30px;
  }

  .quality-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border-top: 3px solid var(--gold);
  }

  .fabric-icon {
      font-size: 2.5rem;
      color: var(--gold);
      margin-bottom: 20px;
  }

  .price-badge {
      background-color: var(--burgundy);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
  }

  .target-audience {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
  }

  .audience-card {
      flex: 1;
      min-width: 250px;
      background: white;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border-top: 3px solid var(--gold);
  }

  /* ===== RESPONSIVE STYLES ===== */
  @media (max-width: 992px) {
      .header-container {
          flex-direction: column;
          padding-top: 10px;
      }
      
      .header-logo {
          position: static;
          transform: none;
          margin-bottom: 15px;
      }
      
      .nav-menu {
          margin-bottom: 15px;
      }
      
     
  }

  @media (max-width: 768px) {
      .header-container {
          flex-wrap: wrap;
          font-size: 15px;
      }

      .social-icons {
          order: 1;
          width: 100%;
          justify-content: center;
          margin-bottom: 10px;
      }

      .header-logo {
          order: 2;
          text-align: center;
          width: 100%;
      }

      .navbar-toggler {
          display: block;
          order: 3;
      }

      .nav-menu {
          display: none;
          order: 4;
          width: 100%;
          flex-direction: column;
          background: #000000;
          padding: 30px;
      }

      .nav-menu.active {
          display: flex;
      }

      .dropdown-menu {
          position: static;
          border: none;
          box-shadow: none;
      }

      .hero-title {
          font-size: 2.5rem;
      }
      
      .brand-hero {
          height: 50vh;
      }
  }
 
@media (max-width: 768px) {
    .custom-timeline-margin {
        padding-left: 200px !important; /* 96px */
    }
}

    /* Mobile Timeline Styles */
    .timeline-mobile {
        position: relative;
        padding-left: 30px;
    }
    
    .timeline-mobile::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
    }
    
    .timeline-mobile-item {
        position: relative;
        margin-bottom: 25px;
    }
    
    .timeline-mobile-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-mobile-year {
        position: absolute;
        left: -30px;
        top: 0;
        width: 60px;
        height: 60px;
       
        color: #D4AF37;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
        z-index: 2;
    }
    
    .timeline-mobile-content {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        margin-left: 40px;
    }
    
    .timeline-mobile-content h4 {
        color: black;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
    
    .timeline-mobile-content p {
        margin-bottom: 10px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .timeline-mobile-content .quote {
        font-style: italic;
        color: #666;
    }
    
   
    /* Responsive Visibility */
    .timeline-mobile {
        display: none;
    }
    
    .d-block.d-md-none .timeline-mobile {
        display: block;
    }
    
    .d-none.d-md-block .timeline {
        display: block;
    }
