/* ============================================
   Font Face Declarations
   ============================================ */

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Serif';
    src: url('../font/NotoSerif-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* ============================================
   CSS Variables
   ============================================ */

:root {
    /* Colors */
    --color-primary: #1e3a8a;
    --color-primary-light: #3b82f6;
    --color-secondary: #fbbf24;
    --color-accent: #dc2626;
    --color-accent-light: #b91c1c;
    --color-text-dark: #1a1a1a;
    --color-text-gray: #4a5568;
    --color-text-light: #9ca3af;
    --color-text-white: #ffffff;
    --color-bg-white: #ffffff;
    --color-bg-whitedark: #fff2dd;

    --color-bg-cream: #faf9f7;
    --color-bg-cream-light: #f5f5dc;
    --color-bg-dark: #2d3748;
    --text-color-dark: #1f1f1f;
    --color-bg-overlay: rgba(0, 0, 0, 0.5);
    --color-border-light: #e5e7eb;
    --color-border-gray: #cbd5e1;
    
    /* Font Sizes */
    --font-size-xs:12px;      /* 12px */
    --font-size-sm: 14px;     /* 14px */
    --font-size-base: 16px;       /* 16px */
    --font-size-lg:18px;     /* 18px */
    --font-size-xl: 20px;      /* 20px */
    --font-size-2xl: 22px;      /* 22px */
    --font-size-3xl: 30px;    /* 30px */
    --font-size-4xl: 36px;     /* 36px */
    --font-size-5xl: 48px;        /* 48px */
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --spacing-xs: 8px;         /* 8px */
    --spacing-sm: 16px;           /* 16px */
    --spacing-md: 24px;         /* 24px */
    --spacing-lg: 32px;           /* 32px */
    --spacing-xl: 48px;           /* 48px */
    --spacing-2xl: 64px;          /* 64px */
    --spacing-3xl: 80px;          /* 80px */
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #1f1f1f;
    background-color: var(--color-bg-whitedark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}
p{
    margin-bottom: 0;
}
.container {
    max-width: 1440px;
}

.container-lg{
padding:0px;
    max-width: 100%;
}

/* ============================================
   Header Styles
   ============================================ */
/* Header Section */

.main-header {
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 115px;
}

.header-container {
    position: relative;
}

.navbar {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
}

.nav-logo {
    width: 140px;
    height: auto;
    display: block;
}

.custom-navbar-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    width: 100%;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navbar-nav .nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}


/* Underline for all links */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: #332F91;
    transition: width 0.3s ease;
}

/* On hover: animate underline */
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* On hover: change text color */
.navbar-nav .nav-link:hover {
    color: #332F91;
}

/* Active link: keep underline and color */
.navbar-nav .nav-link.active {
    color: #332F91 !important;
}

/* Active underline (with optional animation on load) */
.navbar-nav .nav-link.active::after {
    width: 100%;
    animation: underline-grow 0.4s ease-in-out;
}

@keyframes underline-grow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.nav-btn-group {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-franchise {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background-color: #332F91;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-franchise:hover {
    background-color: #2a2573;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 47, 145, 0.3);
}

.navbar-toggler {
    border: none;
    color: #ffffff;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler:focus {
    outline: none;
}

.icon-bar {
    height: 2px;
    width: 26px;
    background-color: #332f91;
    border-radius: 1px;
    display: block;
    margin-top: 5px;
    transition: all 0.5s ease;
}

.top-bar {
    transform: rotate(0);
    transform-origin: center;
}

.middle-bar {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.bottom-bar {
    transform: rotate(0);
    transform-origin: center;
}

/* Custom menu toggle active state */
.custom-menu-toggle.menu-active .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
    transform-origin: center;
}

.custom-menu-toggle.menu-active .middle-bar {
    opacity: 0;
}

.custom-menu-toggle.menu-active .bottom-bar {
    transform: rotate(-45deg) translate(5px, -5px);
    transform-origin: center;
}

/* Desktop View - Center Navigation */
@media (min-width: 1200px) {
    .custom-navbar-menu {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .navbar-nav {
        flex: 1;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-btn-group {
        margin-left: auto;
    }
}

@media (max-width: 1199px) {
    .nav-logo {
        width: 120px;
    }
    
    .navbar-nav {
        gap: 20px;
    }
    
    .btn-franchise {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .navbar-expand-lg .navbar-nav {
        gap: 0px;
        margin: 10px auto;
    }
    .nav-btn-group .btn {
        display: flex;
        gap: 0px;
        padding: 8px 16px;
        flex-wrap: wrap;
    }
    .nav-btn-group .btn span {
        display: flex;
        flex-wrap: nowrap;
    }
}
/* ============================================
   Hero Section Styles
   ============================================ */

.hero-section {
    margin-top: 115px;
    position: relative;
    height: 90vh; 
    padding-top: 0;
}

.hero-img {
        display: block;
    }

 .hero-img-mobile {
        display: none;
    }


/* About Hero Section - Static Image */
.inner-hero-section {
    margin-top: 115px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: auto;
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}

/* Careers Hero Section - Static Image */
.careers-hero-section {
    margin-top: 115px;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.careers-hero-image {
    width: 100%;
    height: auto;
    position: relative;
}

.careers-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}

/* Associated Brands Hero Section - Static Image */
.brands-hero-section {
    margin-top: 95px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brands-hero-image {
    width: 100%;
    height: auto;
    position: relative;
}

.brands-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}

/* Branches Hero Section - Static Image */
.branches-hero-section {
    margin-top: 115px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.branches-hero-image {
    width: 100%;
    height: auto;
    position: relative;
}

.branches-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}

/* ============================================
   Awards Hero Section Styles
   ============================================ */

.awards-hero-section {
    width: 100%;
    margin-top: 95px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
}

.awards-hero-image {
    width: 100%;
    position: relative;
}

.awards-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}

/* ============================================
   Retail Hero Section Styles
   ============================================ */

.retail-hero-section {
    margin-top: 95px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.retail-hero-image {
    width: 100%;
    height: auto;
    position: relative;
}

.retail-hero-image img {
    width: 100%;
    height: auto;
    /* display: block; */
    object-fit: cover;
}














/* ============================================
   Retail Content Section Styles
   ============================================ */

   .retail-content-section {
    padding: var(--spacing-2xl) 0 var(--spacing-sm);
    /* background: #FAF6EE;  Light cream background */
}

.retail-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.retail-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    color: var(--color-text-dark); /* Dark gray */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.retail-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-3xl);
    color: #333333; /* Dark gray */
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.retail-subtitle-underline-text {
    position: relative;
    display: inline-block;
}

.retail-subtitle-underline-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333333; /* Dark gray underline */
}

.retail-description {
    max-width:888px;
    margin: 0 auto 0;
    text-align: center;
}

.retail-description-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.retail-products-grid {
    margin-top: var(--spacing-lg);
}

.retail-product-box {
    background: transparent; /* No background */
    border: none; /* No border */
    padding: 0;
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #ffffff;
}

.retail-product-box:hover {
    transform: translateY(-4px);
}

.product-image-wrapper {
    width: 100%;
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 0 25px;
}

.product-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-name {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: red; /* Dark gray */
    margin-top: var(--spacing-md);
    margin-bottom: 0;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
    letter-spacing: 0.5px;
    background: #ffffff; /* White background for heading */
    border-radius: 0px;
    width: 100%;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}




/* ============================================
   Awards Content Section Styles
   ============================================ */

   .awards-content-section {
    padding: var(--spacing-3xl) 0;
    /* background: #FAF6EE; Light cream background */
}

.awards-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.awards-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    color: var(--text-color-dark); /* Dark gray */
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.5px;
}

.awards-subtitle {
    font-family: 'Noto Serif', serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-3xl);
    color:var(--text-color-dark); /* Dark gray */
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.awards-subtitle-underline-text {
    position: relative;
    display: inline-block;
}

.awards-subtitle-underline-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Short underline */
    height: 2px;
    background:var(--text-color-dark); /* Dark gray underline */
}

.awards-description {
    text-align: center;
    margin-bottom: var(--spacing-md);
    max-width: 898px;
    margin-left: auto;
    margin-right: auto;
}

.awards-description-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin-bottom: 0;
}

/* Awards Grid */
.awards-grid {
    margin-top: var(--spacing-xl);
}

.award-box {
    /* background: transparent; */ /* No background - matches section background */
    /* border: 1px solid #e5e7eb; */ /* Light gray border */
    /* border-radius: var(--radius-sm); */
    /* padding: var(--spacing-lg); */
    /* text-align: center; */
    height: 100%;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.award-image-wrapper {
    width: 100%;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 200px; */
    border: 0px; /* Light border around image */
    border-radius: 0px;
    padding: 10px;
    box-shadow:0 0px 63px rgba(0, 0, 0, 0.08);
}

.award-image {
    max-width: 100%;
    /* max-height: 200px; */
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.award-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.award-name {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 22px; 
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
    text-align: center;
}

.award-category-label {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 22px; 
       margin-bottom: var(--spacing-xs);
    color: #333333; /* Dark gray to match screenshot */
    text-align: center;
}

.award-category {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 22px; 
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.award-year {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 22px;
    margin-bottom: 0;
    text-align: center;
}
.award-year-label{
    font-weight: var(--font-weight-bold);
}

/* ============================================
   Harshil Branches Content Section Styles
   ============================================ */

   .branches-content-section {
    padding: var(--spacing-3xl) 0 0;
    /* background: #faf6ee;  */
  }
  
  .branches-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }
  
  .branches-main-title {
      font-weight: var(--font-weight-medium);
      font-size: var(--font-size-3xl);
      color: var(--color-text-dark);
      text-align: center;
      margin-bottom: var(--spacing-md);
      letter-spacing: 1px;
  }
  
  .branches-subtitle {
        font-family: "Noto Serif", serif;
      font-weight: var(--font-weight-normal);
      font-size: var(--font-size-4xl);
      color: var(--color-text-dark);
      text-align: center;
      margin-bottom: var(--spacing-md);
      position: relative;
      letter-spacing: 0.5px;
  }
  
  .branches-subtitle-underline-text {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
  }
  
  .branches-subtitle-underline-text::after {
    content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 165px;
      height: 3px;
      background: #807e7e;
  }
  
  /* Branches Grid */
  .branches-grid {
    margin-top: var(--spacing-xl);
        max-width: 1200px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
  }
  
  .branch-box,.contact-us-box {
    background: transparent;
    border: 3px solid #ffffff; 
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    text-align: left;
    height: 100%;
    /* min-height: 200px; */
    transition: var(--transition-base);
  }
  .branch-box:hover , .contact-us-box:hover {
    border-color: #e5e7eb;
    transform: translateY(-2px);
  }
  .contact-us-box {
    margin-top: var(--spacing-xl);
    text-align: center;
  }
  .contact-us-box .branch-name-sub {
    /* font-family: "Roboto", sans-serif; */
    font-weight: var(--font-weight-bold);
    font-size: 16px; 
    
    margin: 4px auto;
    letter-spacing: 0.5px;
  }
  
  
  
  .branch-name {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 22px; 
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .branch-address {
    margin-bottom: 0;
  }
  
  .branch-address p {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 16px; 
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .branch-address p:last-child {
    margin-bottom: 0;
  }
  
  .branch-contact {
    margin-top: 0;
  }
  
  .branch-mobile,
  .branch-email {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    margin-bottom: 0;
    line-height: 1.6;
  }
  
  
  
  .upcoming-locations-section {
    padding: var(--spacing-xl) 0;
  }
  
  .upcoming-locations-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }
  
  .upcoming-locations-title {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
  }
  
  .upcoming-locations-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background:#807e7e;
}
   
   
  
  .upcoming-cities-list {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .cities-text {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin-bottom: 0;
  }
  
  .map-wrapper {
    width: 100%;
    margin-top: var(--spacing-xl);
    /* overflow: hidden; */
  }
  
  .map-hero-image {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    /* box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.5); */
   box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
    border: 6px solid var(--color-bg-whitedark);
    border-radius: var(--radius-sm);
  }

.i4ewOd-pzNkMb-haAclf {
    background-color: transparent!important;
    margin-top: -60px;
}
  /* .map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
  } */
  
  
  .customer-reviews-section {
    padding: var(--spacing-xl) 0;
  }
  
  .customer-reviews-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }
  
  .customer-reviews-title {
        font-family: "Noto Serif", serif;
      font-weight: var(--font-weight-normal);
      font-size: var(--font-size-4xl);
      color: var(--color-text-dark);
      text-align: center;
      margin-bottom: var(--spacing-md);
      position: relative;
      letter-spacing: 0.5px;
  }
  
  
  .customer-reviews-title{
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
  }
  
  .customer-reviews-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background:#807e7e;
}
    
  
  /* Reviews Grid */
  .reviews-grid {
    margin-top: var(--spacing-xl);
        max-width: 1200px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
  }
  
  .review-box {
    /* background: #ffffff;  */
    border: 3px solid #f4debc;
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: left;
    height: 100%;
    min-height: 120px;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .review-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .review-customer-name {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 28px; 
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .review-view-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    background: #f5f0e8; 
    /* padding: var(--spacing-sm) var(--spacing-md); */
    padding: 10px 10px;
    /* border-radius: var(--radius-sm); */
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    text-decoration: none;
    transition: var(--transition-base);
    margin-top: auto;
    color: #1f1f1f;
  }
  
  .review-view-more:hover {
    background: #e5e7eb;
    text-decoration: none;
  }
  
  .review-box:hover .view-more-arrow{
      rotate: 0deg;
       transition: var(--transition-base);
  }
  
  .google-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
  }
  
  /* .google-logo svg {
    width: 20px;
    height: 20px;
  } */
  
  .view-more-text {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-normal);
    font-size:  16px;
  }
  
  .view-more-arrow {
   width: 20px;
   height: 20px;
   rotate: 45deg;
  }
  
  /* ============================================
     Harshil - Associated Brands Content Section Styles
     ============================================ */
  
  .brands-content-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-whitedark);
  }
  
  .brands-title-wrapper {
    text-align: center;
    /* margin-bottom: var(--spacing-2xl); */
  }
  
  .brands-main-title {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
  }
  
  .brands-subtitle {
    font-family: "Noto Serif", serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-4xl);
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
  }
  
  .brands-subtitle-underline-text {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
  }
  
  .brands-subtitle-underline-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 38%;
    transform: translateX(-50%);
    width: 165px;
    height: 3px;
    background: #807e7e;
  }
  
  .brands-description {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
  }
  
  .brands-description-text {
    font-family: "Roboto", sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: center;
  }
  
  .brands-description-text:last-child {
    margin-bottom: 0;
  }
  
  .brands-grid {
    margin-top: 50px;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .brand-logo-box {
    background: transparent;
    border: 3px solid #ffffff;
    padding:20px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    transition: var(--transition-base);
  }
  
  .brand-logo-box:hover {
    border-color: #e5e7eb;
    transform: translateY(-2px);
  }
  
  .brand-logo-img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  .scale15-logo-h {
    scale: 1.3;
  }
  
  .scale-logo-h {
    scale: 1.8;
  }
  
  .scale1-logo-h {
    scale: 1.1;
  }
  
  .scale08-logo-h {
    scale: 1;
  }
  
  @media (max-width: 571px) {
    .scale05-logo-h {
      scale: 0.5;
    }
  }

/* ============================================
   Careers Content Section Styles
   ============================================ */

   .careers-content-section {
    padding: var(--spacing-3xl) 0;
}

.careers-title-wrapper {
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.careers-main-title {
    /* font-family: 'Noto Serif', serif; */
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    color: var(--text-color-dark); /* Dark gray */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0px;
}

.careers-subtitle {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
}

.careers-subtitle::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background: #807e7e;
}
 
 

.careers-intro {
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    text-align: center;
}

.careers-intro-text{
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin: 0;
}



.careers-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
  margin-top: 50px;
}

.careers-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-field {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    gap: var(--spacing-md);
}
.form-field.is-last {
    align-items: start;
}


.form-label {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    color: var(--text-color-dark);
    min-width: 180px;
    padding: 0px;
    margin: 0px;
    text-align: left;
    flex-shrink: 0;
}
.form-label.is-last {
    padding-top: var(--spacing-xs);
}
.iti__country{
    color: var(--text-color-dark);
}
.iti--separate-dial-code .iti__selected-dial-code{
    color: var(--text-color-dark);
    display: none;
}

.form-control {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-base);
    color: #333333;
    padding: var(--spacing-sm) var(--spacing-sm);
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    flex: 1;
    transition: var(--transition-base);
    background: #ffffff;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-sm) center;
    padding-right: var(--spacing-xl);
    cursor: pointer;
    background-size: 12px; 
}

select.form-control:not(.phone-code) {
    border: 1px solid #e5e7eb; /* Light gray for role dropdown */
}

.form-control:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

/* intl-tel-input Custom Styling */
.iti {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: start;
    gap: 20px;
}

.iti__flag-container {
    /* border: 1px solid #1e3a8a; */
    /* border-radius: var(--radius-sm) 0 0 var(--radius-sm); */
    /* border-right: none; */
    background: #f3f4f6;
}

.iti__selected-flag {
    /* padding: var(--spacing-sm) var(--spacing-sm); */
    outline: none;
}

.iti__selected-flag:hover {
    background-color: #e5e7eb;
}

.iti__arrow {
    border-top-color: #333333;
    margin-left: var(--spacing-xs);
}

.iti__country-list {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background-color: #f3f4f6;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: #fff !important;

}

/* Phone input field styling */
#phone {
    border: 1px solid #e5e7eb;
    /* border-left: none; */
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    flex: 1;
    margin-left: 55px;
    padding: var(--spacing-sm) var(--spacing-sm) !important;
}

#phone:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    outline: none;
}

/* File Input Wrapper */
.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.form-control-file {
    display: none;
}

.file-label {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    color: #333333;
    background: #e5e7eb;
    padding: var(--spacing-xs) var(--spacing-xs);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    border: 1px solid #8f8f8f;
    line-height: 1;
    margin-bottom: 0px;
}

.file-label:hover {
    background: #d1d5db;
}

.file-name {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-sm);
    color: #6b7280;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: 'Roboto', sans-serif;
}


/* Submit Button */
.form-submit-wrapper {
    text-align: center;
    /* margin-top: var(--spacing-xl); */
    display: flex;
}

.btn-submit {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    background: #dc2626; /* Red button */
    color: #ffffff;
    border: none;
    padding: var(--spacing-xs) var(--spacing-2xl);
    cursor: pointer;
    transition: var(--transition-base);
    width: calc(100% - 205px);
    margin-left: auto;
    border-radius: 0px;
}

.btn-submit:hover {
    background: var(--color-accent-light);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


/* About Us Section - New Design */
.about-us-section {
    padding: var(--spacing-3xl) 0 var(--spacing-xs);
    /* background: #FAF6EE; */ /* Light cream background */
}

.about-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.about-us-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-3xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-xs);
   

    letter-spacing: 0.5px;
}

.our-story-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
    position: relative;
}

.title-underline {
    width: 200px;
    height: 2px;
    background: #333333; /* Dark gray */
    margin: 0 auto;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}


















/* ============================================
   Leadership Section Styles
   ============================================ */

   .leadership-section {
    /* padding: var(--spacing-3xl) 0; */
      /* background: #FAF6EE; */ /* Light cream background */
  }
  
  .leadership-title-wrapper {
      text-align: center;
      margin-bottom: var(--spacing-lg);
      display: flex;
      flex-direction: column;
      gap: 16px;
  }
  
  .leadership-title {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
  }
  
  .leadership-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background: #807e7e;
}
  .leadership-item {
      margin-bottom: var(--spacing-3xl);
  }
  .w-98 p:nth-of-type(2) {
max-width: 98%;
}
.details-list{
    display: flex;
    flex-direction: column; 
}
.details-list  p{margin: 0px !important; }

.details-list p:first-of-type {
    font-weight: var(--font-weight-bold);
    
}

/* .leader-description > p:last-of-type {
max-width: 98%;   
} */
/* .leader-description p:nth-last-of-type(2) {
    max-width: 86%;  } */

  .leader-image-wrapper {
      width: 100%;
      height: auto;
      overflow: hidden;
      /* border-radius: var(--radius-md); */
      border: 0px solid #e5e7eb; /* Light gray border */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Box shadow */
      /* background: #ffffff; */
      padding: 6px;
  }
  
  .leader-image {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      /* border-radius: calc(var(--radius-md) - 2px); */
  }
  
  .leader-content {
      /* padding: var(--spacing-md) 0; */
      text-align: left;
  }
  
  .leader-content-right {
      text-align: right;
  }
  
  .leader-name {
      font-family: 'Roboto', sans-serif;
      font-weight: var(--font-weight-bold);
      font-size: var(--font-size-2xl);
      color: #333333; /* Dark gray */
      margin-bottom: 0px;
      line-height: 1.4;
  }
  
  .leader-title {
      font-family: 'Roboto', sans-serif;
      font-weight: var(--font-weight-normal);
      font-size: var(--font-size-base);
      color: var(--text-color-dark); /* Dark blue */
      margin-bottom: var(--spacing-md);
  }
  
  .leader-description {
      font-family: 'Roboto', sans-serif;
  }
  
  .leader-description p { 
      font-size: 16px;
      
  }
  
  .leader-content .leader-description p {
      text-align: left;
  }
  
  .leader-content-right .leader-description p {
      text-align: right;
  }
  
/* ============================================
   Why Choose Gallops Section Styles
   ============================================ */

   .why-choose-section {
    padding: 0 0 var(--spacing-lg);
    /* background: #FAF6EE; */ /* Light cream background */
}

.why-choose-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-title {
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
}

.why-choose-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background: #807e7e;
}
 
.feature-box {
    /* background: #FAF6EE; */ /* Light cream background matching section */
    border: 3px solid #ffffff; /* White border */
    border-radius: var(--radius-sm);
    padding: var(--spacing-xs) var(--spacing-md);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: var(--transition-base);
}

.feature-box:hover {
    border-color: #ffffff;
    background: #f5f0e3;
}

.feature-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    color: #333333; /* Dark gray */
    margin: 0;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
}

.leader-description p:last-child {
    margin-bottom: 0;
}

.heroSwiper {
    width: 100%;
    height:100%;
    min-height: 600px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons .btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: #fbbf24;
    color: #1e3a8a;
    border: 2px solid #fbbf24;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.4);
}

/* Swiper Pagination Styles */
/* Hover effect */
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background-color: rgba(50, 47, 145, 0.5);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

/* Pagination styling */
.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.3;
    background: #fff;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1);
}

.heroSwiper .swiper-container-horizontal > .swiper-pagination-bullets,
.heroSwiper .swiper-pagination {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* ============================================
   About Section Styles
   ============================================ */

.about-section {
    padding: 80px 25px;
    /* background: var(--color-bg-cream); */
}


.about-card {
    /* background: var(--color-bg-white); */
    /* border-radius: var(--radius-md); */
    box-shadow: var(--shadow-md);
    padding: 10px;
   
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.about-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    /* background: #f5f5f5; */
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.about-card:hover .about-card-image img {
    transform: scale(1.05);
}

.about-card-title {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: 30px; 
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: 0 var(--spacing-sm);
}

.btn-explore {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    background: var(--color-accent);
    color: var(--color-text-white);
    border: none;
    padding: var(--spacing-xs) var( --spacing-lg);
    border-radius: 0px;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin: 0 auto var(--spacing-lg);
    display: block;
    width: fit-content;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-explore:hover {
    background: var(--color-accent-light);
    color: var(--color-text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Section Styles
   ============================================ */

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   Footer Styles
   ============================================ */

.main-footer {
    background: var(--color-bg-white);
    color: var(--color-text-gray);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
    height: auto;
    width: 140px;
    object-fit: contain;
}

.footer-explore-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--color-text-gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-text-dark);
}

.footer-contact-info {
    margin-top: 0;
    text-align: right;
}

.contact-item {
    margin-bottom: var(--spacing-xs);
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-sm);
}

.contact-label {
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold); 
}

.contact-value-a {
    color: var(--color-text-gray)!important;
}

.contact-value-a:hover {
    color: var(--color-text-dark)!important;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: var(--spacing-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: var(--font-size-lg);
}

.social-icon:hover {
    color: var(--color-text-gray);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border-light);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.copyright {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.legal-link {
    font-family: 'Roboto', sans-serif;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.legal-link:hover {
    color: var(--color-text-gray);
    text-decoration: none !important;
}

.legal-separator {
    color: var(--color-text-light);
}

/* ============================================
   CTA Section Styles
   ============================================ */

.cta-section {
    padding: var(--spacing-3xl) 0;
    /* background: var(--color-bg-cream); */
}
.partner-categories {
    padding-top: 50px;
    padding-bottom: 80px;
}
.cta-banner-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner-image {
    width: 100%;
    position: relative;
}

.cta-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-overlay);
}










/* Our Brand Section Styles */


.partner-main-wrap {
    padding: 15px;
     
}

.hero-bm-heading {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
} 


.partner-bg {
    background-image: url('../images/cta-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* or 'contain' depending on your needs */
    background-position: center;
    position: relative;
}


.partner-main {
    padding: 60px;
    /* border: 1px solid var(--white); */
    width: 100%;
    display: flex;
        position: relative;
    z-index: 1;
    gap: 40px;
    flex-direction: column;
    align-items: center;
}

.partner-main-wrap {
    padding: 15px;
     
}
.partner-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

 .partner-gradiyant {
  background: linear-gradient(to top, #332f91 -25%, #fff2dd00 25%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
    bottom: 0;
  z-index: 0;
}

.partner-cn-wrap {
    width: 100%;
    max-width: 550px;
    display: flex;
    gap: 55px;
    text-align: center;
    flex-direction: column;
}






/* truatesd Section Styles */

.trusted-categories {
    /* padding: var(--spacing-3xl) 0; */
    background: var(--color-bg-whitedark);
}

.trusted-grid-wrap{
    display: flex;
    flex-direction: column;
    gap: 48px;
    
}
.trusted-grid {
    display: flex;
    align-items: center;
    gap:0px;
}

.trusted-content-box {
 max-width: 50%;
 width: 100%;
 display: flex;
 flex-direction: column;
 gap: 24px;
 text-align: center;
     justify-content: center;
}
.trusted-image-wrap{
    max-width: 50%;
    width: 100%;
   

}
.trusted-content-title{
    max-width: 300px;
    width: 100%;
     margin: 0 auto ;
}

.trusted-image-wrap img{
width:100%;
}


.trusted-description-second{
    max-width:705px;
}




/* ============================================
   Franchise Page Styles
   ============================================ */

/* Franchise Hero Section */

/* Franchise Introduction Section */

.why-franchise {
    margin-top: 60px;
}

.advantage-franchise {
    margin-top: var(--spacing-sm);
}

.franchise-intro-section {
    padding: var(--spacing-3xl) 0;
    background: #FAF6EE; /* Light cream background */
}

.franchise-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.franchise-main-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}
 
.franchise-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-3xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.franchise-tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
}

.franchise-intro-description {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.franchise-intro-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin: 0;
}
.fr-intro-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-xl);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    margin: 0;
}

.franchise-key-benefits {
    margin-top: var(--spacing-xl);
}

.key-benefit-box {
    background: #ffffff; /* White background */
    border: 1px solid #e5e7eb; /* Light gray border */
    border-radius: var(--radius-sm);
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-base);
}

.key-benefit-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.key-benefit-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: #333333; /* Dark gray */
    margin: 0;
    text-align: center;
}

/* Why Franchise with Gallops Section */
.why-franchise-section {
    padding: var(--spacing-3xl) 0;
    background: #FAF6EE; /* Light cream background */
}

.why-franchise-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.why-franchise-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.why-franchise-description {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.why-franchise-grid {
    margin-top: var(--spacing-sm);
}

.why-franchise-box {
    background: #ffffff; /* White background */
    border-radius: var(--radius-sm);
    padding: var(--spacing-lg);
    text-align: center;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.why-franchise-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-franchise-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    color: var(--color-text-dark); /* Dark gray */
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

/* The Gallops Advantage Section */
.gallops-advantage-section {
    /* padding: var(--spacing-xl) 0; */
}

.gallops-advantage-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.gallops-advantage-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: var(--color-text-dark); /* Dark gray */
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.gallops-advantage-description {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-xl);
    color: var(--color-text-dark); /* Dark gray */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.gallops-advantage-grid {
    margin-top: var(--spacing-lg);
}

.advantage-box {
    background: transparent; /* White background */
    border: 3px solid #ffffff;
    border-radius: var(--radius-sm);
    padding: 25px;    
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    gap: 16px;
}

 

.advantage-icon {
    width: 180px;
}
.advantage-icon img{
    width: 100%;
}
.advantage-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-regular);
    font-size:20px;
    color:#1f1f1f; /* Dark gray */
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Support We Provide Section */
.support-section {
    padding: var(--spacing-3xl) 0;
}

.support-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.support-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.support-description {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.support-grid {
    margin-top: var(--spacing-xl);
}

.support-box {    
    border: 3px solid #fff;
    border-radius: var(--radius-sm);
    padding: 10px;
    padding-right: 25px;
    text-align: left;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    transition: var(--transition-base);
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 80px;
    flex:none;
}
.support-icon  img{
    width: 100%;
    flex:none;
}
.support-text {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 22px;
    color: #5a3800;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

/* Franchise Requirements Section */
.franchise-requirements-section {
    padding: var(--spacing-3xl) 0;
    background: #FAF6EE; /* Light cream background */
}

.requirements-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.requirements-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.requirements-description {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.requirements-grid {
    margin-top: var(--spacing-xl);
}

.requirement-box {
    background: #ffffff; /* White background */ 
    border-radius: var(--radius-sm);
    padding: var(--spacing-lg);
    height: 100%;
    transition: var(--transition-base);
}

.requirement-box:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.requirement-heading {
    font-family: 'Noto Serif', serif;
    font-weight: var(--font-weight-bold);
    font-size: 36px; 
    margin-bottom: var(--spacing-md); 
    letter-spacing: 0.5px;
    text-align: center;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: 20px; 
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: var(--spacing-md);
    position: relative;
}

.requirement-list li:before {
    content: "•";
    color: #1f1f1f; /* Dark blue */
    font-weight: var(--font-weight-bold);
    position: absolute;
    left: 0;
}

.requirement-list li:last-child {
    margin-bottom: 0;
}
.requirement-divider{
    background-color: #fff7eb;
    height: 2px;
    width: 100%;
    margin-bottom: 20px;
}
/* How to Apply Section */
.how-to-apply-section {
 padding-bottom: 80px;
    background: #fff2dd; /* Light cream background */
}

.how-to-apply-title-wrapper {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.how-to-apply-title {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-4xl);
    color: #333333; /* Dark gray */
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

.how-to-apply-description {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    color: #333333; /* Dark gray */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.apply-steps {
   max-width: 1180px;
   margin: auto;
   padding-top: 25px;
   padding-bottom: 10px;
}

/* Franchise Form Styles */
.franchise-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff; /* White background */
    border: 1px solid #e5e7eb; /* Light gray border */
    border-radius: var(--radius-sm);
    padding: var(--spacing-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.franchise-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Footer links update for franchise */
.footer-links a[href="#franchise"] {
    color: var(--color-text-gray);
}

.about-wrapper{
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.center-heading,.about-description-wrapper{
    color: #1f1f1f;
    text-align: center;
}
.center-heading{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-sub-title::after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 2px;
    background:#807e7e;
}

.about-description{
    max-width: 880px;
    margin: 0 auto;
}
.about-main-title{
    font-size: 30px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    position: relative;
    color: #1f1f1f;
}
.about-sub-title{
    font-size: 36px;
    font-weight: 500;
    font-family: 'Noto Serif', serif;
    position: relative;
    color: #1f1f1f;
}
.trusted-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.trusted-description-wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 688px;
    margin: 0 auto;
}
.trusted-description{
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #1f1f1f; 
}


.cta-content{
    padding: 60px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.cta-content-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.cta-headline{
    font-size: 40px;
    font-weight: 500;
    font-family: 'Noto Serif', serif; 
    position: relative;
}
.cta-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;

        height: 2px;
        background: #807e7e;
   
    /* height: 4px;

    background: var(--color-secondary); */
}
.cta-subheadline{
    font-size: 22px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    position: relative;
}
.cta-description {
    max-width: 444px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}
.btn-cta {
    font-family: 'Roboto', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    background: var(--color-bg-whitedark);
    color: var(--color-text-dark);
    border: 2px solid var(--color-bg-cream-light);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-base);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.btn-cta:hover {
    background: #f0f0d0;
    color: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), var(--shadow-md);
}
.inner-hero-section{
margin-top: 115px;
}

section{
    padding-left: 25px;
    padding-right: 25px;
}
.hero-section,.inner-hero-section{
    padding: 0;
}
.about-description-wrapper{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.leader-description{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-control {
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
    min-height: 45px;
}
.step-box{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
.step-number{
    font-size: 22px;
    font-weight: 700;
}
.step-text{
    font-size: 20px;
    max-width: 300px;
    margin: auto;
    padding-top: 10px;
}
.step-divider{
    height: 3px;
    background-color: #f2d29f;
    width: 200px;
    margin: auto;
}
.trusted-categories{
    padding-right: 0;
    padding-left: 0;
}