:root{
    --main-color: #F44F2A;
    --secondary-color: #0077ff;
    --third-color: #f0f8ff;
    --fourth-color: #1d1d1d;
    --fifth-color: #daa520;
    --navbar-height: auto;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 60.5%;
}
body{
    background: var(--third-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--fourth-color);
    line-height: 1.5;
}
/*--------------- Default Settings */
a{
    text-decoration: none;
    font-size: 1.5rem;
}

h1,h2,h3{
    letter-spacing: -2px;
    line-height: 1.2;
}
h1{
  font-size: 5.5rem;
}

h2{
  font-size: 4rem;
}
h3{
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -1px;
}
p{
  font-size: 1.8rem;
}
li{
    list-style: none;
} 

/*-------------- NAVBARS SECTION --------------*/
header {
  width: 100%;
  font-family: 'Inter', sans-serif;
  height: var(--navbar-height);
}

/* First Navbar: Info & Logo */
.nav-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--secondary-color);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img { height: 50px; }

.express{
  color: var(--fourth-color);
  font-style: italic;
  font-weight: 800;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.logo-span { 
  color: #f44f2a;
  font-weight: 800;
}

.nav-1 > div:not(.logo-container) {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-1 a{
  color: var(--third-color);
  font-weight: bold;
  letter-spacing: 1.3px;
}
.nav-1 a:hover{
  color: var(--fifth-color);
}
.nav-1 p{
  font-weight: 600;
}
.navbar-1-img { width: 24px; }

#lang-btn{
  font-size: 1.8rem;
  padding: 10px;
  background: var(--main-color);
  color: var(--third-color);
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(14, 13, 13, 0.3);
  cursor: pointer;
  /* margin: 0 2.5rem; */
}
#lang-btn:hover{
  background: var(--fourth-color);
  color: var(--main-color);
}
.language-container img{
  width: 40px;
}


/*--------------------- Second Navbar: Links */
.nav-2 {
  background-color: var(--fourth-color);
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
}

.nav-2 ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-2 a {
  color: var(--third-color);
  padding: 1.8rem 2rem;
  display: inline-block;
  font-weight: 500;
  transition: background 0.3s;
}

.nav-2 .left-navbar-2-container a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--main-color);
}

/* "Request Quote" Button in Nav */
.right-navbar-2-container li:last-child a {
  background-color: var(--secondary-color);
  border: 2px solid var(--main-color);
  border-radius: 3px;
  padding: 1.8rem 3rem;
}
.right-navbar-2-container li:last-child a:hover{
  background: var(--fifth-color);
  border: 2px solid var(--fourth-color);
}

.right-navbar-2-container img {
  width: 22px;
  height: 22px;
  filter: invert(1); /* Makes black icons white */
  opacity: 0.7;
  transition: 0.3s;
}
.right-navbar-2-container img:hover{
  opacity: 1;
  transform: translateY(-3px);
}

/*------------------ HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  /* height: auto; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 9rem 5%;
  width: 100%;
}

.hero-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for text readability */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.637), rgba(0, 0, 0, 0.780));
  z-index: -1;
}


.hero-span {
  color: var(--main-color);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content p {
  margin: 1rem 1.8rem;
  color: aliceblue;
  /* font-size: clamp(1.6rem, 4vw, 2rem); */
}

/* The Place Order Button */
.order-btn {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--third-color);
  text-decoration: none;
  padding: 1.8rem 4.5rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(244, 79, 42, 0.3);
  max-width: 150px;
}

.order-btn:hover {
  transform: translateY(-3px);
  background-color: #ff603d;
  box-shadow: 0 15px 30px rgba(244, 79, 42, 0.5);
}


/*----------------------- Main Content */
main{
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}
/* //////////// About Us /////////////// */
.about-us-section {
  padding: 10rem 5%;
  background-color: var(--third-color); /* Clean contrast against the dark nav/hero */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

/* Label Badge Styles */
.label-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.arrow-icon { width: 25px; }
.text-orange { color: var(--main-color); }
.text-blue { color: var(--secondary-color); }

/* Typography */
.about-title {
  color: var(--fourth-color);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.about-description {
  line-height: 1.8;
  font-size: 2rem;
  color: var(--fourth-color);
  margin-bottom: 3rem;
  padding-left: 2.5rem;
  position: relative;
  border-left: 4px solid var(--main-color);
  background: linear-gradient(to right, rgba(239, 44, 0, 0.1), transparent);
  padding-top: 10px;
  padding-bottom: 10px;
}
.about-description strong{
    color: var(--fourth-color);
    position: relative;
    z-index: 1;
}
.about-description strong::after{
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 119, 255, 0.15);
    z-index: -1;
    border-radius: 2px;
}

/* Shop Chips */
.shop-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 3rem;
}
.shop-chips p{
  color: rgb(90, 90, 90);
  font-weight: bold;
}
.shop-chips span {
  font-size: 1.8rem;
  padding: 8px 18px;
  background-color: var(--secondary-color);
  color: white;
  letter-spacing: 1.8px;
  /* border: 1.5px solid var(--fourth-color); */
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1.5rem;
}
.shop-chips span:last-child{
    background: var(--fourth-color);
    color: var(--main-color);
}

/* Stats Grid - 2x2 Layout */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.1);
}

.stat-card h3 {
  margin: 0;
  color: var(--fourth-color);
}

.stat-card h3 span { color: var(--main-color); }

.stat-card p {
  margin: 5px 0 0;
  font-weight: 600;
  color: #666;
}

/* Highlight Stat */
.stat-card-highlight {
  background: var(--fourth-color);
  color: var(--third-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
}

.stat-card-highlight span {
  color: var(--main-color);
  font-weight: bold;
  font-size: 1.6rem;
}


/* ************* Our service section ******************** */
.our-services-section {
  padding: 8rem 5%;
  background-color: var(--third-color);
}

.services-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* Asymmetric look */
  gap: 6rem;
  align-items: start;
}

/* Intro Styles */
.main-title { 
  margin: 2rem 0; 
  color: var(--fourth-color);
  line-height: 1.1;
}
.intro-p { 
  /* font-size: 1.15rem; */
  color: #555; 
  margin-bottom: 3rem;
   line-height: 1.6; 
}

.service-undraw {
  width: 100%;
  max-width: 400px;
  margin-bottom: 3rem;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.btn-main-quote {
  display: inline-block;
  padding: 1.6rem 3.5rem;
  background: var(--fourth-color);
  color: var(--third-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-main-quote:hover{
  background: var(--main-color);
}
/* Service Grid Styles */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2x2 on desktop */
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--fourth-color);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 5px solid transparent;
  box-shadow: 0 20px 40px rgba(255, 68, 0, 0.08);
   text-align: center;
}

.service-card h3 { margin: 0; letter-spacing: -2px; font-size: 3rem;}
.service-card p { 
  color: var(--fourth-color);
  margin: 10px 0;
  line-height: 1.5
}
.card-action { 
  font-weight: bold;
  color: var(--main-color);
  font-size: 1.8rem
}

.icon-circle {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-circle img { 
  width: 28px;
  filter: brightness(0) invert(1)
}

/* Color variants for cards */
.border-orange { border-top-color: var(--main-color) }
.border-blue { border-top-color: var(--secondary-color) }
.border-dark { border-top-color: var(--fourth-color) }
.border-light { border-top-color: var(--third-color) }

.bg-orange { background: var(--main-color); }
.bg-blue { background: var(--secondary-color); }
.bg-dark { background: var(--fourth-color); }
.bg-light { background: #999; }

/* --- Hover Effects --- */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}


/* -------------- Steps sec ---------------- */
.how-it-works {
  background-color: var(--fourth-color); /* Dark background makes the colors pop */
  padding: 5rem 2rem;
  overflow: hidden;
  border-radius: 26px;
}

.section-title {
  text-align: center;
  color: var(--third-color);
  margin-bottom: 5rem;
  font-size: 5rem;
}
.section-title span:last-child{
  color: var(--main-color);
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.step-card {
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Color Pattern: Alternating Orange, Blue, and Alice-Blue-Tints */
.step-card:nth-child(3n+1) {
  background: linear-gradient(135deg, rgba(244, 79, 42, 0.2) 0%, rgba(244, 79, 42, 0.05) 100%);
  border-top: 4px solid var(--main-color);
}

.step-card:nth-child(3n+2) {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.2) 0%, rgba(0, 119, 255, 0.05) 100%);
  border-top: 4px solid var(--secondary-color);
}

.step-card:nth-child(3n+3) {
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.15) 0%, rgba(240, 248, 255, 0.05) 100%);
  border-top: 4px solid var(--third-color);
}
.contact-link{
  color: var(--secondary-color);
  font-weight: bold;
  letter-spacing: 1.1px;
}

/* The Large Background Number */
.step-numb {
  font-size: 4rem;
  font-weight: 900;
  position: absolute;
  bottom: -10px;
  right: 10px;
  opacity: 0.1;
  color: var(--third-color);
}

.step-card h3 {
  font-size: 2.5rem;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  color: var(--third-color);
}

.step-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.4;
}

/* Hover: Intensify the color */
.step-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.step-card:nth-child(3n+1):hover { box-shadow: 0 20px 40px rgba(244, 79, 42, 0.3); }
.step-card:nth-child(3n+2):hover { box-shadow: 0 20px 40px rgba(0, 119, 255, 0.3); }

/* Step 8: The CTA Card - Solid High Contrast */
.cta-card {
  background: linear-gradient(135deg, var(--main-color) 0%, #8f1a00 100%) !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-card h3, .cta-card p {
  color: white;
}

.order-btn {
  background-color: var(--fourth-color);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 12px;
  max-width: 180px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background-color: white;
  color: var(--main-color);
  transform: translateY(-3px);
}

/* ---------- Choose Section -------------- */
.service-picker {
  padding: 50px 5%; /* Reduced padding to save space */
  background: var(--third-color);
  border-top: 3px solid var(--main-color);
  margin: 4rem 0;
}

.picker-container {
  max-width: 1000px;
  margin: 0 auto;
}

.picker-header h2 {
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  margin-bottom: 25px;
  text-align: center;
}
.picker-header span:first-child{
    color: #888;
}

.picker-header span:last-child { color: var(--fourth-color); font-weight: 800; }

.picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 items in one row */
  gap: 15px;
  justify-content: center;
}

.picker-item input {
  display: none; /* Hide radio */
}

.picker-box {
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  /* cursor: pointer; */
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.picker-box img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: grayscale(1) opacity(0.6);
}

.picker-box h3 {
  margin: 0;
  color: #666;
}

/* --- THE ACTIVE STATE --- */
.picker-item input:checked + .picker-box {
  background: aliceblue;
  border-color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(0, 119, 255, 0.1);
}

.picker-item input:checked + .picker-box img {
  filter: none; /* Show color/icon clearly when selected */
  opacity: 1;
}

.picker-item input:checked + .picker-box h3 {
  color: var(--secondary-color);
  font-weight: bold;
}

/* --- HOVER --- */
.picker-box:hover {
  border-color: var(--main-color);
}




/* ------------ Order form sec ------------- */
.order-sec { padding: 60px 5%; background: #f9f9f9; }

.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 10rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.order-row.reverse { direction: rtl; }
.order-row.reverse .order-form { direction: ltr; } /* Reset text direction */

.order-img-div img { width: 100%; min-width: 300px; }

/* Dark Form Styling */
.order-form.dark-theme {
    background: var(--fourth-color);
    padding: 40px;
    border-radius: 24px;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.order-form h3 { margin-bottom: 10px;}
.form-desc { color: #888; margin-bottom: 30px}

.input-row { display: flex; gap: 15px; margin-bottom: 15px; }
.input-group { display: flex; flex-direction: column; width: 100%; margin-bottom: 15px; }

.input-group label { font-size: 1.4rem; margin-bottom: 8px; color: #bbb; }

.input-group input {
    background: var(--input-bg);
    border: 1px solid #444;
    padding: 12px;
    border-radius: 8px;
    color: white;
    transition: 0.3s;
    font-size: 1.5rem;
}

.input-group input:focus {
    border-color: var(--main-color);
    outline: none;
    background: #333;
}

.qty-group { background: rgba(244, 79, 42, 0.1); padding: 15px; border-radius: 12px; }

.input-error {
    border: 2px solid red !important;
    background-color: rgb(82, 82, 82) !important;
}
/* picture link */
.image-link-span{
  font-size: 1.5rem;
}

/* Dynamic Product Inputs Styling */
.dynamic-product-row {
    font-size: 1.8rem;
    background: #252525;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid var(--secondary-color);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; } }

.submitBtn {
    width: 100%;
    padding: 15px;
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.submitBtn:hover { background: #ff603d; transform: translateY(-2px); }



/* Order submition Js  */
.success-toast {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #1d1d1d; /* Your brand dark */
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    border-left: 6px solid #F44F2A; /* Your brand orange */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    max-width: 400px;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    background: #F44F2A;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.toast-text span:last-child {
    font-size: 1.5rem;
    color: #bbb;
    margin: 0;
}




/* --------- Whatsapp section --------- */
.whatsapp-sec {
  padding: 40px 5%;
  background-color: white;
  display: flex;
  justify-content: center;
}

.whatsapp-card {
  width: 100%;
  max-width: 1100px;
  background: var(--third-color);
  padding: 25px 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 6px solid #25D366;
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.whatsapp-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wa-icon-box {
  width: 100px;
  height: 100px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-icon-box img {
  width: 50px;
  filter: brightness(0) invert(1); /* Makes the icon white */
}

.wa-text h2 {
  margin: 0;
}

.text-green { color: #25D366; }

.wa-text p {
  margin: 5px 0 0;
  color: #666;
}

/* The Button */
.wa-btn {
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.wa-btn:hover {
  background: #128c7e; /* Darker WA green */
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}



/* -------------- Reviews section -------------- */
.reviews-sec {
  padding: 60px 5%;
  background-color: white;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h1 {
  color: var(--fourth-color);
  line-height: 1.2;
}

.text-orange { color: var(--main-color); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: var(--third-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.review-card:hover { transform: translateY(-5px); }

/* User Info Styling */
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--main-color);
}

.user-details strong { display: block; color: var(--fourth-color); font-size: 1.4rem; }
.location { font-size: 1.2rem; color: var(--main-color); font-weight: 600; }

.stars { color: #FFD700; margin-bottom: 10px; font-size: 1.2rem; }

.review-card p {
  /* font-size: 0.95rem; */
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* Video Card Styling */
.video-card {
  padding: 8px; /* Slimmer padding for videos */
  background: var(--fourth-color);
}

.reviews-video {
  width: 100%;
  border-radius: 15px;
  aspect-ratio: 14 / 10;
  background: black;
}

.video-label {
  color: white;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
  padding: 10px 0 5px;
  font-weight: bold;

}


/* ----------- FAQ Section --------------- */
.faq-section{
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    /* background: rgb(255, 205, 187); */
}
.faq-title{
    text-align: center;
    /* font-size: 2rem; */
    margin-bottom: 2rem;
    color: var(--fourth-color);
}
.faq-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item{
    background: linear-gradient(135deg, #ffffff, #d1e1fd);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 20px rgba(221, 177, 168, 0.267);
    transition: all 0.3s ease;
    border-left: 5px solid #F44F2A;
}
.faq-item:hover{
    transform: translateY(-2px);
}
.faq-item summary{
    cursor: pointer;
    font-weight: 600;
    font-size: 2rem;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}
.faq-item summary::webkit-details-marker{
    display: none;
}
.faq-item summary::after{
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.6rem;
    transition: transform 0.3s ease;
    color: #F44F2A;
}
.faq-item[open] summary::after{
    content: "-";
}
.faq-item p{
    margin-top: 0.8rem;
    line-height: 1.6;
    color: #444;
    font-weight: bold;
    font-size: 1.7rem;
}

/* ---------- Our Mission Sec ------- */
.mission-section {
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
  padding: 4rem 1.5rem;
  font-family: system-ui, sans-serif;
  /* font-size: 2rem; */
}

.mission-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.mission-image img {
  width: 100%;
  max-width: 400px;
  height: 330px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 4px solid #0077ff;
  filter: brightness(1);
}

.mission-content h2 {
  /* font-size: 2.2rem; */
  margin-bottom: 1rem;
  color: var(--fourth-color);
}

.mission-content p {
  font-size: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;  
  color: #333;
  margin-bottom: 1rem;
}

/* Accent underline */
.mission-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F44F2A, #daa520);
  margin-top: 0.5rem;
  border-radius: 3px;
}


/* ------------- footer --------------- */
.site-footer {
  background-color: var(--fourth-color);
  color: white;
  padding: 60px 5% 20px;
  font-family: sans-serif;
}

.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr; /* Center column is wider */
  gap: 40px;
  align-items: start;
}

.footer-column h4 {
  color: var(--main-color);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}
.footer-column h3{
  color: #666;
}
.brand-col span{
  color: rgba(255, 68, 0, 0.589);
}
/* Slim Orange Line under titles */
.footer-column h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--main-color);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .address {
  color: #888;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Center Column Styling */
.brand-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.tagline {
  /* font-size: 0.85rem; */
  color: #555;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link img {
  width: 22px;
  height: 22px;
  filter: invert(1); /* Makes black icons white */
  opacity: 0.6;
  transition: 0.3s;
}

.social-link:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #2d2d2d;
  text-align: center;
  font-size: 0.8rem;
  color: #444;
}


