/* Color Variables & Theme Reset */
:root {
  --primary-red: #7a0000;
  --dark-red: #500000;
  --gold-border: #d4af37;
  --bright-gold: #ffdf7a;
  --bg-cream: #fdf8ed;
  --card-bg: #fffef8;
  --text-dark: #333333;
}

body {
  background-color: var(--bg-cream);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

/* Wrapper */
.franchise-page-wrapper {
  max-width: 1280px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Common Section Box */
.section-card {
  background: linear-gradient(135deg, #fffcf3 0%, #fff6e5 100%);
  border: 3px solid var(--gold-border);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Section Main Titles & Badges */
.section-banner-header {
  text-align: center;
  margin-bottom: 25px;
}

.section-banner-header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--primary-red);
  font-weight: 800;
  letter-spacing: 1px;
}

.badge-title {
  background: var(--primary-red);
  color: #ffffff;
  display: inline-block;
  padding: 8px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  border: 2px solid var(--gold-border);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.center-badge {
  text-align: center;
}

.full-width-title {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Cinzel', serif;
}

/* Operations Grid */
.ops-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 25px;
  align-items: center;
}

.ops-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ops-item {
  background: #ffffff;
  border: 2px solid #e2cf9d;
  border-radius: 30px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.ops-item:hover {
  transform: translateX(5px);
  border-color: var(--gold-border);
}

.num-badge {
  background: var(--primary-red);
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
}

.ops-item p {
  flex-grow: 1;
  margin: 0 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.ops-icon {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.arrow-icon {
  color: #aaa;
  margin-left: 10px;
  font-size: 0.8rem;
}

/* Slider Frame Styling */
.image-slider-frame, .curved-image-frame {
  position: relative;
  border: 4px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide-img.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(122, 0, 0, 0.8);
  color: #fff;
  border: 2px solid var(--gold-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--primary-red);
}

.dot.active {
  background: var(--bright-gold);
}

/* Training Section */
.training-container {
  margin-top: 35px;
  text-align: center;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.training-card {
  background: #ffffff;
  border: 2px solid #e0c896;
  border-radius: 15px;
  padding: 15px 10px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.step-num {
  position: absolute;
  top: 8px;
  left: 10px;
  background: #fff;
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

.t-icon-box {
  background: var(--primary-red);
  color: var(--bright-gold);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 15px auto 10px;
}

.training-card p {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Section 2: Mergers & Acquisitions */
.mergers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.main-red-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--primary-red);
  font-weight: 800;
  margin-bottom: 5px;
}

.sub-lead-text {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #444;
}

.info-block {
  margin-bottom: 20px;
}

.block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.round-icon {
  background: var(--primary-red);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.block-header h3 {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 700;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.bullet-list li i {
  color: var(--primary-red);
  margin-top: 3px;
}

.block-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}

/* Section 3: Leaders Section */
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.leader-card {
  background: #ffffff;
  border: 2px solid #e0c896;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.profile-img-box {
  width: 113px;
  height: 185px;
  border-radius: 50%;
  border: 5px solid var(--gold-border);
  overflow: hidden;
  flex-shrink: 0;
}

.profile-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-header-bar {
  background: var(--primary-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.leader-header-bar h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.leader-header-bar small {
  font-size: 0.75rem;
  opacity: 0.9;
}

.center-connector-badge {
  background: var(--primary-red);
  color: var(--bright-gold);
  border: 2px solid var(--gold-border);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Design & Concept */
.design-concept-box {
  margin-top: 30px;
}

.design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.design-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTION 5: OUR STORY STRIP */
.our-story-strip {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  border: 3px solid var(--gold-border);
}

.story-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--bright-gold);
}

.story-badge h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
}

.story-left p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.95;
}

.story-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  text-align: center;
}

.feature-item {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding: 0 8px;
}

.f-icon {
  background: rgba(255,255,255,0.1);
  color: var(--bright-gold);
  border: 1px solid var(--gold-border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 8px;
}

.feature-item h4 {
  font-size: 0.8rem;
  color: var(--bright-gold);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ops-main-grid, .mergers-grid, .design-grid, .our-story-strip {
    grid-template-columns: 1fr;
  }
  
  .training-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leaders-grid {
    grid-template-columns: 1fr;
  }

  .center-connector-badge {
    margin: 0 auto;
  }
  
  .story-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .training-grid, .story-features {
    grid-template-columns: repeat(1, 1fr);
  }

  .design-gallery-grid {
    grid-template-columns: 1fr;
  }
}













/* --- SOCIAL FOLLOW CONTAINER --- */
.social-follow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left align rakhne ke liye, center chahiye to center likhein */
    /* gap: 8px; */
    font-family: 'Poppins', sans-serif; /* Ya aapka jo bhi main font ho */
}

/* "Follow Us" Text Style */
.follow-text-heading {
    /* font-size: 1.1rem;
    font-weight: 200;
    color: #333333; 
    letter-spacing: 0.5px;
    margin: 0; */
        color: #666;
    font-size: 0.75rem;

}

/* Icons ki Row */
.social-icons-wrapper {
    display: flex;
    gap: 8px; /* Icons ke beech ka gap */
    align-items: center;
}

/* Individual Icon Button Style */
.social-icon-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #f5f5f5; /* Light grey background */
    color: #555555; /* Default icon color */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --- HOVER EFFECTS (Social Media Brands Colors) --- */
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon-btn.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
    transform: translateY(-3px);
}
