:root {
    --primary: #0A84FF;
    --dark: #0B0F19;
    --text-dark: #0f172a;
    --text-light: #64748b;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    padding-top: 100px;
    color: var(--text-dark);
  }
  
  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
  }
  html {
    scroll-behavior: smooth;
  }
  
  /* ===== GLOBAL H2 STYLE ===== */

h2{
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 20px;

  
}
@media (max-width:768px){
  h2{
    font-size:26px;
  }
}
  /* =========================================
     FLOATING GLASS HEADER (ATHER STYLE)
  ========================================= */
  
  .main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    max-width: 1600px;
    z-index: 1000;
    transition: all 0.4s ease;
  }
  
  .nav-wrapper {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 0 35px;
    height: 75px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
  }
  
  /* Scroll shrink */
  .main-header.scrolled {
    top: 10px;
    transform: translateX(-50%) scale(0.96);
  }
  
  .logo img {
    height: 45px;
    transition: 0.3s;
  }
  
  .nav-links {
    display: flex;
    gap: 35px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#0A84FF,#005BEA);
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-btn {
    padding: 10px 26px;
    border-radius: 40px;
    background: linear-gradient(135deg,#0A84FF,#005BEA);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(10,132,255,0.25);
    transition: 0.3s;
  }
  
  .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(10,132,255,0.35);
  }
  
  /* =========================================
     HERO SECTION
  ========================================= */
  
  .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    transition: transform 0.6s ease;
  }
  
  /* Hero shrink animation */
  .hero.shrink {
    transform: scale(0.90);
  }
  
  .hero::before {
    background: rgba(0,0,0,0.15);
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;   /* IMPORTANT */
  }
  
  .slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
  }
  
  .slide {
    flex: 0 0 100%;   /* THIS is the magic */
    height: 100%;
    display:flex;
  align-items:center;
  justify-content:center;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .slider-dots {
    display: flex;
    gap: 12px;
  }
  
  .slider-dots span {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  
  .slider-dots span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
  }
  
  .slider-dots span.active::after {
    animation: progress 3s linear forwards;
  }
  
  @keyframes progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  

  
  .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* push content to bottom */
    align-items: center;
    padding-bottom: 40px;
    z-index: 2;
    color: #fff;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;  /* space between buttons & dots */
  }
  
  
  /* =========================================
     BUTTONS
  ========================================= */
  
  .btn {
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
    text-decoration: none;   /* removes underline */
    
    backdrop-filter: blur(12px);
  }
  
  /* Light Glass Button */
  .btn.light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
  }
  
  .btn.light:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.3);
  }
  
  /* Dark Premium Button */
  .btn.dark {
    background: linear-gradient(135deg, #0A84FF, #0056d6);
    color: #fff;
    box-shadow: 0 8px 25px rgba(10,132,255,0.4);
  }
  
  .btn.dark:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(10,132,255,0.6);
  }
  
  /* =========================================
     SECTIONS
  ========================================= */
  
  .section {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
  }
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 34px;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 40px;
  }
  
  .card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transition: 0.4s;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
  }
  
  /* =========================================
     FOOTER
  ========================================= */
  
  footer {
    background: #05070c;
    color: #94a3b8;
    padding: 60px 0 20px;
  }
  
  .footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  footer h4 {
    color: #fff;
  }
  
  .copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }

 /* ===== PREMIUM MODAL ===== */

.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(10,15,25,0.6);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    justify-content:center;
    align-items:center;
    z-index:9999;
    animation:fadeIn 0.3s ease forwards;
    }
    
    .modal-content{
    background:rgba(255,255,255,0.95);
    padding:40px 35px;
    width:90%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    position:relative;
    transform:scale(0.9);
    opacity:0;
    animation:scaleIn 0.3s ease forwards;
    }
    
    @keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
    }
    
    @keyframes scaleIn{
    to{transform:scale(1);opacity:1;}
    }
    
    .modal-content h2{
    margin-bottom:8px;
    font-size:24px;
    font-weight:600;
    }
    
    .modal-sub{
    color:#64748b;
    margin-bottom:25px;
    font-size:14px;
    }
    
    .close-btn{
    position:absolute;
    top:15px;
    right:20px;
    font-size:24px;
    background:none;
    border:none;
    cursor:pointer;
    color:#333;
    transition:0.3s;
    }
    
    .close-btn:hover{
    transform:rotate(90deg);
    color:#0A84FF;
    }
    
    .modal input,
    .modal textarea{
    width:100%;
    padding:12px 14px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #e2e8f0;
    font-family:'Poppins',sans-serif;
    transition:0.3s;
    }
    
    .modal input:focus,
    .modal textarea:focus{
    border-color:#0A84FF;
    outline:none;
    box-shadow:0 0 0 3px rgba(10,132,255,0.15);
    }
    
    .modal button{
    width:100%;
    padding:12px;
    border-radius:12px;
    }

    /* SUCCESS MESSAGE */
.modal-success{
    display:none;
    background:#ecfdf5;
    color:#065f46;
    padding:15px;
    border-radius:10px;
    margin-top:15px;
    font-size:14px;
    }
    
    /* CLOSE BUTTON AT BOTTOM */
    .close-btn-bottom{
    margin-top:20px;
    width:100%;
    padding:10px;
    background:#0A84FF;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
    }
    
    .close-btn-bottom:hover{
    background:#086cd6;
    }

    /* Disabled State */
#submitBtn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    }
    
    /* Active Glow State */
    #submitBtn.active {
    opacity: 1;
    cursor: pointer;
    animation: glowPulse 1.5s infinite;
    }
    
    /* Glow Animation */
    @keyframes glowPulse {
    0% {
    box-shadow: 0 0 0px rgba(10,132,255,0.4);
    }
    50% {
    box-shadow: 0 0 20px rgba(10,132,255,0.8);
    }
    100% {
    box-shadow: 0 0 0px rgba(10,132,255,0.4);
    }
    }

    /* Success Message */
.modal-success{
    display:none;
    background:#ecfdf5;
    color:#065f46;
    padding:15px;
    border-radius:10px;
    margin-top:15px;
    font-size:14px;
    }
    
    /* Disabled Button */
    #submitBtn.disabled {
    opacity:0.6;
    cursor:not-allowed;
    box-shadow:none;
    }
    
    /* Active Glow */
    #submitBtn.active {
    opacity:1;
    cursor:pointer;
    animation:glowPulse 1.5s infinite;
    }
    
    @keyframes glowPulse {
    0%{box-shadow:0 0 0px rgba(10,132,255,0.4);}
    50%{box-shadow:0 0 20px rgba(10,132,255,0.8);}
    100%{box-shadow:0 0 0px rgba(10,132,255,0.4);}
    }
    
    /* Bottom Close Button */
    .close-btn-bottom{
    margin-top:20px;
    width:100%;
    padding:10px;
    background:#0A84FF;
    color:#fff;
    border:none;
    border-radius:10px;
    cursor:pointer;
    }

    .about-section {
        padding: 45px 0;
        background: #ffffff;
      }
      
      .about-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
      }
      
      .about-label {
        font-size: 28px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #0A84FF;
        margin-bottom: 15px;
        display: inline-block;
      }
      
      .about-text h2 {
        
        line-height: 1.3;
        margin-bottom: 15px;
        color: #0f172a;
      }
      
      .about-text p {
        font-size: 16px;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 12px;
      }
      
      .about-text strong {
        color: #0f172a;
      }
      
      .about-features {
        margin-top: 25px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        font-size: 14px;
        color: #334155;
      }
      
      /* Right Card */
      .about-card {
        background: #f8fafc;
        padding: 40px;
        border-radius: 10px;
        position: relative;
        border: 1px solid #e2e8f0;
      }
      
      .card-line {
        width: 50px;
        height: 3px;
        background: #0A84FF;
        margin-bottom: 20px;
      }
      
      .about-card h3 {
        margin-bottom: 15px;
        color: #0f172a;
      }
      
      .about-card p {
        font-size: 15px;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 30px;
      }
      
      .about-stats {
        display: flex;
        gap: 40px;
      }
      
      .stat h4 {
        font-size: 20px;
        color: #0A84FF;
        margin-bottom: 5px;
      }
      
      .stat span {
        font-size: 13px;
        color: #64748b;
      }



      .product-range {
        padding: 20px 0;
        background: #f8fafc;
      }
      
      .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 70px;
      }
      
      .section-kicker {
        font-size: 12px;
        letter-spacing: 2px;
        font-weight: 600;
        color: #0A84FF;
        display: inline-block;
        margin-bottom: 15px;
      }
      
      .section-header h2 {
       
        color: #0f172a;
        margin-bottom: 15px;
      }
      
      .section-header p {
        font-size: 16px;
        color: #64748b;
        line-height: 1.7;
      }
      
      .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
      
      .product-card {
        background: #ffffff;
        padding: 40px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      
      .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
      }
      
      .card-top-line {
        width: 50px;
        height: 3px;
        background: #0A84FF;
        margin-bottom: 25px;
      }
      
      .product-card h3 {
        font-size: 20px;
        color: #0f172a;
        margin-bottom: 20px;
      }
      
      .product-spec {
        font-size: 14px;
        color: #334155;
        margin-bottom: 8px;
      }
      
      .product-desc {
        font-size: 14px;
        color: #475569;
        line-height: 1.7;
        margin: 20px 0 30px;
      }
      
      .product-btn {
        display: inline-block;
        padding: 12px 24px;
        border: 1px solid #0A84FF;
        color: #0A84FF;
        text-decoration: none;
        font-size: 14px;
        border-radius: 30px;
        transition: all 0.3s ease;
      }
      
      .product-btn:hover {
        background: #0A84FF;
        color: #ffffff;
      }

      .welcome-badge {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 30px;
        background: rgba(10,132,255,0.08);
        margin-bottom: 20px;
      }
      
      .welcome-text {
        font-size: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #64748b;
        margin-right: 6px;
      }
      
      .brand-text {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.2px;
        color: #0A84FF;
      }
      
      .about-text h2 {
   
        margin-bottom: 18px;
      }

      .welcome-block {
        margin-bottom: 25px;
      }
      
      .welcome-small {
        display: block;
        font-size: 16px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #64748b;
        margin-bottom: 6px;
      }
      .welcome-med{
        font-size: 20px;
      }
      
      .welcome-brand {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 1px;
        color: #0f172a;
        line-height: 1.2;
        position: relative;
        
      }
      
      /* Accent line under brand */
      .welcome-brand::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background: #0A84FF;
        margin-top: 12px;
        border-radius: 2px;
       
      }

      /* ===== APPLICATIONS SECTION ===== */

.applications {
  padding: 90px 0;
  background:#ffffff;
}

.applications h2{
  text-align:center;
  font-size:32px;
  margin-bottom:15px;
}

.applications p{
  text-align:center;
  max-width:720px;
  margin:auto;
  color:#64748b;
  margin-bottom:50px;
}

.app-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.app-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:30px;
  text-align:center;
  transition:all .3s ease;
}

.app-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.app-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.app-card span{
  color:#64748b;
  font-size:14px;
}



/* ===== MANUFACTURING SECTION ===== */

.manufacturing{
  padding:90px 0;
  background:#f8fafc;
}

.manufacturing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.manufacturing h2{
  font-size:32px;
  margin-bottom:20px;
}

.manufacturing p{
  color:#475569;
  margin-bottom:20px;
  line-height:1.7;
}

.manufacturing-img{
  width:100%;
  border-radius:12px;
  overflow:hidden;
}

.manufacturing-img img{
  width:100%;
  display:block;
  border-radius:12px;
}

.manufacturing-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
  align-items:start;
  }
  
  /* PROCESS */
  
  .process-step{
  position:relative;
  padding-left:60px;
  margin-bottom:35px;
  }
  
  .process-step span{
  position:absolute;
  left:0;
  top:0;
  font-size:20px;
  font-weight:700;
  color:#0A84FF;
  }
  
  .process-step h3{
  font-size:18px;
  margin-bottom:8px;
  color:#0f172a;
  }
  
  .process-step p{
  color:#64748b;
  font-size:14px;
  line-height:1.6;
  }
  
  
  /* STATS */
  
  .manufacturing-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  }
  
  .stat-box{
  background:white;
  padding:30px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
  }
  
  .stat-box h3{
  font-size:30px;
  color:#0A84FF;
  margin-bottom:10px;
  }
  
  .stat-box p{
  color:#64748b;
  font-size:14px;
  }



/* ===== INDUSTRIES SECTION ===== */

.industries{
  padding:90px 0;
  background:#ffffff;
}

.industries h2{
  text-align:center;
  font-size:32px;
  margin-bottom:50px;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.industry-card{
  border:1px solid #e5e7eb;
  padding:25px;
  border-radius:10px;
  text-align:center;
  transition:.3s;
}

.industry-card:hover{
  border-color:#0A84FF;
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.industry-card h3{
  font-size:18px;
}

/* ===== CTA SECTION ===== */

.cta-section{
  padding:80px 0;
  background:#0A84FF;
  text-align:center;
  color:#ffffff;
}

.cta-section h2{
  font-size:32px;
  margin-bottom:15px;
}

.cta-section p{
  max-width:600px;
  margin:auto;
  margin-bottom:30px;
  opacity:.9;
}

.cta-btn{
  background:#ffffff;
  color:#0A84FF;
  padding:14px 30px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.cta-btn:hover{
  background:#0f172a;
  color:#ffffff;
}

/* ===== MOBILE ===== */

@media (max-width:900px){

  .manufacturing-grid{
    grid-template-columns:1fr;
  }
  
  .app-grid,
  .industry-grid{
    grid-template-columns:1fr;
  }
  
  }





/* =========================================
   COMPACT PREMIUM CORPORATE FOOTER
========================================= */

.main-footer {
    position: relative;
    background: linear-gradient(145deg, #0b1220, #0f172a);
    padding: 60px 0 0;   /* ↓ reduced from 100px */
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #cbd5e1;
  }
  
  /* Electric top line */
  .main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0A84FF, #38bdf8, #0A84FF, transparent);
    animation: electricPulse 4s linear infinite;
  }
  
  @keyframes electricPulse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
  }
  
  /* Grid */
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;   /* ↓ reduced gap */
    padding-bottom: 40px; /* ↓ reduced */
  }
  
  /* Compact Glass Cards */
  .footer-col {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 22px;   /* ↓ smaller */
    transition: all 0.3s ease;
  }
  
  .footer-col:hover {
    transform: translateY(-4px);
    border: 1px solid rgba(10,132,255,0.35);
  }
  
  /* Headings */
  .footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
  }
  
  .footer-col h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #0A84FF;
  }
  
  /* Text */
  .footer-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 12px;
  }
  
  /* Links */
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    font-size: 13px;
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #ffffff;
  }
  
  /* Social Icons - smaller */
  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }
  
  .social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #94a3b8;
    transition: all 0.3s ease;
  }
  
  .social-icons a svg {
    width: 16px;
    height: 16px;
  }
  
  .social-icons a:hover {
    background: #0A84FF;
    color: #fff;
    transform: translateY(-3px);
  }
  
  /* Bottom Bar */
  .footer-bottom {
    margin-top: 20px;
    padding: 18px 10px;
    font-size: 12px;
    text-align: center;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #0b1220;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-grid {
      gap: 25px;
    }
  }

/* ===== FLOATING BUTTONS CONTAINER ===== */

.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

/* ===== COMMON STYLE ===== */

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* SHOW STATE */
.float-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* ICON SIZE */
.float-btn svg {
    width: 26px;
    height: 26px;
}

/* WHATSAPP COLOR */
.float-btn.whatsapp {
    background: #25D366;
}

/* CALL COLOR (Theme Primary) */
.float-btn.call {
    background: var(--primary);
}

/* Hover */
.float-btn:hover {
    transform: translateY(-4px);
}

/* Premium Pulse Animation */
@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
    70% { box-shadow: 0 0 0 14px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.float-btn.show {
    animation: floatPulse 2.5s infinite;
}

/* CORPORATE HOW WE WORK */

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.section-sub {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px;
    color: var(--text-light);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.how-card {
    text-align: left;
    padding: 30px 10px;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.how-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    color: var(--primary);
}

.how-icon svg {
    width: 100%;
    height: 100%;
}

.how-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.how-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.blue-underline {
    position: relative;
    display: inline-block; /* shrink to text width */
}

.blue-underline::after {
    content: "";
    display: block;
    font-size: 32px;
    width: 70px; 
    height: 4px;
    background: #0A84FF;
    margin: 12px auto 0;  /* centers the line under the text */
    border-radius: 2px;
}