/* Sizes Section Styles */
.sizes-section {
  margin: 2.5rem 0 2rem 0;
  background: linear-gradient(90deg, #fff7e6 0%, #ffe0b2 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(201,92,0,0.08);
  padding: 2rem 1rem;
}
.sizes-section h3 {
  font-size: 2.2rem;
  color: #c95c00;
  margin-bottom: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  background: linear-gradient(90deg, #ff9800 0%, #c95c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sizes-flex {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.size-card {
  background: linear-gradient(120deg, #fff7e6 60%, #ffe0b2 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(201,92,0,0.13);
  padding: 2.2rem 1.7rem;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 260px;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.size-card::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, #ff9800 0%, transparent 70%);
  opacity: 0.12;
  z-index: 0;
}
.size-card:hover {
  box-shadow: 0 12px 40px rgba(201,92,0,0.18);
  transform: translateY(-6px) scale(1.03);
}
.size-card h4 {
  color: #ff9800;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.size-card ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  position: relative;
  z-index: 1;
}
.size-card li {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
}
.size-card li::before {
  content: '\2022';
  color: #ff9800;
  font-size: 1.3em;
  font-weight: bold;
  margin-right: 0.5em;
  line-height: 1;
}
@media (max-width: 700px) {
  .sizes-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .size-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 1rem;
  }
  .sizes-section h3 {
    font-size: 1.4rem;
  }
}

/* Enhanced Why Choose Us Styles */
.about-section ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2.5rem 0;
  padding: 0;
}
.about-section ul li {
  background: linear-gradient(90deg, #e0f7fa 0%, #fffde7 100%);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,17,88,0.07);
  padding: 1.3rem 1.1rem;
  font-size: 1.08rem;
  color: #0a1158;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.7em;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.about-section ul li::before {
  content: '\2714';
  color: #ff9800;
  font-size: 1.2em;
  font-weight: bold;
  margin-right: 0.6em;
  line-height: 1;
}
.about-section ul li:hover {
  box-shadow: 0 8px 32px rgba(10,17,88,0.13);
  transform: translateY(-4px) scale(1.03);
}
/* --- FOOTER (Synced with Gallery) --- */
.main-footer {
  background: var(--primary);
  color: var(--white);
  padding: 6rem 0 3rem;
  border-radius: 60px 60px 0 0;
  margin-top: 4rem;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.footer-links a:hover { color: var(--accent); transform: translateX(5px); }

.footer-contact p { margin-bottom: 0.5rem; font-size: 0.95rem; line-height: 1.8; }
.footer-contact strong { color: var(--accent); display: block; margin-bottom: 0.3rem; }

.footer-copy {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.863);
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 2px;
}
.footer-flex { flex-wrap: wrap; gap: 1.5rem; }
.footer-contact, .footer-links { min-width: 180px; }
/* story.css - Madhura Cauvery Borewell 
   Comprehensive Styles: Grid Layouts, Process Lists, & Corrected Mobile Dropdown
*/

:root {
  --primary: #0a1158;
  --primary-light: #1e299a;
  --accent: #ffb300;
  --accent-glow: rgba(255, 179, 0, 0.4);
  --bg: #f8fafc;
  --white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #475569;
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(10, 17, 88, 0.12);
}

/* --- GLOBAL RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.8;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 179, 0, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(10, 17, 88, 0.05) 0px, transparent 50%);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- HEADER & DESKTOP NAVIGATION --- */
.main-header {
  background: #0a1158; /* Solid background to prevent ghosting through text */
  backdrop-filter: blur(12px);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 2000; /* Stays on top of everything */
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.main-nav {
  display: flex; 
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  margin-left: 1.8rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover { opacity: 1; color: var(--accent); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.main-nav a:hover::after { width: 100%; }

/* Hide Mobile Elements on Desktop */
.mobile-menu-icon, .mobile-nav {
  display: none; 
}

/* --- SECTION CONTENT --- */
section {
  padding: 5rem 0;
  background: transparent;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  background: var(--accent);
  margin: 15px auto 0;
  border-radius: 10px;
}

h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 3.5rem 0 1.5rem;
}

p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* --- GRID LISTS (Expertise & Values) --- */
.expertise-list, .value-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expertise-list li, .value-list li {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--accent);
  transition: var(--transition);
}

.expertise-list li:hover, .value-list li:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary);
}

/* --- PROCESS STEP LIST --- */
.process-list {
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.process-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(10, 17, 88, 0.2);
}

/* --- FOOTER --- */
.main-footer {
  background: var(--primary);
  color: var(--white);
  padding: 6rem 0 3rem;
  border-radius: 60px 60px 0 0;
  margin-top: 4rem;
}

.footer-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.footer-links a:hover { color: var(--accent); transform: translateX(5px); }
.footer-contact strong { color: var(--accent); display: block; margin-bottom: 0.5rem; }

.footer-copy {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 2px;
}

/* --- MOBILE BREAKPOINT (900px) --- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  
  .mobile-menu-icon { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    cursor: pointer;
    position: relative;
    z-index: 2100; /* Stays above the header bar */
  }
  
  .mobile-menu-icon span { width: 28px; height: 3px; background: white; transition: 0.4s; }

  /* MOBILE DROP-DOWN MENU */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a1158; /* Match primary color exactly */
    display: none; 
    flex-direction: column;
    z-index: 1500; /* Behind header bar (2000), above content */
    padding: 85px 0 2rem 0; /* Padding-top ensures links start BELOW the header bar */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease-out;
  }
  
  .mobile-nav.open { display: flex; }

  .mobile-nav a { 
    color: white; 
    padding: 1.5rem; 
    text-align: center; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    text-decoration: none; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
  }

  h2 { font-size: 2.2rem; }
  .expertise-list { grid-template-columns: 1fr; }
  .main-footer { border-radius: 40px 40px 0 0; }
  .footer-flex { text-align: center; }
}

/* --- ANIMATIONS --- */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

