
        /* === RESET & BASE STYLES === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #000000;
            --secondary-color: #f59e0b;
            --accent-color: #06b6d4;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --text-light: #9ca3af;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-glass: rgba(255, 255, 255, 0.25);
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
            --gradient-primary: linear-gradient(135deg, #000000 0%, #7f7f7f 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        body {
            font-family: 'Montserrat';
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            overflow-x: hidden;
            box-sizing: border-box;
        }

        /* === ANIMATIONS === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200px 0;
            }
            100% {
                background-position: calc(200px + 100%) 0;
            }
        }

        @keyframes rotateGlow {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        section{
            overflow-x:hidden;
        }

/* Full-screen overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* On top of everything */
}

/* Optionally prevent scrolling while loader is visible */
body.loading {
  overflow: hidden;
}

.loader{
  position:relative;
  width:140px;
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
}
/* Fingerprint circle */
.fingerprint{
  width:60px;
  height:60px;
  background:url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/59/Fingerprint_picture.svg/512px-Fingerprint_picture.svg.png') center/contain no-repeat;
  filter:drop-shadow(0 0 6px rgba(54, 59, 59, 0.6));
  z-index:2;
}
/* Pulse waves */
.pulse{
  position:absolute;
  width:100%;
  height:100%;
  border:2px solid #444444;
  border-radius:50%;
  opacity:0;
  animation:pulseAnim 2.5s ease-out infinite;
}
.pulse:nth-child(1){animation-delay:0s;}
.pulse:nth-child(2){animation-delay:0.5s;}
.pulse:nth-child(3){animation-delay:1s;}
@keyframes pulseAnim{
  0%{transform:scale(0.5);opacity:0.7;}
  70%{transform:scale(1.5);opacity:0;}
  100%{opacity:0;}
}
/* Lock icon */
.lock{
  position:absolute;
  width:50px;
  height:50px;
  border:3px solid #444444;
  border-radius:6px;
  box-shadow:0 0 8px rgba(54, 59, 59, 0.6);
  opacity:0;
  transform:scale(0.8);
  transition:opacity 0.4s ease, transform 0.4s ease;
}
.lock::before{
  content:"";
  position:absolute;
  top:-18px;
  left:50%;
  transform:translateX(-50%);
  width:24px;
  height:16px;
  border:3px solid #444444;
  border-bottom:none;
  border-radius:16px 16px 0 0;
  transition:transform 0.6s ease;
}
.show-lock .lock{
  opacity:1;
  transform:scale(1);
}
.unlock .lock::before{
  transform:translateX(-50%) rotate(-25deg);
}


        /* === NAVIGATION === */
       
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.50);  /* Transparent initially */
  color: white;
}
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }

        .navbar.scrolled a {
    color: black; /* scroll pachi text black */
}

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Montserrat';
            font-size: 1.8rem;
            font-weight: 600;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInLeft 0.8s ease;
        }

        .logo img {
          padding-top: 20px;
  width: 120px;   /* tamara design pramane size set karo */
  height: auto;
}


        .nav-links {
            padding-left: 40%;
            align-items: center;
            display: flex;
            gap: 2rem;
            list-style: none;
            animation: fadeInRight 0.8s ease;
        }

        .nav-links a {
           
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #818181 0%, #6a6a6a 100%);
            transition: width 0.3s ease;
        }

        .nav-links-2{
           padding-right: 0px;

        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #b5b5b5;
            text-decoration: none;
        }

        /* 🔹 Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.navbar.scrolled .menu-toggle {
  color: black;  /* Scroll pachi hamburger black */
}

/* 🔹 Mobile nav menu links always white */
@media (max-width: 992px) {
  .nav-links a, 
  .nav-links-2 a {
    color: rgb(114, 114, 114) !important;
    z-index: 9999;
  }

 .nav-links a:hover,
  .nav-links-2 a:hover {
    color: #b5b5b5 !important; /* 🔥 now hover will work */
    text-decoration: none;
  }
}




/* 🔹 Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    display: none; /* Hide menu by default */
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    gap: 20px;
    border-top: 1px solid #444;
    z-index: 3000;
  }

  .nav-links-2 {
    padding: 20px;
    text-align: center;
  display: flex;          /* default display */
  flex-direction: column; /* for mobile */
  position: absolute;
  top: 410px;
  left: 0px;
  width: 100%;
  background: rgba(0,0,0,0.95);
  display: none;          /* initially hidden */
}

  .nav-links.show, .nav-links-2.show {
    display: flex; /* Show when active */
  }

  .menu-toggle {
    display: block; /* Show hamburger icon */
  }

  .nav-links a {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 90px;
  }
}

        /* === HERO SECTION === */
       .hero {
  position: relative;
  height: 100vh; /* fullscreen */
  /*background: url('./Images/hero3.png') no-repeat center center/cover;  tamaru image */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Stretches video to cover */
  z-index: -1; /* Sends video to back */
}


/* .hero {
  animation: heroZoom 20s ease-in-out infinite alternate;
} */

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 6s ease-in-out infinite; */
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 2s;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        .hero-title {
            font-family: 'Montserrat';
            font-size: 3.4rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        

        /* .locker-showcase {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .locker-main {
            width: 100%;
            height: 600px;
            background: linear-gradient(145deg, #f0f0f0, #ffffff);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: pulse 3s ease-in-out infinite;
        }

        .locker-grid {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(8, 1fr);
            gap: 3px;
        }

        .locker-cell {
            background: #e5e5e5;
            border-radius: 8px;
            border: 1px solid #d0d0d0;
            transition: all 0.3s ease;
            position: relative;
        }

        .locker-cell.active {
            background: var(--secondary-color);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }

        .locker-cell.orange {
            background: #ff8c00;
        }

        .locker-cell.blue {
            background: #007bff;
        } */

        .control-panel {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 120px;
            background: #2a2a2a;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .screen {
            width: 50px;
            height: 30px;
            background: #00ff88;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #000;
            font-weight: bold;
            animation: shimmer 2s linear infinite;
            background: linear-gradient(90deg, #00ff88 25%, #ffffff 50%, #00ff88 75%);
            background-size: 200px 100%;
        }

        .keypad {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
            margin-top: 5px;
        }

        .key {
            width: 12px;
            height: 12px;
            background: #444;
            border-radius: 2px;
            border: 1px solid #666;
        }

        .glow-effect {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: rotateGlow 4s linear infinite;
            pointer-events: none;
        }

        /* === FEATURES SECTION === */
        .features {
            padding: 1rem 0;
            padding-bottom: 8rem ;
            background: #f5f5f7;
            position: relative;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            animation: fadeInUp 0.8s ease;
        }

        .section-title {
            font-family: 'Montserrat';
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: var(--bg-primary);
            padding: 3rem 2rem;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;

            animation: fadeInDown 0.8s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            width: 0%; /* start with 0 width */
            background: linear-gradient(135deg, #000000 0%, #7f7f7f 100%);
              transition: width 0.5s ease; /* smooth fill */

        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .feature-card:hover::before {
  width: 100%; /* fill full width on hover */
}

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            /* background: var(--gradient-accent); */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: white;
            animation: float 3s ease-in-out infinite;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* === USAGE SECTION === */
        .usage {
            padding: 8rem 0;
            background: var(--bg-primary);
        }

        .usage-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .usage-content {
            animation: fadeInLeft 0.8s ease;
        }

        .usage-image {
            position: relative;
            animation: fadeInRight 0.8s ease;
        }

        /* .locker-environment {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .locker-bank {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 300px;
            background: linear-gradient(145deg, #f8f8f8, #ffffff);
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .locker-slots {
            position: absolute;
            top: 15px;
            left: 15px;
            right: 60px;
            bottom: 15px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(6, 1fr);
            gap: 2px;
        }

        .slot {
            background: #e8e8e8;
            border: 1px solid #d0d0d0;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .slot.occupied {
            background: var(--secondary-color);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .slot.selected {
            background: #4ade80;
            box-shadow: 0 0 15px rgba(74, 222, 128, 0.5);
        }

        .control-interface {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 80px;
            background: #1a1a1a;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .mini-screen {
            width: 25px;
            height: 15px;
            background: #00ff00;
            border-radius: 2px;
            animation: pulse 2s ease-in-out infinite;
        }

        .button-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            margin-top: 5px;
        }

        .mini-button {
            width: 8px;
            height: 8px;
            background: #333;
            border-radius: 1px;
        }

        .person-silhouette {
            position: absolute;
            bottom: 50px;
            right: 100px;
            width: 60px;
            height: 120px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 30px 30px 5px 5px;
            animation: fadeInUp 1.5s ease;
        } */


.locker-showcase-modern {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff, #e6e9ff);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Locker Card */
.locker-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: floatRotate 2s ease forwards;
    animation-delay: var(--delay);
    position: relative;
    overflow: hidden;
}

/* Image inside card */
.locker-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

/* Label below image */
.locker-label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Hover effect */
.locker-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

.locker-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Floating + rotate animation */
@keyframes floatRotate {
    0% { transform: translateY(30px) rotate(0deg); opacity: 0; filter: drop-shadow(0 0 0 #000); }
    50% { transform: translateY(-10px) rotate(1deg); opacity: 1; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15)); }
    100% { transform: translateY(0) rotate(0deg); opacity: 1; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
}

/* Neon glow overlay (animated) */
.locker-card::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    pointer-events: none;
    animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(0.9); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 1024px) {
    .locker-card { width: 150px; }
}

@media (max-width: 768px) {
    .locker-showcase-modern { flex-direction: column; gap: 2rem; }
    .locker-card { width: 200px; }
    .touch-card p{font-size:12px!important;}
}



        /* === STATS SECTION === */
        .stats {
            padding: 6rem 0;
            background: var(--gradient-primary);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            animation: fadeInUp 0.8s ease;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            animation: pulse 2s ease-in-out infinite;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }


     /* Footer Styling */
.footer {
  background: #0b0b0b;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Montserrat';
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  position: relative; /* 🔑 underline mate */
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s ease;
  
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section ul li a:hover::before {
  width: 100%; /* fill full width on hover */
}

.footer-section ul li a::before {
  content: '';
  position: absolute;
  bottom: -5px; /* text niche underline */
  left: 0;
  height: 2px; /* underline thickness */
  width: 0; /* start with 0 */
  background: #bbb;
  transition: width 0.4s ease; /* smooth animation */
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Footer Social Media Icons */
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Makes icons wrap if space is small */
}

.footer-social a {
  text-decoration: none;
  color: white;
  font-size: 15px;
  border: 1px solid white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: white;
  color: #000;
  transform: scale(1.1);
}

/* Responsive Footer Layout */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  flex: 1 1 250px; /* Minimum width for branding section */
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 2 1 400px;
}

.footer-section {
  min-width: 150px;
}

/* Center Social Icons on Small Screens */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}


/* ✅ Responsive Styles */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}


        /* === RESPONSIVE DESIGN === */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 1rem;
            }

            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .usage-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .locker-main {
                height: 400px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }

        /* === SCROLL ANIMATIONS === */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* === GLASS MORPHISM EFFECTS === */
        .glass {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .glass-dark {
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }



 .btn-contact{
  
  display:inline-block;
  padding:10px 25px;
  /* margin-left:15px; */
  background:#fff;        /* Scroll pehla / normal */
  color:#000000;          /* Dark text */
  /* border:2px solid #001248; */
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Hover effect for lift / 3D */
.btn-contact:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Tablet screens */
@media (max-width: 992px) {
  .btn-contact {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .btn-contact {
    display: block;         /* full width button */
    width: 100%;            /* stretch across */
    text-align: center;     /* text center */
    padding: 12px 0;        /* more height */
    font-size: 1rem;
    margin: 10px 0;         /* spacing top/bottom */
  }
}



/* Introduction Section */
/* .intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
}

.intro-content {
  flex: 1;
}

.intro-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #001251;
}

.intro-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
} */



/* */
.locker-title {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(51, 51, 51);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.diff-lock {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fefefe;
}

.diff-lock-container {
  
  display: flex;
  align-items: center;
  gap: 120px;
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 12px;
  justify-content: center;
}

.center {
  width: 620px; /* moved from inline */
  z-index: 100;
}

.side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 455px; /* same as image height */
  width: 220px;
}

.left .diff-lock-content {
  text-align: end;
}

.right .diff-lock-content {
  text-align: start;
  width: 250px;
}

.diff-lock-content {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlide 1s forwards;
}

/* Delay animation for each line */
.diff-lock-content:nth-child(1) { animation-delay: 0.3s; }
.diff-lock-content:nth-child(2) { animation-delay: 0.6s; }
.diff-lock-content:nth-child(3) { animation-delay: 0.9s; }
.diff-lock-content:nth-child(4) { animation-delay: 1.2s; }
.diff-lock-content:nth-child(5) { animation-delay: 1.5s; }
.diff-lock-content:nth-child(6) { animation-delay: 1.8s; }
.diff-lock-content:nth-child(7) { animation-delay: 2.1s; }
.diff-lock-content:nth-child(8) { animation-delay: 2.4s; }

/* Center image animation */
.center img {
  height: 650px;
  display: block;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.5s;
}

/* connecting lines + square end */
.left .diff-lock-content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 175px;
  height: 2px;
  background: #333;
  opacity: 0;
  transform: scaleX(0);
  animation: lineGrow 0.8s forwards;
  animation-delay: 1s;
}

.left .diff-lock-content::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 10px;
  height: 10px;
  background: #333;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  animation: dotPop 0.5s forwards;
  animation-delay: 1.5s;
}

.right .diff-lock-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -235px;
  width: 200px;
  height: 2px;
  background: #333;
  opacity: 0;
  transform: scaleX(0);
  animation: lineGrow 0.8s forwards;
  animation-delay: 1s;
}

.right .diff-lock-content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 10px;
  height: 10px;
  background: #333;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  animation: dotPop 0.5s forwards;
  animation-delay: 1.5s;
}

/* Animations */
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes dotPop {
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* ✅ Responsive Design */

/* Tablets */
@media (max-width: 992px) {
  .diff-lock-container {
    gap: 60px;
    flex-wrap: wrap;
  }

  .center {
    width: 100%;
    text-align: center;
  }

  .center img {
    height: 450px;
    max-width: 100%;
  }

  .side {
    height: auto;
    width: 200px;
  }
}

/* Mobile */
/* Hide timeline on desktop */
.mobile-only {
  display: none;
}
.desktop-only { display: block; }

@media (max-width: 768px) {
  .mobile-only {
    display: block;
    /* padding: 20px; */
  }
  .desktop-only { display: none; }

 /* body {
                padding: 10px;
            } */
            
            .slide-header {
            background-color: #5b5a5f;
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        
        .slide-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .slide-subtitle {
            font-size: 32px;
            font-weight: 700;
            opacity: 0.9;
        }
        
        .comparison-container {
            display: flex;
            flex-direction: column;
        }
        
        .column-headers {
            display: flex;
        }
        
        .column-header {
            flex: 1;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            color: white;
        }
        
        .column-header.left {
            background-color: #8e8f8f;
        }
        
        .column-header.right {
            background-color: #8e8f8f;
        }
        
        .comparison-rows {
            display: flex;
            flex-direction: column;
        }
        
        .comparison-row {
            display: flex;
            border-bottom: 1px solid #eaeaea;
            position: relative;
        }
        
        .comparison-row:last-child {
            border-bottom: none;
        }
        
        .comparison-cell {
            flex: 1;
            display: flex;
            padding: 25px;
            align-items: center;
        }
        
        .comparison-cell.left {
            background-color: #f8f9fa;
            justify-content: flex-end;
            padding-right: 40px;
        }
        
        .comparison-cell.right {
            background-color: #e1e1e1;
            padding-left: 40px;
        }
        
        .timeline-icon {
          top: 90px;
            position: absolute;
            left: 51%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5b5a5f, #8e8f8f);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .timeline-icon i {
            font-size: 24px;
        }
        
        .timeline-connector {
            position: absolute;
            
            left: 51%;
            transform: translateX(-50%);
            width: 4px;
            height: calc(100% - -123px);
            background: #8e8f8f;
            z-index: 1;
        }
        
        .comparison-row:last-child .timeline-connector {
            display: none;
        }
        
        .cell-content {
            text-align: center;
            width: 100%;
        }
        
        .cell-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }
        
        .cell-description {
            font-size: 14px;
            line-height: 1.5;
            color: #555;
        }}

.timeline-icon {
  transform: translateX(-50%) scale(0);
  opacity: 0;
  animation: iconPop 0.5s forwards;
  animation-delay: 0.5s;
}

@keyframes iconPop {
  to {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

.timeline-connector {
  height: 0;
  animation: growLine 1.5s forwards;
  animation-delay: 0.6s;
}

@keyframes growLine {
  to {
    height: calc(100% - -123px); /* same as your original height */
  }
}







/* Section Container */
.why-choose-us {
  padding: 80px 20px;
  background-color: #f5f5f7;
  font-family: 'Montserrat';
}

.why-choose-us .container {
  max-width: 1800px;
  margin: 0 auto;
  text-align: center;
}

/* Section Title */
.why-choose-us .section-title {
  font-size: 2.5rem;
  font-weight: 650;
  color: rgb(51, 51, 51);
  margin-bottom: 60px;
  position: relative;
}

.why-choose-us .section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: rgb(51, 51, 51);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Cards Grid */
.why-choose-us .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Styling */
.why-choose-us .card {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-choose-us .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Card Icon */
.why-choose-us .card .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 18px;
  filter: grayscale(0.2) brightness(1.1);
  transition: transform 0.35s ease;
}

.why-choose-us .card:hover .icon {
  transform: scale(1.15);
}

/* Card Title */
.why-choose-us .card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 12px;
}

/* Card Text */
.why-choose-us .card p {
  font-size: 0.95rem;
  color: #4b4b60;
  line-height: 1.6;
}

/* View More Button */
.why-choose-us .view-more-btn {
  display: inline-block;
  margin-top: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgb(51, 51, 51);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.35s ease, transform 0.25s ease;
}

.why-choose-us .view-more-btn:hover {
  background-color: #5f5f5f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-us .section-title {
    font-size: 2rem;
  }

  .why-choose-us .card {
    padding: 25px 15px;
  }
}



 /* Smart Locker Solutions Section - Light Theme */
        .smart-locker-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .smart-locker-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #f5f5f7;
            animation: backgroundMove 20s ease-in-out infinite;
        }

        @keyframes backgroundMove {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .solutions-tag {
            color: rgb(51, 51, 51);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .main-heading {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }

        .main-heading .highlight {
            color: #555;
        }

        .main-description {
            font-size: 1.1rem;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        /* Service Cards with Image Layout */
        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 80px;
            margin-top: 80px;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            opacity: 0;
            animation: slideInView 1s ease-out forwards;
            /* background: white; */
            /* border-radius: 20px; */
            padding: 45px;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
            transition: all 0.4s ease;
        }

        /* .service-item:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        } */

        .service-item:nth-child(1) { animation-delay: 0.8s; }
        .service-item:nth-child(2) { animation-delay: 1.2s; }
        .service-item:nth-child(3) { animation-delay: 1.6s;direction: rtl; }

        /* .service-item:nth-child(even) {
            direction: rtl;
        } */

        .service-item:nth-child(even) .service-content {
            direction: ltr;
            /* text-align: right; */
        }

        .service-content {
            padding: 20px;
            /* justify-items: flex-end; */
        }

        .service-tag {
            color: #3b82f6;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .service-tag.software { color: #f59e0b; text-align: left !important;
        display: block; }
        .service-tag.operational { color: #10b981; }

        .service-title {
            text-align: left;
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .service-subtitle {
            font-size: 2rem;
            font-weight: 300;
            color: #6b7280;
            margin-bottom: 25px;
        }

        .service-description {
          text-align: left;
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .service-btn {
            display: inline-block;
            padding: 15px 35px;
            background: #3b82f6;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .service-btn.software {
            /* margin-right: 53%; */
            background: #f59e0b;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        }

        .service-btn.operational {
            background: #10b981;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .service-btn.software:hover {
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .service-btn.operational:hover {
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .service-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .service-btn:hover::before {
            left: 100%;
        }

        /* Image/Video Container */
        /* .service-visual {
            position: relative;
            /* border-radius: 15px; 
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background: #f8fafc;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e5e7eb;
        }

        .service-visual:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        } */

        /* Smart Locker Visual - Clean Blue */
        /* .locker-visual {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .locker-visual {
  position: relative;
  width: 100%;
  height: 400px; /* Keeps same size as before */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  /* border-radius: 15px; */
  overflow: hidden;
}

.locker-media {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes it fill neatly */
  border-radius: 0;
}

.grid-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* video div ne fully cover kare */
}


/* ===========================
   Responsive Adjustments
   =========================== */

/* Tablets (max 992px) */
@media (max-width: 992px) {
  .services-grid {
    gap: 60px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .service-content {
    text-align: center;
    /* padding: 0; */
  }

  .service-title,
  .service-description {
    text-align: center;
  }


  .service-tag.software {
    text-align: center !important;
  }

  .locker-visual,
  .software-visual,
  .operational-visual {
    height: 320px;
  }

  .locker-media,
  .grid-video,
  .operational-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Mobiles (max 768px) */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .main-description {
    font-size: 1rem;
  }

  .services-grid {
    gap: 40px;
    margin-top: 50px;
  }

  .service-item {
    padding: 20px;
    gap: 25px;
  }
  .service-tag.software {
    text-align: center !important;
  }

  .service-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center !important;
  }

  .service-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .service-btn.software{
      width: 235px;
      margin-right: 2px;
  }

  .locker-visual,
  .software-visual,
  .operational-visual {
    height: auto;
  }

  .locker-media,
  .grid-video,
  .operational-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}



        .locker-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8px;
            width: 80%;
            height: 70%;
            perspective: 1000px;
        }

        .locker-unit {
            background: white;
            border: 2px solid #3b82f6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: #1e40af;
            transition: all 0.3s ease;
            animation: lockerPulse 3s ease-in-out infinite;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
        }

        .locker-unit:nth-child(odd) {
            animation-delay: 0.5s;
        }

        .locker-unit:nth-child(3n) {
            animation-delay: 1s;
        }

        .locker-unit:hover {
            background: #eff6ff;
            transform: rotateY(10deg) scale(1.05);
            border-color: #2563eb;
        }

        @keyframes lockerPulse {
            0%, 100% { 
                background: white;
                box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
            }
            50% { 
                background: #f0f9ff;
                box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
            }
        }

        .locker-brand {
            position: absolute;
            top: 20px;
            left: 20px;
            color: #1e40af;
            font-size: 1.4rem;
            font-weight: 700;
            background: white;
            padding: 8px 16px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Software Platform Visual - Clean Grid */
        .software-visual {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
            position: relative;
            width: 100%;
            /* height: 400px; */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .software-grid {
          /* display: grid */

    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    animation: slideInView 1s ease-out forwards;
    /* background: white; */
    /* border-radius: 20px; */
    /* padding: 40px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
}
        



       
       

        /* Operational Services Visual - Clean Green */
        .operational-visual {
             width: 100%;
  display: flex;
  justify-content: center; /* center image horizontally */
  align-items: center;    /* center image vertically if height set */
  overflow: hidden;
        }

        .operational-image {
  width: 100%;        /* container ni width puri cover kare */
 /*  max-width: 600px;   optional, image max size */
  height: auto;       /* aspect ratio maintain */
  display: block;
}

        .maintenance-scene {
            width: 80%;
            height: 70%;
            position: relative;
        }

        .worker-figure {
            position: absolute;
            bottom: 20px;
            left: 30px;
            width: 45px;
            height: 65px;
            background: #3b82f6;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            animation: workerMove 4s ease-in-out infinite;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .worker-figure::before {
            content: '';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 22px;
            background: #fbbf24;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
        }

        @keyframes workerMove {
            0%, 100% { transform: translateX(0px); }
            50% { transform: translateX(25px); }
        }

        .maintenance-tools {
            position: absolute;
            top: 25px;
            right: 35px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tool {
            width: 35px;
            height: 10px;
            background: #10b981;
            border-radius: 5px;
            animation: toolBlink 2s ease-in-out infinite;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
        }

        .tool:nth-child(2) { 
            animation-delay: 0.5s;
            background: #f59e0b;
        }
        .tool:nth-child(3) { 
            animation-delay: 1s;
            background: #ef4444;
        }

        @keyframes toolBlink {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.95); }
        }

        .status-indicators {
            position: absolute;
            bottom: 25px;
            right: 35px;
            display: flex;
            gap: 8px;
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #10b981;
            animation: statusPulse 1.5s ease-in-out infinite;
        }

        .status-dot:nth-child(2) {
            background: #f59e0b;
            animation-delay: 0.3s;
        }

        .status-dot:nth-child(3) {
            background: #3b82f6;
            animation-delay: 0.6s;
        }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInView {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .smart-locker-section {
                padding: 60px 0;
            }
            
            .service-item {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 30px;
            }
            
            .service-item:nth-child(even) {
                direction: ltr;
            }
            
            .service-item:nth-child(even) .service-content {
                text-align: center;
            }
            
            .service-visual {
                min-height: 300px;
            }
            
            .main-heading {
                font-size: 2.5rem;
            }
        }





.slider-section { width:100%; min-height:100vh; background:#f9fafb; display:flex; flex-direction:column; align-items:center; justify-content:center; overflow:hidden; padding:60px 20px; box-sizing:border-box;}
.section-header { text-align:center; margin-bottom:40px; color:#222; }
.section-header h2 { font-size:2.5rem; margin:0 0 10px; }
.section-header p { font-size:1.2rem; opacity:0.85; }
.slider-container { display:flex; align-items:center; width:100%; position:relative; overflow:hidden;}
.slider-track { display:flex; transition: transform 0.6s ease-in-out; }
/* Cards */
.card-second {
  min-width: 400px;
  height: 550px; /* 🔹 Aa line upar thi height vadhaaro */
  background: #fff;
  margin: 0 15px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column; /* content vertically arrange karva */
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  padding: 20px; /* content spacing mate */
}

.customer-photo { width:60px; height:60px; border-radius:50%; object-fit:cover; margin-bottom:10px; border:2px solid #007bff; }
.customer-name { font-weight:bold; font-size:1.1rem; margin-top:10px; }
.customer-position { font-style:italic; font-size:0.9rem; margin-bottom:5px; }
.slider-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,0.6); color:#fff; border:none; padding:12px 18px; font-size:1.3rem; border-radius:50%; cursor:pointer; z-index:10; }
.slider-btn:hover { background:rgba(0,0,0,0.8); }
.prev { left:20px; }
.next { right:20px; }

@media(max-width:1024px){ .card{min-width:45%;} }
@media(max-width:768px){ .card{min-width:80%;} }



.locker-showcase {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.locker-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.locker-title p {
  text-transform: lowercase;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #444;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 🔥 SCROLLER WRAPPER */
.locker-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* .locker-track {
  display: flex;
  width: calc(300px * 6); /* Adjust based on number of items 
  animation: scroll 25s linear infinite;
} */

.locker-track {
  display: flex;
  /* width: 500px; */
  transition: transform 0.5s ease; /* smooth jump */
  
}

/* Locker Cards */
.locker-item {
    height: 650px;
  min-width: 750px;
  margin: 0 5px;
  position: relative;
  /* border-radius: 15px; */
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.locker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.locker-item:hover img {
  transform: scale(1.05);
}

.locker-overlay {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.locker-item:hover .locker-overlay {
  opacity: 1;
  transform: translateY(0);
}

.locker-track:hover {
  animation-play-state: paused;
}


/* 🔥 Infinite Scroll Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tablet View */
@media (max-width: 992px) {
  .locker-item {
    min-width: 50%;   /* 2 cards ek sathe */
    height: 450px;    /* thodu small */
  }
}

/* Mobile View */

@media (max-width: 768px) {
  .locker-track {
    display: flex;
              /* scroll enable */
    scroll-snap-type: x mandatory; /* smooth snap */
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
  }

  .locker-item {
    flex: 0 0 100%;            /* ek item = full screen width */
    min-width: 100%;           /* 100% of viewport */
    max-width: 100%;
    height: auto;
    scroll-snap-align: start;  /* snap each image */
  }
}


/* Small Phones */
@media (max-width: 500px) {
  .locker-item {
    flex: 0 0 100%;
    height: auto;
  }
}



/* Stats Section */
.stats-modern {
  background: #434343;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.stat h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat p {
  font-size: 1rem;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .usage-card {
    padding: 20px;
  }

  .stat h3 {
    font-size: 1.8rem;
  }
}



.get-in-touch {
  background: #f5f5f7;
  padding: 100px 20px;
  text-align: center;
}

.touch-header h2 {
  font-size: 2.8rem;
  color: rgb(51, 51, 51);
  margin-bottom: 15px;
  font-weight: 700;
}

.touch-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.touch-btn {
  background: rgb(51, 51, 51);
  color: #fff;
  text-decoration: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: 0.3s ease;
}

.touch-btn:hover {
  background: #5f5f5f;
}

/* Info Cards */
.touch-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.touch-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  min-width: 220px;
  flex: 1;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, background 0.3s ease;
}

.touch-card:hover {
  transform: translateY(-5px);
  background: #fbfbfb;
}

.touch-card h3 {
  color: rgb(51, 51, 51);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.touch-card p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .touch-cards {
    flex-direction: column;
  }

  .touch-card {
    width: 90%;
    margin: 0 auto;
  }

  .touch-header h2 {
    font-size: 2.2rem;
  }
}


/*csssssssssss*/

/* Page Header */
.page-header {
  
  padding: 150px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("./Images/section5.webp") no-repeat center center/cover;
  /* background-image: url("./Images/section1.jpg"); */
 
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission, .vision {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.mission h3, .vision h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: #f5f5f7;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  /* border: 1px solid var(--primary-color); */
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
}

.value-icon img {
  width: 40px;
  height: 40px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Solutions Section */

.page-header-s {
  
  padding: 150px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("./Images/section3.webp") no-repeat center center/cover;
  /* background-image: url("./Images/section1.jpg"); */
 
  text-align: center;
  color: white;

}
.page-header-s h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header-s p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.solutions-section {
  padding: 80px 0;
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f5f5f7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.solution-image {
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.solution-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.solution-content ul {
  margin-bottom: 30px;
}

.solution-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.solution-content ul li::before {
  content: '\f00c';
  font-family: 'Montserrat';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Products Section */

.page-header-p {
  
  padding: 150px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("./Images/section1.webp") no-repeat center center/cover;
  /* background-image: url("./Images/section1.jpg"); */
 
  text-align: center;
  color: white;

}
.page-header-p h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header-p p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}


.products-section {
  padding: 80px 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: #f2f2f2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.product-content p {
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: white;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.product-features i {
  color: var(--accent-color);
}

/* Comparison Section */
.comparison-section {
  padding: 50px 0;
  background: #f2f2f2;
}

.comparison-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.comparison-table {
  overflow-x: auto;
  
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th, .comparison-table td {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table i {
  color: var(--accent-color);
}

.comparison-table .fa-times {
  color: var(--text-secondary);
}

/* Services Page Section */

.page-header-se {
  
  padding: 150px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("./Images/section4.webp") no-repeat center center/cover;
  /* background-image: url("./Images/section1.jpg"); */
 
  text-align: center;
  color: white;

}
.page-header-se h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header-se p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.services-page-section {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #f5f5f7;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: 50%;
}

.service-icon img {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.service-card p {
  margin-bottom: 20px;
  text-align: center;
}

.service-card ul {
  margin-bottom: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-card ul li::before {
  content: '\f00c';
  font-family: 'Montserrat';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.social-links {
  margin-top: 40px;
}

.social-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
}

.contact-form {
  background: #f5f5f7;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Montserrat';
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.btn-primary{
    width: 100%;
    display: inline-block;
    margin-top: 50px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(51, 51, 51);
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.35s ease, transform 0.25s ease;
}

.btn-primary:hover{
 background-color: #5f5f5f;
  transform: translateY(-3px);
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f5f5f7;
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid,
  .solution-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .solution-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 20px;
  }
}


/* Blog Section */
/* Page Header */
.page-header1 {
  
  padding: 150px 0 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url("./Images/section6.webp") no-repeat center center/cover;
  /* background-image: url("./Images/section1.jpg"); */
 
  text-align: center;
  color: white;
}

.page-header1 h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-header1 p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.blog-section {
  padding: 80px 0;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Blog Posts */
.blog-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  background: #f5f5f7;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-post.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.blog-post.featured .post-image {
  height: 100%;
}

.blog-post.featured .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-image {
  height: 250px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  background: #f5f5f7;
  padding: 30px;
}

.blog-post.featured .post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.post-category {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.post-date {
  color: var(--text-secondary);
}

.blog-post.featured h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-post h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-post p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.read-more:hover::after {
  width: 100%;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
  gap: 50px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f7;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.page-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.page-link.active {
  background: var(--primary-color);
  color: white;
}

.page-link:last-child {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #f5f5f7;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Montserrat';
  font-size: 1rem;
  transition: var(--transition);
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.search-form button {
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  background: var(--secondary-color);
}

/* Categories Widget */
.categories-widget ul {
  list-style: none;
}

.categories-widget li {
  margin-bottom: 10px;
}

.categories-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.categories-widget a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.categories-widget span {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* Recent Posts Widget */
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.recent-post:hover .recent-post-image img {
  transform: scale(1.1);
}

.recent-post-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h4 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.recent-post-content h4 a:hover {
  color: var(--primary-color);
}

.recent-post-content .post-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Newsletter Widget */
.newsletter-widget p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags-cloud a {
  display: inline-block;
  padding: 6px 12px;
  background: #ffffff;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tags-cloud a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post.featured {
    grid-template-columns: 1fr;
  }
  
  .blog-post.featured .post-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .sidebar-widget h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .post-content {
    padding: 20px;
  }
  
  .blog-post.featured h2 {
    font-size: 1.5rem;
  }
  
  .blog-post h3 {
    font-size: 1.2rem;
  }
  
  .recent-post {
    flex-direction: column;
  }
  
  .recent-post-image {
    width: 100%;
    height: 150px;
  }
}