/* ENHANCED PROFESSIONAL WARM PALETTE */
    :root{
      /* Dark theme - Professional slate with warm accents */
      --bg:#1a1d24;           /* charcoal */
      --bg-elev:#242832;      /* steel gray */
      --card:#2a2f3a;         /* slate */
      --text:#f4f6f8;         /* off-white */
      --muted: var(--text); /* gray */
      --line:rgba(255,255,255,.12);
      --overlay:rgba(20,23,30,.75);

      --primary:#f59e0b;      /* warm amber */
      --accent:#ef4444;       /* coral red */
      --secondary:#10b981;    /* emerald */
      --grad:linear-gradient(135deg, var(--primary), var(--accent));
      --grad-soft:linear-gradient(180deg, rgba(245,158,11,.08), rgba(239,68,68,.04));
      --shadow:0 20px 50px rgba(0,0,0,.5);

      --btn-border:rgba(255,255,255,.2);
      --focus:rgba(245,158,11,.3);
      --chip-bg:rgba(245,158,11,.15);
      --chip-line:rgba(245,158,11,.3);
      --pill-bg:rgba(245,158,11,.12);
      --pill-line:rgba(245,158,11,.25);

    --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245, 158, 11, .12), transparent 65%);
  --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239, 68, 68, .08), transparent 65%);
  /* Glass & Shade Effects */
  --glass-bg: rgba(42, 47, 58, 0.15);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shade-grad-1: radial-gradient(1000px 800px at 80% 10%, rgba(30, 40, 70, 0.6), transparent 65%);
  --shade-grad-2: radial-gradient(800px 600px at 10% 90%, rgba(20, 30, 60, 0.5), transparent 65%);
        /* Add these inside your :root { ... } block */
--icon-bg-blue: rgba(59, 130, 246, 0.15);
--icon-color-blue: #3b82f6;
--icon-bg-green: rgba(16, 185, 129, 0.15);
--icon-color-green: #10b981;
--icon-bg-red: rgba(239, 68, 68, 0.15);
--icon-color-red: #ef4444;
--icon-bg-yellow: rgba(245, 158, 11, 0.15);
--icon-color-yellow: #f59e0b;
--icon-bg-purple: rgba(139, 92, 246, 0.15);
--icon-color-purple: #8b5cf6;
--icon-bg-cyan: rgba(20, 184, 166, 0.15);
--icon-color-cyan: #14b8a6;
  --card-highlight-bg: #1f2937; /* A sophisticated dark slate blue */
    }

    /* Light theme - Cool & Crisp (Alternative) */
    html[data-theme="light"]{
      --bg:#f0f4f8;                   /* Light, cool blue-gray background */
      --bg-elev:#ffffff;                 /* Crisp white cards */
      --card:#ffffff;
      --text:#2c3e50;                   /* Dark slate blue for high contrast */
      --muted: var(--text);           /* Muted blue-gray for secondary text */                 
      --line:rgba(44, 62, 80, .1);      /* Subtle line based on text color */
      --overlay:rgba(240, 244, 248, .85);
     --shadow: 0 15px 35px rgba(44, 62, 80, .15); /* Stronger shadow */

      --btn-border:rgba(44, 62, 80, .15);
      --focus:rgba(245, 158, 11, .3);
      --chip-bg:rgba(245, 158, 11, .1);
      --chip-line:rgba(245, 158, 11, .2);
      --pill-bg:rgba(245, 158, 11, .08);
      --pill-line:rgba(245, 158, 11, .2);

      --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245, 158, 11, .05), transparent 65%);
  --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239, 68, 68, .03), transparent 65%);
  /* Glass & Shade Effects */
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(44, 62, 80, 0.1);
  --shade-grad-1: radial-gradient(1000px 800px at 80% 10%, rgba(255, 250, 240, 0.9), transparent 65%);
  --shade-grad-2: radial-gradient(800px 600px at 10% 90%, rgba(255, 250, 240, 0.8), transparent 65%);
     --card-highlight-bg: #fffbeb; /* A subtle, warm cream for light mode */
    }

    /* Base styles with new typography */
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: "Merriweather Sans"", system-ui, -apple-system, Segoe UI, Helvetica, Arial;
      color:var(--text);
      background: var(--hero-grad-1), var(--hero-grad-2), var(--bg);
      line-height:1.6;
      font-size: 18px; /* ADD THIS LINE */
    }
    a{color:inherit; text-decoration:none}
    img{max-width:100%; display:block}

    /* Headings with Poppins */
    h1,h2,h3,h4,h5,h6{
      font-family: "Poppins", sans-serif;
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -.02em;
    }

    /* Layout containers */
    .wrap{max-width:1200px; margin:0 auto; padding:0 20px}
    .section{max-width:1200px; margin:0 auto; padding:60px 20px}
    .grid{display:grid; gap:24px; grid-template-columns: repeat(12, 1fr)}

    /* Header - Clean minimal design */
    .nav{
      position:sticky; top:0; z-index:1000;
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      background: var(--overlay);
      border-bottom:2px solid var(--line);
      box-shadow: 0 2px 20px rgba(0,0,0,.1);
    }
    html[data-theme="light"] .nav{
      box-shadow: 0 2px 20px rgba(44,62,80,.04);
    }
    .nav-inner{
      max-width:1200px; margin:0 auto;
      display:flex; align-items:center; justify-content:space-between;
      padding:16px 20px;
    }
    .brand{display:flex; align-items:center; gap:16px}
    .brand h1{
      font-family: "Poppins", sans-serif;
      font-size:22px; margin:0; font-weight:800;
      background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .nav-links{display:flex; gap:32px}
    .nav-links a{
      padding:12px 16px; border-radius:8px; color:var(--muted);
      font-weight:600; transition: all .2s ease;
    }
    .nav-links a:hover{background:rgba(245,158,11,.1); color:var(--text)}

    /* Buttons and Theme Toggle */
    .cta {
      background: #e09221;
      color: white;
      padding: 14px 24px;
      border-radius: 25px;
      font-weight: 700;
      border: 0;
      box-shadow: 0 6px 18px rgba(224, 146, 33, .25);
      transition: all .2s ease;
      font-family: "Poppins", sans-serif;
    }

    .cta:hover {
      transform: translateY(-2px);
      background: #ea9e31;
      box-shadow: 0 10px 25px rgba(224, 146, 33, .3);
    }

    .btn {
      background: transparent;
      border: 2px solid var(--btn-border);
      color: var(--text);
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: 600;
      transition: all .2s ease;
      font-family: "Poppins", sans-serif;
    }

    .btn:hover {
      border-color: var(--primary);
      background: rgba(245, 158, 11, .05);
      transform: translateY(-1px)
    }

    .theme-toggle{
      display:flex; align-items:center; gap:8px;
      margin-left:16px; padding:10px 16px; border-radius:20px;
      border:2px solid var(--btn-border); color:var(--text);
      background:rgba(245,158,11,.05); cursor:pointer; font-weight:600;
      transition: all .2s ease;
    }
    .theme-toggle:focus-visible{ outline:3px solid var(--focus); outline-offset:2px }
    .theme-toggle:hover{ border-color:var(--primary); background:rgba(245,158,11,.1) }
    .theme-icon{ font-size:18px; line-height:0 }

    /* Hero section - Bold and striking */
    .hero{
      max-width:1200px; margin:0 auto; padding:80px 20px 60px;
      display:grid; gap:40px; grid-template-columns: 1.2fr .8fr;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px; color:var(--primary);
      background:var(--chip-bg); padding:8px 16px; border:2px solid var(--chip-line);
      border-radius:20px; font-size:14px; font-weight:600;
      box-shadow: 0 4px 16px rgba(245,158,11,.2);
    }
    .hero h2{
      font-family: "Poppins", sans-serif;
      font-size:52px; line-height:1.1; margin:16px 0 12px; font-weight:800;
      background:linear-gradient(135deg, var(--text), var(--muted));
      -webkit-background-clip:text; background-clip:text; color:transparent;
    }
    .hero p{color:var(--muted); font-size:20px; margin:0 0 24px; font-weight:400}
    .actions{display:flex; gap:16px; flex-wrap:wrap}

    /* Showcase - Clean card design */
    .showcase{
      background:var(--card); border:2px solid var(--line);
      border-radius:24px; padding:24px;
      box-shadow: var(--shadow);
      transition: all .3s ease;
      align-self: start;
    }
    .showcase:hover{ transform: translateY(-4px); }
    html[data-theme="dark"] .showcase:hover{
      box-shadow: 0 24px 48px rgba(0,0,0,.3);
    }
    html[data-theme="light"] .showcase:hover{
      box-shadow: 0 8px 25px rgba(44,62,80,.08);
    }
    .showcase-art{
      aspect-ratio: 16/10; border-radius:16px;
      position:relative; overflow:hidden;
      background:
        linear-gradient(135deg, rgba(245,158,11,.2), rgba(239,68,68,.1)),
        url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat,
        var(--bg-elev);
    }
    .chip{
      position:absolute; inset:auto 20px 20px auto;
      background:rgba(245,158,11,.9); border:none;
      padding:8px 16px; border-radius:12px; color:white; font-size:12px; font-weight:700;
      backdrop-filter: blur(8px); box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }

    .pill{
      display:inline-block; font-size:12px; color:var(--primary);
      background:var(--pill-bg); border:1px solid var(--pill-line);
      padding:6px 12px; border-radius:15px; margin:4px 6px 4px 0;
      font-weight:600; letter-spacing:.02em;
    }

    /* Back button hover effects */
    .back-btn:hover {
      transform: translateX(-4px);
      border-color: var(--primary);
      background: var(--bg-elev);
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }

    /* Cards - Professional styling */
    .card{
      grid-column: span 6;
      background: var(--card); border:2px solid var(--line);
      border-radius:20px; padding:28px;
      transition: all .3s ease;
      box-shadow: var(--shadow);
    }
    .card:hover{
      transform: translateY(-8px);
      border-color: var(--primary);
    }
    html[data-theme="dark"] .card:hover{
      box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }
    html[data-theme="light"] .card:hover{
      box-shadow: 0 12px 30px rgba(44,62,80,.08);
    }
    .card h4{
      font-family: "Poppins", sans-serif;
      margin:0 0 12px; font-weight:700; font-size:18px;
      color:var(--primary); display:flex; align-items:center; gap:8px;
    }
    .card p{color:var(--muted); margin:0 0 16px; font-size:18px}
    .card .card-cta-container { display: flex; flex-direction: column; gap: 16px; }
    .card ul { list-style: none; padding-left: 0; margin: 0 0 16px 0; }

    .trusted-logo {
      background: #fff;
      border-radius: 8px;
      padding: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.10);
      transition: box-shadow 0.2s;
      display: inline-block;
    }
    html[data-theme="light"] .trusted-logo {
      background: #f0f4f8;
      box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    }
    .card li { color: var(--muted); margin-bottom: 8px; position: relative; padding-left: 20px; font-size: 18px; }
    .card li::before { content: '✓'; color: var(--primary); position: absolute; left: 0; }

    /* Layout utilities */
    .flex-center {
      display: flex;
      align-items: center;
    }

    .flex-with-gap {
      display: flex;
      gap: 20px;
    }

    .back-section {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }

    .back-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: 20px;
      background: var(--card);
      border: 2px solid var(--line);
      color: var(--text);
      font-weight: 600;
      transition: all .2s ease;
    }

    .back-arrow {
      font-size: 18px;
    }

    .footer-brand {
      width: 32px;
      height: 32px;
      font-size: 14px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: var(--grad);
      color: #fff;
      font-weight: 800;
    }

    .span-6 {
      grid-column: span 6;
    }

    .span-4 {
      grid-column: span 4;
    }

    /* Section styling */
    .section h1, .section h3{
      font-family: "Poppins", sans-serif;
      font-size:32px; margin:0 0 16px; font-weight:800;
      background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
      display:flex; align-items:center; gap:12px;
    }
    .section p.lead{color:var(--muted); margin:0 0 40px; font-size:18px}

    /* Section icons */
    .section-icon{
      font-size:42px; color:var(--primary);
      background:rgba(245,158,11,.1);
      padding:8px; border-radius:12px;
      display:inline-block; line-height:1;
    }

    /* Service icons */
    .service-icon{
      font-size:24px; color:var(--primary);
      background:rgba(245,158,11,.1);
      padding:6px; border-radius:8px;
      display:inline-block; line-height:1;
    }

    /* Footer */
    footer{
      margin-top:40px; border-top:2px solid var(--line);
      color:var(--muted);
    }
    html[data-theme="light"] footer{
      background: linear-gradient(180deg, transparent, rgba(245,158,11,.02));
    }
    html[data-theme="dark"] footer{
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.03));
    }
    .foot{
      max-width:1200px; margin:0 auto; padding:24px 20px;
      display:flex; flex-wrap:wrap; align-items:center; gap:16px; justify-content:space-between;
    }

    .footer-main{ max-width:1200px; margin:0 auto 30px auto; display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:30px; }
    .footer-column h4{ color:var(--primary); font-size:18px; margin-bottom:16px; font-weight:700; }
    .footer-column p, .footer-column address{ line-height:1.7; font-style:normal; margin-bottom:1em; }
    .footer-column ul{ list-style:none; padding:0; margin:0; }
    .footer-column ul li{ margin-bottom:12px; }
    .footer-column ul a, .footer-contact-link, .footer-legal-links a { color:var(--muted); text-decoration:none; transition:color 0.2s ease; }
    .footer-column ul a:hover, .footer-contact-link:hover, .footer-legal-links a:hover { color:var(--primary); }
    .footer-contact-link{ display:block; margin-bottom:8px; }
    .footer-bottom{ max-width:1200px; margin:0 auto; padding-top:20px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; font-size:14px; }
    .footer-legal-links{ display:flex; gap:12px; }

    /* OEM strip - Clean corporate style */
    .oem-strip{
      display:flex; gap:32px; flex-wrap:wrap; align-items:center;
      justify-content: center; padding:24px 0; opacity:1;
    }
    .oem-strip img{
      height:48px; width:auto; opacity:.8;
      transition: all .3s ease; border-radius:8px;
      filter: grayscale(1) brightness(.9);
      object-fit: contain;
    }
    .oem-strip img:hover{
      transform: translateY(-3px) scale(1.05);
      filter: none; opacity:1;
      box-shadow: 0 8px 20px rgba(245,158,11,.2);
    }

    /* Contact section */
    .contact {
      display: grid;
      grid-template-columns: 1fr 1fr; /* Two equal columns */
      gap: 32px;
      align-items: stretch; /* This makes both columns equal height */
    }

    .contact .form,
    .contact .info {
      background: var(--card);
      border: 2px solid var(--line);
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow);
      display: flex; /* Use flexbox for internal alignment */
      flex-direction: column; /* Stack content vertically */
    }

    .contact .info h4 {
      font-family: "Poppins", sans-serif;
      color: var(--primary);
      margin-top: 0;
    }

    .contact .info p {
      color: var(--muted);
      flex-grow: 1; /* Allows this element to push the map down */
    }

    .contact .info .row {
      display: flex;
      gap: 12px;
      margin: 8px 0;
      color: var(--muted);
    }

    .contact .info .map-container {
      margin-top: 24px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid var(--line);
      line-height: 0; /* Fixes extra space below iframe */
    }

    .field{display:flex; flex-direction:column; gap:8px; margin-bottom:20px}
    label{
      font-size:16px; color:var(--primary); font-weight:700;
      font-family: "Poppins", sans-serif;
    }
    input, textarea, select{
      background:var(--bg-elev); border:2px solid var(--btn-border); color:var(--text);
      border-radius:12px; padding:14px; outline:none; font:inherit;
      transition: all .2s ease;
    }
    input:focus, textarea:focus, select:focus{
      border-color: var(--primary);
      box-shadow:0 0 0 3px rgba(245,158,11,.2);
    }
    .submit{
      background:var(--grad); color:white; border:0; border-radius:25px;
      padding:16px 24px; font-weight:800; font-family: "Poppins", sans-serif;
      box-shadow:0 8px 24px rgba(245,158,11,.4);
    transition: all .2s ease; /* ADD THIS LINE */
    }
  .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, .5);
}

  /* Responsive */
@media (max-width: 980px) {
    .hero .actions {
    justify-content: center;
  }

    {
  /* ... your other mobile styles ... */

  /* FIX: Reduce headline size on mobile to prevent overflow */
  .hero-content h1 {
    font-size: 30px;
  }
}
    /* --- START: Added styles to center hero card content on mobile --- */
  .hero > section {
    text-align: center;
  }
  .hero-content .actions,
  .hero-content .hero-checklist {
    justify-content: center; /* Centers the flex items (buttons and checklist) */
  }
  /* --- END: Added styles --- */
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    gap: 30px;
  }
  .hero h2 {
  font-size: clamp(24px, 8vw, 30px);
}
  .contact,
  .about {
    grid-template-columns: 1fr;
  }
  .card,
  .span-4,
  .span-6 {
    grid-column: span 12;
  }
  .nav-links {
    display: none;
  }
  .oem-strip {
    gap: 20px;
  }
  .oem-strip img {
    height: 28px;
  }
  .section {
    padding: 40px 20px;
  }
  .brand-logos {
    gap: 10px;
  }
  .brand-logos img {
    height: 20px;
  }
  .footer-bottom {
    justify-content: center;
    gap: 24px;
  }

  /* --- MODIFICATIONS START HERE --- */

  /* Center the text inside the main footer columns */
  .footer-column {
    text-align: center;
  }

  /* Center the items in the very bottom footer bar */
  .foot {
    justify-content: center;
  }
}
/* --- Add this to the end of your style.css file --- */

/* This targets ONLY the CTA buttons inside your blog list section */
.blog-list-section .card .cta {
  padding: 10px 20px; /* Reduced padding for a smaller button */
  text-align: center;
}

/* This still centers the button container, which is fine to apply generally */
.card .card-cta-container {
  align-items: center;
}
.cta-card {
  border-color: var(--primary);
}
/* --- START: SINGLE CARD HERO SECTION STYLES --- */
.hero-section-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 80px 20px;
  margin: 0 auto;
}

.hero-card-container {
  background-color: var(--card);
  background-color: var(--card-highlight-bg); /* ADD THIS LINE */
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content .badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 16px 0;
}

.hero-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
/* --- START: Highlighted About Card Styles --- */

.about-card {
  background-color: var(--card-highlight-bg);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  /* The grid layout for the two columns is already handled by the .about class */
  display: flex;
  flex-direction: column;
  gap: 40px; /* This creates the space. You can adjust the value. */
  color: var(--text); /* ADD THIS LINE */
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .about-card {
    padding: 30px;
  }
}

/* --- END: Highlighted About Card Styles --- */

.hero-checklist {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    font-size: 16px;
    color: var(--muted);
}
.hero-checklist span {
    font-weight: 500;
}

/* Right Side Reel Styles */
.auto-reel-container {
  background-color: var(--bg-elev);
  border-radius: 24px;
  height: 480px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.auto-reel-wrapper {
  padding: 16px;
  animation: auto-scroll 20s linear infinite;
}

.auto-reel-container:hover .auto-reel-wrapper {
    animation-play-state: paused;
}

.reel-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--card);
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 16px;
}

.reel-icon {
  font-size: 28px;
  background-color: var(--bg-elev);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.reel-text h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px 0;
}

.reel-text p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@keyframes auto-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Responsive adjustments for the new hero */
@media (max-width: 980px) {
  .hero-section-wrapper {
    padding: 40px 20px;
  }
  .hero-card-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }
  .auto-reel-container {
    height: 400px;
  }
}
/* --- END: SINGLE CARD HERO SECTION STYLES --- */
/* --- START: Reel Card & Icon Refinements --- */

/* 1. Improves card visibility in light mode */
html[data-theme="light"] .reel-item {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* 2. Base style for new reel icons to ensure consistency */
.reel-icon {
  border: 1px solid transparent; /* Prevents slight size change */
}

/* 3. New colorful icon background styles */
.reel-icon.icon-infra {
  background-color: var(--icon-bg-blue);
  color: var(--icon-color-blue);
}
.reel-icon.icon-security {
  background-color: var(--icon-bg-green);
  color: var(--icon-color-green);
}
.reel-icon.icon-cctv {
  background-color: var(--icon-bg-red);
  color: var(--icon-color-red);
}
.reel-icon.icon-biometrics {
  background-color: var(--icon-bg-yellow);
  color: var(--icon-color-yellow);
}
.reel-icon.icon-peripherals {
  background-color: var(--icon-bg-purple);
  color: var(--icon-color-purple);
}
.reel-icon.icon-amc {
  background-color: var(--icon-bg-cyan);
  color: var(--icon-color-cyan);
}

/* --- END: Reel Card & Icon Refinements --- */
/* --- START: Card Section Styles (for Trusted Partners, etc.) --- */

.card-section-container {
  background-color: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  text-align: center;
}

/* Center the heading and lead paragraph within the card */
.card-section-container h3,
.card-section-container p.lead {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Ensure logos in the strip are centered */
.oem-strip {
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .card-section-container {
    padding: 30px;
  }
}

/* --- END: Card Section Styles --- */
/* --- START: Highlighted About Card Styles --- */

.about-card {
  background-color: var --card-highlight-bg: #1f2937; /* A sophisticated dark slate blue */
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  /* The grid layout for the two columns is already handled by the .about class */
}

/* Responsive adjustments */
@media (max-width: 980px) {
  .about-card {
    padding: 30px;
  }
}

/* --- END: Highlighted About Card Styles --- */
/* --- START: Final Glass Service Section Styles --- */

/* Main container for the services section */
#services .card-section-container {
  background: var(--shade-grad-1), var(--shade-grad-2), var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Header within the section card */
#services .section-header {
  margin-bottom: 40px;
}

#services .section-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  margin: 0 0 16px 0;
}

#services .section-header p.lead {
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  color: var(--muted);
}

/* Grid for the 6 inner cards */
#services .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Styling for the 6 inner service cards */
#services .card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Overriding the generic .card selector for grid placement */
#services .card {
  grid-column: span 4; /* Makes 3 cards per row on desktop */
}

@media (max-width: 1100px) {
  #services .card {
    grid-column: span 6; /* Makes 2 cards per row on tablet */
  }
}
@media (max-width: 700px) {
  #services .card {
    grid-column: span 12; /* Makes 1 card per row on mobile */
  }
}

/* --- END: Final Glass Service Section Styles --- */
/* --- START: Hover Effect for Inner Service Cards --- */

/* This rule applies the orange border highlight ONLY to the 6 cards inside the "Our Services" section */
#services .card:hover {
  border-color: var(--primary);
}

/* --- END: Hover Effect for Inner Service Cards --- */
/* --- FINAL BACKGROUND STYLES --- */

/* Updated Dark Mode Variables */
:root {
  --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245,158,11,.12), transparent 65%);
  --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239,68,68,.08), transparent 65%);
  --bg-shade-1: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.15), transparent 40%);
  --bg-shade-2: radial-gradient(circle at 0% 100%, rgba(239, 68, 68, 0.1), transparent 40%);
}

/* Updated Light Mode Variables */
html[data-theme="light"] {
  --hero-grad-1: radial-gradient(1200px 800px at 70% -5%, rgba(245,158,11,.05), transparent 65%);
  --hero-grad-2: radial-gradient(1000px 600px at -5% 25%, rgba(239,68,68,.03), transparent 65%);
  --bg-shade-1: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.2), transparent 50%);
  --bg-shade-2: radial-gradient(circle at 0% 100%, rgba(252, 165, 165, 0.3), transparent 50%);
}

/* Updated Body Background Style */
body {
  background: var(--bg-shade-1), var(--bg-shade-2), var(--hero-grad-1), var(--hero-grad-2), var(--bg);
  background-attachment: fixed; /* Keeps the shades in place while scrolling */
}

/* --- START: Open in Maps Button Styles --- */
.map-wrapper {
  position: relative; /* Container for the button */
  margin-top: 24px;
}
.map-btn {
  position: absolute;
  /* New positioning for bottom center */
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  
  /* New smaller size */
  padding: 8px 16px;
  font-size: 14px;
  
  /* Glass effect from before */
  background: var(--overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.map-btn:hover {
    /* Retain and enhance existing hover effect */
    transform: translateY(-1px) scale(1.02);
}
/* --- END: Open in Maps Button Styles --- */

