/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
  :root {
      --blue: #28257C;
      --slate: #0f172a;
    }
/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Sora', sans-serif;
 
 
  -webkit-font-smoothing: antialiased;
}
      /* Common Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 64px; /* Default padding matching px-16 */
        }
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  height: 100vh;
  background: url("/images/hero_bg.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* =========================
   NAVBAR
========================= */

.nav {
  height: 90px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 52px;
}
/* =========================
   PREMIUM MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 999;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

/* PANEL */
.mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 85%;
  max-width: 360px;
  background: linear-gradient(180deg, #0b0f2a, #000);
  padding: 36px 28px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.active .mobile-panel {
  transform: translateX(0);
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 22px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* LINKS */
.mobile-links {
  list-style: none;
  margin-top: 90px;
}

.mobile-links li {
  margin-bottom: 28px;
}

.mobile-links a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

/* PHONE CARD */
.mobile-phone {
  margin-top: 48px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
}

.mobile-phone span {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .6;
}

.mobile-phone strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  position: absolute;
  left: 70px;
  bottom: 120px;
  max-width: 620px;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 30px;
}

/* =========================
   BUTTON
========================= */
.btn {
  background: #fff;
  color: #1b2c7a;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   ABOUT (WHITE SAFE ZONE)
========================= */
.about-section {
  background: #fff;
  color: #111;
  padding: 120px 0;
}

.about-section * {
  color: inherit;
}/* =========================
   PRODUCT SECTION
========================= */
.product-section {
  background: #fdfdfd; /* Slightly off-white for depth */
  padding: 100px 0;
  color: #111;
  overflow: hidden;
}


.product-section * {
  box-sizing: border-box;
}

.product-header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-header h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* =========================
   BETTER ARROWS
========================= */
.product-arrows {
  display: flex;
  gap: 12px;
}

.arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth easing */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Soft shadow */
}

/* Arrow Hover Effect */
.arrow:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: scale(1.1); /* Slight grow */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.arrow:active {
  transform: scale(0.95); /* Click press effect */
}

.arrow svg {
  width: 20px;
  height: 20px;
}

/* =========================
   GRID / SLIDER (Smooth & Snap)
========================= */
.product-grid {
  max-width: 1240px; /* Slight increase for side padding */
  margin: auto;
  padding: 20px 20px 60px 20px; /* Extra bottom padding for shadow hover clearance */
  
  display: flex;
  gap: 30px;
  
  overflow-x: auto;
  
  /* THIS IS THE KEY FOR SMOOTHNESS */
  scroll-behavior: smooth; 
  scroll-snap-type: x mandatory; /* Forces the scroll to lock on cards */
  
  /* Hide Scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-grid::-webkit-scrollbar { 
  display: none; 
}

/* =========================
   CARD DESIGN (Depth & Hover)
========================= */
.product-card {
  /* Layout */
  min-width: 85%; /* Mobile default */
  flex-shrink: 0;
  
  /* Snap Alignment */
  scroll-snap-align: start;
  
  /* Visuals */
  background: #fff;
  border-radius: 20px; /* Smoother corners */
  padding: 15px; /* Creates a frame around image */
  
  /* Transition for the lift effect */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent; /* Prevents layout shift on border change */
}

/* Card Hover: Lift & Shadow */
.product-card:hover {
  transform: translateY(-12px); /* Moves up */
  box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Drop shadow */
  border-color: #f0f0f0;
}

/* IMAGE WRAPPER */
.img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f4f4f4;
  margin-bottom: 20px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* Slow smooth zoom */
}

/* Image Zoom on Hover */
.product-card:hover .img-wrap img {
  transform: scale(1.12);
}

/* COUNT BADGE */
.count {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  z-index: 2;
  backdrop-filter: blur(4px); /* Frosted glass effect */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* TEXT CONTENT */
.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */
@media (min-width: 600px) {
  .product-card {
    min-width: calc(50% - 15px);
  }
}

@media (min-width: 900px) {
  .product-card {
    min-width: calc(33.333% - 20px);
  }
}

@media (min-width: 1200px) {
  .product-header, .product-grid {
    padding-left: 70px;
    padding-right: 70px;
  }
  
  .product-card {
    min-width: calc(25% - 23px); /* 4 items perfectly */
  }
}/* =========================
   WHY US SECTION
========================= */
.why-section {
  background: #fff;
  padding: 100px 0;
  color: #111;
  overflow: hidden; /* Prevents AOS scrollbar glitches */
}

.why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  /* Mobile First: 1 column by default */
  grid-template-columns: 1fr;
  gap: 20px;
}

/* =========================
   TEXT BLOCK
========================= */
.why-text h2 {
  font-size: 36px; /* Scaled down slightly for mobile */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.why-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  max-width: 400px; /* Limits width on large screens */
}

/* =========================
   CARD STYLES
========================= */
.why-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 260px; /* Default height for mobile/tablet */
  background: #f0f0f0;
  
  /* Hover Transition */
  transform: translateZ(0); /* Hardware accel */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.why-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Zoom Image on Hover */
.why-card:hover img {
  transform: scale(1.1);
}

/* DARK GRADIENT OVERLAY (For Text Readability) */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

/* =========================
   CONTENT INSIDE CARDS
========================= */
.content-overlay {
  position: absolute;
  color: #fff;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.content-overlay.bottom {
  bottom: 0;
  left: 0;
}

.content-overlay.top {
  top: 0;
  left: 0;
}

.content-overlay.center {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.content-overlay p {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
}

/* PILLS */
.pill-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.pill-wrap span {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* STARS & ICON */
.stars {
  color: #FFD700; /* Gold */
  font-size: 18px;
  letter-spacing: 2px;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  stroke: #fff;
}

/* =========================
   RIGHT COLUMN & CTA
========================= */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.tall-card {
  flex-grow: 1; /* Fills available space */
  min-height: 260px;
}

.why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 20px 28px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.why-cta:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* TABLET (min-width: 768px) - 2 Column Grid */
@media (min-width: 768px) {
  .why-wrapper {
    grid-template-columns: 1fr 1fr;
    /* Row 1: Text | Top Card
       Row 2: Left Big | Bottom Card
       Row 3: Tall Card (Full width or side?)
    */
  }
  
  /* Reset placement for tablet */
  .why-text { grid-column: 1 / -1; text-align: center; margin-bottom: 20px; }
  .why-text p { margin: 0 auto; }
}

/* DESKTOP (min-width: 1024px) - The "Bento" Layout */
@media (min-width: 1024px) {
  .why-section {
    padding: 120px 0;
  }

  .why-wrapper {
    /* Fixed 3-column layout matching design */
    grid-template-columns: 1.2fr 1.2fr 1fr; 
    grid-template-rows: 280px 280px; /* Fixed row height */
    padding: 0 70px;
  }

  /* Specific Grid Placements */
  
  /* Col 1 */
  .why-text {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .left-big {
    grid-column: 1;
    grid-row: 2;
    height: 100%;
  }

  /* Col 2 */
  .top-card {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
  }

  .bottom-card {
    grid-column: 2;
    grid-row: 2;
    height: 100%;
  }

  /* Col 3 */
  .right-col {
    grid-column: 3;
    grid-row: 1 / 3; /* Spans 2 rows */
  }
  
  /* Text adjustments */
  .why-text h2 { font-size: 42px; }
}
/* --- Import Font (Paste this at the very top of your CSS file) --- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap');

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #fff;
  padding: 120px 0;
  color: #111;
  font-family: 'Sora', sans-serif;
  overflow: hidden; /* Prevents scrollbars if animations slide in */
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Standard padding for safety */
  
  /* THE FIX: CSS Grid creates a stable 2-column layout */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Exact 50% split */
  gap: 80px;
  align-items: start; /* Keeps image at top even if text is long */
}

/* --- LEFT SIDE (Image & Title) --- */
.services-left {
  position: relative; /* Useful if you want to add decorative elements later */
}

.services-left .sub-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  display: block;
  margin-bottom: 16px;
}

.services-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #111;
}

.services-left .highlight {
  color: #6366f1; /* Indigo Brand Color */
}

.service-img-wrap {
  width: 100%;
  height: 420px; /* Fixed height ensures layout stability */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers area without stretching */
  transition: transform 0.6s ease;
}

/* Hover Effect: Zoom image slightly */
.services-left:hover .service-img-wrap img {
  transform: scale(1.05);
}

/* --- RIGHT SIDE (Text & Icons) --- */
.services-right .intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 56px;
  max-width: 90%; /* Stops text from getting too wide to read */
}

/* Grid of 4 Items */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Forces 2 columns for icons */
  gap: 48px;
}

/* Individual Item */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #e0e7ff; /* Light Indigo background */
  color: #6366f1;      /* Indigo Icon */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Hover Effect: Icon box turns solid color */
.service-item:hover .icon-box {
  background: #6366f1;
  color: #fff;
  transform: rotate(-10deg);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.service-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.service-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet / Small Laptop (max-width: 1024px) */
@media (max-width: 1024px) {
  .services-wrapper {
    gap: 40px;
    padding: 0 30px;
  }
  
  .services-left h2 {
    font-size: 36px;
  }
  
  .service-img-wrap {
    height: 350px; /* Reduce image height slightly on smaller screens */
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-wrapper {
    grid-template-columns: 1fr; /* Stack Left and Right sections */
    gap: 50px;
  }

  .service-img-wrap {
    height: 300px; /* Smaller image for mobile */
    margin-bottom: 0;
  }

  .services-right .intro-text {
    margin-bottom: 40px;
    max-width: 100%;
  }
  
  /* Keep icons side-by-side on mobile, but reduce gap */
  .services-grid {
    gap: 30px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr; /* Stack icons vertically on very small phones */
  }
  
  .services-left h2 {
    font-size: 32px;
  }
}
/* CTA */
.why-cta {
  margin-top: 28px;
  padding: 14px 42px;
  border-radius: 999px;
  border: 1px solid #000;

  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  background: transparent;
}

/* CTA BUTTON */
.why-cta {
  margin-top: 24px;
  text-align: center;
}

.why-cta a {
  border: 1px solid #000;
  color: #000;
  padding: 14px 42px;
  border-radius: 999px;
  text-decoration: none;
}
.why-cta a :hover{
  color: #ffffff;
}
/* gallery */

    /* Reveal Animations */
    .reveal-wrapper { 
      overflow: hidden; 
      position: relative;
    }
    
    .reveal-content {
      transform: translateY(110%);
      transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .active .reveal-content { 
      transform: translateY(0); 
    }

    /* Image Mask Reveal - Reinforced Container Clipping */
    .img-reveal-container {
      overflow: hidden;
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 1rem;
    }

    .img-mask {
      clip-path: inset(0 100% 0 0);
      transition: clip-path 1.4s cubic-bezier(0.19, 1, 0.22, 1);
      width: 100%;
      height: 100%;
    }
    
    .active .img-mask {
      clip-path: inset(0 0 0 0);
    }

    /* PREMIUM VISUAL GALLERY STYLES */
    .visual-tile {
      position: relative;
      overflow: hidden; /* Strict border containment */
      border-radius: 1rem;
      background: #f8fafc;
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .visual-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
      transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease;
      display: block;
    }

    .visual-tile:hover img {
      filter: grayscale(0%);
      transform: scale(1.05); /* Subtle zoom stays within borders */
    }

    .visual-tile:hover {
      box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
      transform: translateY(-4px);
    }

    .tile-overlay {
      background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .visual-tile:hover .tile-overlay {
      opacity: 1;
    }
   
        /* ================= CTA SECTION ================= */
        .cta-section {
            padding: 128px 0;
            background-color: #ffffff;
        }

        .cta-card {
            background: linear-gradient(to right, #27272a, #18181b); /* zinc-800 to zinc-900 */
            border-radius: 24px;
            padding: 64px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .cta-left {
            max-width: 512px;
        }

        .cta-heading {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.1;
            color: white;
            margin-bottom: 40px;
        }

        .btn-white {
            background-color: #ffffff;
            color: #000000;
            padding: 16px 48px;
            border-radius: 9999px;
            font-weight: 500;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s, background-color 0.2s;
        }

        .btn-white:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
        }

        .cta-right {
            max-width: 384px;
            color: #d1d5db; /* gray-300 */
            font-size: 14px;
            line-height: 1.6;
        }

        .cta-right strong {
            display: block;
            color: white;
            font-weight: 500;
            margin-bottom: 12px;
            font-size: 16px;
        }

        /* Mobile CTA adjustments */
        @media (max-width: 1024px) {
            .container {
                padding: 0 24px;
            }
            .cta-card {
                padding: 48px;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 64px 0;
            }
            
            .cta-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 40px;
                padding: 48px 32px;
                background: linear-gradient(135deg, #27272a, #000000);
            }

            .cta-heading {
                font-size: 32px;
                margin-bottom: 32px;
            }

            .btn-white {
                width: 100%;
                max-width: 280px;
            }

            .cta-right {
                text-align: center;
            }
        }

        /* ================= FOOTER SECTION ================= */
        .footer-section {
            background-color: #000000;
            color: #9ca3af; /* gray-400 */
            font-size: 14px;
        }

        /* Top Row */
        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 96px;
            padding-bottom: 40px;
        }

        .footer-heading {
            font-size: 36px;
            font-weight: 600;
            color: white;
        }

        .text-indigo {
            color: #6366f1; /* indigo-500 */
        }

        .btn-footer {
            display: flex;
            align-items: center;
            gap: 16px;
            background-color: #4f46e5; /* indigo-600 */
            color: white;
            padding: 16px 32px;
            border-radius: 9999px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s, transform 0.2s;
            font-size: 16px;
        }

        .btn-footer:hover {
            background-color: #4338ca;
            transform: translateY(-2px);
        }

        .icon-circle-white {
            width: 36px;
            height: 36px;
            background-color: white;
            color: black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            line-height: 1;
        }

        /* Divider */
        .footer-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Main Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding: 80px 0;
        }

        /* Brand Column */
        .brand-col h3 {
            color: white;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 24px;
        }

        .footer-desc {
            line-height: 1.6;
            margin-bottom: 32px;
            max-width: 280px;
        }

        /* Social Icons (Fixed Visibility) */
        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: #4f46e5; /* indigo-600 base like your image */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor; /* Important for visibility */
        }

        .social-link:hover {
            background-color: #4338ca; /* darker indigo */
            transform: translateY(-3px);
        }

        /* Link Columns */
        .footer-col-title {
            color: white;
            margin-bottom: 24px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links li:hover, .footer-links a:hover {
            color: white;
        }

        /* Contact Icons */
        .contact-icon {
            color: #4f46e5;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Bottom */
        .footer-bottom {
            padding: 32px 0;
            font-size: 14px;
        }
.company-link {
    color: #ff4d4d;    /* A nice vibrant Red */
    font-weight: 600;  /* Bold to make it stand out */
    text-decoration: none;
    transition: all 0.3s ease;
}
        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 48px;
            }
            .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
            }
        }
        
        @media (max-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .social-icons {
                justify-content: flex-start;
            }
        }