/* ==========================================================================
   ARPINOX - ABOUT US (PREMIUM PROFESSIONAL EDITION)
   Ultra Modern | Clean | Responsive | Professional
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= ROOT VARIABLES ================= */
:root {
  --primary-green: #1a5632;
  --secondary-green: #2e8b57;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8962c;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-light: #777777;
  --bg-white: #ffffff;
  --bg-light: #f9fbf9;
  --bg-section: #f5f9f5;
  --border-light: #e5e5e5;
  --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= GLOBAL STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a { 
  text-decoration: none; 
  color: inherit;
  transition: var(--transition); 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* ================= 1. PAGE BANNER (PROFESSIONAL LARGE) ================= */
.page-banner {
  position: relative;
  width: 100%;
  height: 200px; /* Larger professional height */
  background: url("img/img/bnner.png") center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

/* Professional Gradient Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 50, 0.92) 0%,
    rgba(10, 40, 25, 0.88) 50%,
    rgba(26, 86, 50, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}

/* Professional Banner Content */
.banner-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.banner-title {
  font-size: clamp(36px, 5vw, 56px); /* Responsive sizing */
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-shadow: 
    2px 4px 8px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

/* Gold accent line under title */
.banner-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  margin: 20px auto;
  border-radius: 2px;
}

.banner-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
  margin: 0 auto 35px;
  font-weight: 400;
  line-height: 1.7;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.banner-breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.banner-breadcrumb:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.banner-breadcrumb a { 
  color: #fff; 
  font-weight: 500;
  transition: var(--transition);
}

.banner-breadcrumb a:hover { 
  color: var(--accent-gold); 
}

.banner-breadcrumb .active { 
  color: var(--accent-gold); 
  font-weight: 600; 
}

.banner-breadcrumb span { 
  opacity: 0.7; 
}

/* Professional Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Parallax Effect */
@supports (background-attachment: fixed) {
  .page-banner {
    background-attachment: fixed;
  }
}

/* ================= 2. QUALITY CRAFT SECTION (ENHANCED) ================= */
.quality-craft-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
  position: relative;
}

.quality-craft-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.row { 
  display: flex; 
  flex-wrap: wrap; 
  margin: 0 -15px; 
  align-items: center;
}

.col-lg-4, .col-lg-5, .col-lg-3 { 
  padding: 0 15px; 
  width: 100%; 
}

@media(min-width: 992px) {
  .col-lg-4 { width: 33.33%; }
  .col-lg-5 { width: 41.66%; }
  .col-lg-3 { width: 25%; }
}

/* Professional Section Heading */
.quality-heading { 
  text-align: center; 
  margin-bottom: 70px; 
  position: relative;
}

.quality-heading h6 {
  color: var(--secondary-green);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(46, 139, 87, 0.1);
  border-radius: 30px;
  margin-bottom: 15px;
}

.quality-heading h2 { 
  font-size: clamp(32px, 4vw, 42px);
  color: var(--primary-green); 
  font-weight: 800;
  position: relative;
  padding-bottom: 20px;
}

.quality-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 2px;
}

/* Professional Image Layout */
.quality-left { 
  min-height: 450px; 
  position: relative; 
  display: flex; 
  align-items: center; 
}

.card-hand { 
  position: relative; 
  width: 100%; 
  height: 420px; 
}

.hand-card {
  position: absolute;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: var(--transition);
  border: 5px solid var(--bg-white);
}

.front-card { 
  top: 50px; 
  left: 50px; 
  width: 80%; 
  z-index: 2; 
}

.back-card { 
  top: 0; 
  left: 0; 
  width: 70%; 
  z-index: 1; 
  opacity: 0.95; 
}

.hand-card:hover { 
  transform: translateY(-10px) scale(1.02); 
  box-shadow: var(--shadow-xl);
  z-index: 3; 
}

/* Content Styling */
.quality-content { 
  padding: 40px; 
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.quality-content h4 { 
  font-size: 28px; 
  color: var(--primary-green); 
  margin-bottom: 20px; 
  font-weight: 700;
  position: relative;
}

.quality-content h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.quality-content p { 
  font-size: 16px; 
  color: var(--text-body); 
  line-height: 1.8; 
  margin-bottom: 0; 
}

.right-small-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--bg-white);
  transition: var(--transition);
}

.right-small-img:hover { 
  transform: scale(1.05) rotate(1deg); 
  box-shadow: var(--shadow-xl);
}

/* ================= 3. EXCELLENCE SECTION (PREMIUM) ================= */
.arpinox-quality-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg, 
    rgba(245, 253, 248, 1) 0%, 
    rgba(240, 253, 244, 0.8) 50%,
    rgba(245, 253, 248, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.arpinox-quality-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.arpinox-quality-section .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.main-title {
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.sub-title {
  font-size: clamp(24px, 3vw, 32px);
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0 30px;
  font-weight: 700;
}

.arpinox-quality-section .description {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.btn-quality {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(26, 86, 50, 0.25);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-quality::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-quality:hover::before {
  left: 0;
}

.btn-quality:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 86, 50, 0.35);
  color: #fff;
}

/* ================= 4. OUR PROMISE (PREMIUM CARDS) ================= */
.our-promise-section {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
}

.promise-heading {
  text-align: center;
  margin-bottom: 60px;
}

.promise-heading h2 {
  font-size: clamp(32px, 4vw, 42px);
  color: var(--primary-green);
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.promise-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 2px;
}

.promise-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.promise-box {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.promise-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.promise-box:hover::before {
  transform: scaleX(1);
}

.promise-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.promise-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(46, 139, 87, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.promise-box:hover .promise-icon {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  transform: scale(1.1) rotate(5deg);
}

.promise-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.4s;
}

.promise-box:hover .promise-icon img {
  filter: brightness(0) invert(1);
}

.promise-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.promise-box p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ================= 5. GET TO KNOW US (INTERACTIVE) ================= */
.know-us-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.know-us-section .section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 42px);
  color: var(--primary-green);
  margin-bottom: 60px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  width: 100%;
}

.know-us-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 2px;
}

.rows-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--secondary-green);
  transition: var(--transition);
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.row-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: left 0.6s ease;
}

.row-card:hover::before {
  left: 100%;
}

.row-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--accent-gold);
}

.col-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  min-width: 180px;
}

.col-content {
  flex: 1;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Professional Explore Buttons */
.col-button {
  min-width: 150px;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(26, 86, 50, 0.2);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.explore-btn:hover::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.explore-btn:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.explore-btn .arrow {
  transition: transform 0.3s;
  font-size: 16px;
}

.explore-btn:hover .arrow {
  transform: translateX(5px);
}

/* ================= 6. MAKE IN INDIA (MODERN) ================= */
.section-make-india {
  padding: 100px 0;
  background: var(--bg-white);
}

.make-india-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--bg-white);
}

.make-india-left {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.make-india-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.make-india-wrapper:hover .make-india-img { 
  transform: scale(1.1); 
}

.make-india-right {
  padding: 60px;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.make-india-title {
  color: var(--primary-green);
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.3;
}

.make-india-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  margin-top: 20px;
  border-radius: 2px;
}

.make-india-desc {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
}

/* ================= 7. CATALOGUE SECTION (PREMIUM) ================= */
.catalogue-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-section) 100%);
  position: relative;
}

.catalogue-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 50px;
  background: var(--bg-white);
  border-radius: 25px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.catalogue-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.catalogue-container:hover::before {
  opacity: 0.1;
}

.catalogue-heading { 
  font-size: clamp(28px, 3.5vw, 36px);
  color: var(--primary-green); 
  margin-bottom: 20px;
  font-weight: 800; 
}

.catalogue-text { 
  color: var(--text-body); 
  margin-bottom: 35px; 
  font-size: 16px;
  line-height: 1.8; 
}

.download-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.download-btn:hover::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.download-btn .arrow { 
  font-size: 18px; 
  transition: transform 0.3s; 
}

.download-btn:hover .arrow { 
  transform: translateX(5px) scale(1.1); 
}

/* ================= MOBILE RESPONSIVE (COMPLETE FIX) ================= */

/* Tablet View */
@media (max-width: 992px) {
  .page-banner { 
    height: 500px; 
  }
  
  .banner-title { 
    font-size: 42px; 
  }
  
  .banner-subtitle { 
    font-size: 18px; 
  }
  
  .quality-heading h2 {
    font-size: 36px;
  }
  
  .main-title {
    font-size: 40px;
  }
  
  .make-india-wrapper {
    grid-template-columns: 1fr;
  }
  
  .make-india-left {
    min-height: 350px;
  }
  
  .make-india-right {
    padding: 45px;
  }
  
  .promise-boxes {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile View - COMPLETE FIX */
@media (max-width: 768px) {
  /* Banner Mobile Fix */
  .page-banner { 
    height: 450px;
    margin-top: 0;
    padding-top: 70px;
    background-attachment: scroll;
  }
  
  .banner-overlay {
    padding: 30px 15px;
    background: linear-gradient(
      135deg,
      rgba(26, 86, 50, 0.95) 0%,
      rgba(10, 40, 25, 0.92) 100%
    );
  }
  
  /* ENSURE ALL TEXT IS VISIBLE ON MOBILE */
  .banner-content,
  .banner-title,
  .banner-subtitle,
  .banner-breadcrumb {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .banner-title {
    font-size: 32px !important;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff !important;
    text-shadow: 
      2px 2px 6px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
  }
  
  .banner-title::after {
    width: 60px;
    height: 3px;
    margin: 15px auto;
  }
  
  .banner-subtitle {
    font-size: 16px !important;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .banner-breadcrumb {
    font-size: 12px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  /* Sections Mobile */
  .quality-craft-section,
  .arpinox-quality-section,
  .our-promise-section,
  .know-us-section,
  .section-make-india,
  .catalogue-section {
    padding: 60px 0;
  }
  
  /* Quality Section Mobile */
  .quality-heading h2 {
    font-size: 28px;
  }
  
  .quality-heading {
    margin-bottom: 40px;
  }
  
  .quality-left {
    min-height: auto;
    margin-bottom: 40px;
  }
  
  .card-hand {
    height: 300px;
  }
  
  .hand-card {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 20px;
    top: 0 !important;
    left: 0 !important;
  }
  
  .back-card {
    display: none;
  }
  
  .quality-content {
    padding: 25px;
    margin-top: 30px;
  }
  
  .quality-content h4 {
    font-size: 24px;
  }
  
  .right-small-img {
    margin-top: 20px;
  }
  
  /* Excellence Section Mobile */
  .main-title {
    font-size: 32px;
  }
  
  .sub-title {
    font-size: 24px;
  }
  
  .arpinox-quality-section .description {
    font-size: 15px;
  }
  
  .btn-quality {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  /* Promise Section Mobile */
  .promise-heading h2 {
    font-size: 28px;
  }
  
  .promise-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promise-box {
    padding: 30px 20px;
  }
  
  .promise-icon {
    width: 70px;
    height: 70px;
  }
  
  /* Know Us Mobile */
  .know-us-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .row-card {
    flex-direction: column;
    padding: 25px 20px;
    gap: 15px;
    align-items: flex-start;
  }
  
  .col-heading {
    font-size: 18px;
    min-width: 100%;
    margin-bottom: 10px;
  }
  
  .col-content {
    font-size: 14px;
    min-width: 100%;
    margin-bottom: 15px;
  }
  
  .col-button {
    width: 100%;
    min-width: 100%;
  }
  
  .explore-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 13px;
    justify-content: center;
  }
  
  /* Make in India Mobile */
  .make-india-left {
    min-height: 250px;
  }
  
  .make-india-right {
    padding: 35px 25px;
  }
  
  .make-india-title {
    font-size: 26px;
  }
  
  .make-india-desc {
    font-size: 14px;
  }
  
  /* Catalogue Mobile */
  .catalogue-container {
    padding: 40px 25px;
  }
  
  .catalogue-heading {
    font-size: 26px;
  }
  
  .catalogue-text {
    font-size: 14px;
  }
  
  .download-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .page-banner {
    height: 400px;
    padding-top: 60px;
  }
  
  .banner-title {
    font-size: 28px !important;
    letter-spacing: 0.5px;
  }
  
  .banner-subtitle {
    font-size: 14px !important;
  }
  
  .banner-breadcrumb {
    font-size: 11px;
    padding: 8px 16px;
  }
  
  .quality-heading h2,
  .promise-heading h2,
  .know-us-section .section-title {
    font-size: 24px;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .sub-title {
    font-size: 20px;
  }
  
  .quality-content h4 {
    font-size: 20px;
  }
  
  .quality-content p {
    font-size: 14px;
  }
  
  .make-india-title {
    font-size: 22px;
  }
  
  .catalogue-heading {
    font-size: 22px;
  }
  
  .explore-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
  
  .btn-quality,
  .download-btn {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/* iOS Safari Fix */
@supports (-webkit-touch-callout: none) {
  .banner-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .banner-title,
  .banner-subtitle,
  .banner-breadcrumb {
    -webkit-transform: translateZ(1px);
    transform: translateZ(1px);
    -webkit-font-smoothing: antialiased;
  }
}

/* Ensure text is always visible */
@media (max-width: 768px) {
  .page-banner * {
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
  }
}

/* Loading State */
.loading {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Style */
::selection {
  background: var(--accent-gold);
  color: white;
}

::-moz-selection {
  background: var(--accent-gold);
  color: white;
}




@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= ROOT VARIABLES ================= */
:root {
  --primary-green: #1a5632;
  --secondary-green: #2e8b57;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b8962c;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-light: #777777;
  --bg-white: #ffffff;
  --bg-light: #f9fbf9;
  --bg-section: #f5f9f5;
  --border-light: #e5e5e5;
  --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================= GLOBAL STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-size: 15px; /* Standard professional size */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a { 
  text-decoration: none; 
  color: inherit;
  transition: var(--transition); 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* ================= UPDATED PROFESSIONAL BANNER ================= */

.page-banner {
  position: relative;
  height: 100px; /* Reduced height */
  background: url("img/img/bnner.png") center/cover no-repeat;
  background-attachment: fixed;
  margin-top: 0;          /* Navbar overlap remove */
  padding-top: 90px;      /* Navbar height adjust */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,86,50,0.88) 0%,
    rgba(10,40,25,0.75) 60%,
    rgba(10,40,25,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* Text slightly bottom */
  align-items: center;
  text-align: center;
  padding-bottom: 70px;        /* Bottom spacing */
}

/* Content */
.banner-content {
  max-width: 850px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

/* Title */
.banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.banner-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  margin: 15px auto;
}

/* Subtitle */
.banner-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Breadcrumb */
.banner-breadcrumb {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {
  .page-banner {
    height: 380px;
    background-attachment: scroll;
  }

  .banner-title {
    font-size: 30px;
  }

  .banner-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 340px;
    padding-top: 80px;   /* Navbar safe */
  }

  .banner-overlay {
    padding-bottom: 55px;
  }

  .banner-title {
    font-size: 26px;
  }

  .banner-subtitle {
    font-size: 14px;
  }

  .banner-breadcrumb {
    font-size: 12px;
    padding: 7px 16px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 300px;
  }

  .banner-title {
    font-size: 22px;
  }

  .banner-subtitle {
    font-size: 13px;
  }
}

/* Gold accent line under title */
.banner-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  margin: 18px auto;
  border-radius: 2px;
}

.banner-subtitle {
  font-size: 17px; /* Standard size */
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto 30px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.banner-breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.banner-breadcrumb:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.banner-breadcrumb a { 
  color: #fff; 
  font-weight: 500;
  transition: var(--transition);
}

.banner-breadcrumb a:hover { 
  color: var(--accent-gold); 
}

.banner-breadcrumb .active { 
  color: var(--accent-gold); 
  font-weight: 600; 
}

.banner-breadcrumb span { 
  opacity: 0.7; 
}

/* Professional Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= 3. EXCELLENCE SECTION (ULTRA PREMIUM) ================= */
.arpinox-quality-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fef9 50%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

/* Premium Background Pattern */
.arpinox-quality-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.arpinox-quality-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at center, rgba(46, 139, 87, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.arpinox-quality-section .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Professional Typography */
.main-title {
  font-size: 36px; /* Reduced for professional look */
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

/* Animated underline */
.main-title::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  transition: width 0.6s ease;
}

.arpinox-quality-section:hover .main-title::before {
  width: 100px;
}

.sub-title {
  font-size: 24px; /* Smaller, more elegant */
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 18px 0 25px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

/* Professional description */
.arpinox-quality-section .description {
  font-size: 15px; /* Standard professional size */
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Premium CTA Button */
.btn-quality {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(26, 86, 50, 0.25);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.btn-quality::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 300%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-quality:hover::before {
  width: 300%;
}

.btn-quality:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 86, 50, 0.35);
  color: #fff;
  border-color: var(--accent-gold);
}

/* Quality badges */
.quality-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.quality-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.quality-badge-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
  font-size: 24px;
  color: var(--accent-gold);
}

.quality-badge:hover .quality-badge-icon {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  transform: scale(1.1) rotate(10deg);
  color: white;
}

.quality-badge-text {
  font-size: 13px;
  color: var(--text-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================= 7. CATALOGUE SECTION (ULTRA UNIQUE) ================= */
.catalogue-section {
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    #f5f9f5 0%,
    #ffffff 25%,
    #f9fbf9 75%,
    #f5f9f5 100%
  );
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.catalogue-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.catalogue-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Premium Container with Glass Effect */
.catalogue-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Gradient Border Animation */
.catalogue-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    var(--accent-gold),
    var(--primary-green),
    var(--accent-gold-dark),
    var(--secondary-green),
    var(--accent-gold)
  );
  background-size: 300% 300%;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.catalogue-container:hover::before {
  opacity: 0.7;
}

/* Icon at top */
.catalogue-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
  position: relative;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.catalogue-icon::before {
  content: '📚';
  font-size: 36px;
  filter: brightness(0) invert(1);
}

/* Professional Typography */
.catalogue-heading { 
  font-size: 32px; /* Smaller, professional */
  color: var(--primary-green); 
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.catalogue-text { 
  color: var(--text-body); 
  margin-bottom: 35px; 
  font-size: 15px;
  line-height: 1.8;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Ultra Premium Download Button */
.download-btn-wrapper {
  position: relative;
  display: inline-block;
}

.download-btn {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: #fff;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.download-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.download-btn:hover::before {
  animation: shine 0.6s ease;
  opacity: 1;
}

@keyframes shine {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

.download-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(212, 175, 55, 0.4),
    inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.download-btn .arrow { 
  font-size: 18px; 
  transition: transform 0.3s;
  display: inline-block;
}

.download-btn:hover .arrow { 
  transform: translateX(5px) scale(1.2);
  animation: arrowBounce 0.6s ease;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Download stats */
.download-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.download-stat {
  text-align: center;
}

.download-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.download-stat-label {
  font-size: 12px;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================= MOBILE RESPONSIVE ================= */

/* Tablet View */
@media (max-width: 992px) {
  .page-banner { 
    height: 450px; 
  }
  
  .banner-title { 
    font-size: 36px; 
  }
  
  .banner-subtitle { 
    font-size: 16px; 
  }
  
  .main-title {
    font-size: 32px;
  }
  
  .sub-title {
    font-size: 22px;
  }
  
  .catalogue-heading {
    font-size: 28px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  /* Banner Mobile Fix */
  .page-banner { 
    height: 400px;
    margin-top: 0;
    padding-top: 70px;
    background-attachment: scroll;
  }
  
  .banner-overlay {
    padding: 30px 15px;
  }
  
  .banner-title {
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
  }
  
  .banner-title::after {
    width: 60px;
    height: 2px;
    margin: 15px auto;
  }
  
  .banner-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .banner-breadcrumb {
    font-size: 12px;
    padding: 8px 18px;
  }
  
  /* Excellence Section Mobile */
  .arpinox-quality-section {
    padding: 60px 0;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .sub-title {
    font-size: 20px;
  }
  
  .arpinox-quality-section .description {
    font-size: 14px;
  }
  
  .btn-quality {
    padding: 12px 30px;
    font-size: 13px;
  }
  
  .quality-badges {
    gap: 25px;
  }
  
  .quality-badge-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  /* Catalogue Section Mobile */
  .catalogue-section {
    padding: 60px 15px;
  }
  
  .catalogue-container {
    padding: 40px 25px;
  }
  
  .catalogue-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .catalogue-icon::before {
    font-size: 28px;
  }
  
  .catalogue-heading {
    font-size: 26px;
  }
  
  .catalogue-text {
    font-size: 14px;
  }
  
  .download-btn {
    padding: 14px 32px;
    font-size: 13px;
  }
  
  .download-stats {
    gap: 25px;
  }
  
  .download-stat-number {
    font-size: 20px;
  }
  
  .download-stat-label {
    font-size: 11px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .page-banner {
    height: 350px;
    padding-top: 60px;
  }
  
  .banner-title {
    font-size: 26px;
  }
  
  .banner-subtitle {
    font-size: 14px;
  }
  
  .banner-breadcrumb {
    font-size: 11px;
    padding: 7px 15px;
  }
  
  .main-title {
    font-size: 24px;
  }
  
  .sub-title {
    font-size: 18px;
  }
  
  .catalogue-heading {
    font-size: 22px;
  }
  
  .download-btn {
    padding: 12px 28px;
    font-size: 12px;
  }
}
/* ==========================================================================
   FINAL ATTEMPT - TEXT LOWERED & FONT REDUCED (PROFESSIONAL)
   ========================================================================== */

.page-banner {
  position: relative;
  height: 70vh;
  min-height: 450px;
  background: url("img/img/bnner.png") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
  

  /* 🔥 SAGLYAT MAHATVACHA BADAL ITHE AHE! */
  display: flex;
  /* align-items: center; REMOVED! - Aapan text la perfect center la नाही thevnar. */
  justify-content: center; /* Content la horizontally center thevto */
  align-items: flex-end;   /* 🔥 NEW: Content la direct khali gheun yeto */
}

/* Overlay madhe kahi badal nahi */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 86, 50, 0.9) 0%,
    rgba(10, 40, 25, 0.85) 100%
  );
  z-index: 2;
}

/* Content wrapper */
.banner-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  animation: fadeInUp 1s ease-out;

  /* 🔥 NEW: Hych mule text thoda var sarkel (agdi khali chipkun basnar nahi) */
  /* Jast khali vatalyas 10vh chya jagi 8vh karun bagha */
 padding-bottom: 5vh; 
}

/* 🔥 Title (Font size ajun kami keli ahe) */
/* Tumchya CSS file madhe he don block shodha aani replace kara */

/* 🔥 Title (Font size ajun kami keli ahe) */
.banner-title {
  /* Screen size pramane font size adjust hoil */
  font-size: clamp(28px, 3.5vw, 36px); /* Pahile 40px hoti, aata 36px max */
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  line-height: 1.25;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.35);
}

/* 🔥 Subtitle (Font size ajun kami keli ahe) */
.banner-subtitle {
  font-size: clamp(14px, 1.6vw, 16px); /* Pahile 17px hoti, aata 16px max */
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 25px auto 35px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
  margin: 18px auto 0;
  border-radius: 2px;
}



/* Breadcrumb - No changes */
.banner-breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 11px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Animation - No changes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}