
    /* ---------- MODERN LIGHT THEME WITH #002F90 ACCENT ---------- */
    body { 
      font-family: 'Montserrat', sans-serif; 
      color: #1a1a1a; 
      background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 25%, #fafbfe 50%, #f0f4ff 75%, #f8f9fc 100%);
      background-attachment: fixed;
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
    }
    
    /* Unique animated background shapes */
    body::before {
      content: '';
      position: fixed;
      width: 800px;
      height: 800px;
      top: -300px;
      right: -200px;
      background: linear-gradient(135deg, #0036A4, rgba(76, 231, 252, 0.08));
      border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
      pointer-events: none;
      z-index: -2;
      filter: blur(60px);
      animation: blob-float 15s ease-in-out infinite;
    }
    
    body::after {
      content: '';
      position: fixed;
      width: 700px;
      height: 700px;
      bottom: -200px;
      left: -150px;
      background: linear-gradient(225deg, rgba(0, 224, 255, 0.1), rgba(0, 47, 144, 0.08));
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      z-index: -2;
      filter: blur(60px);
      animation: blob-float-reverse 18s ease-in-out infinite;
    }
    
    @keyframes blob-float {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(80px, -100px) rotate(90deg) scale(1.05); }
      50% { transform: translate(40px, 60px) rotate(180deg) scale(0.95); }
      75% { transform: translate(-60px, 20px) rotate(270deg) scale(1.08); }
    }
    
    @keyframes blob-float-reverse {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(-100px, 80px) rotate(-90deg) scale(1.08); }
      50% { transform: translate(-40px, -60px) rotate(-180deg) scale(0.95); }
      75% { transform: translate(60px, -20px) rotate(-270deg) scale(1.05); }
    }
    
    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 800; letter-spacing: -1px; color: #002F90; text-shadow: 0 2px 10px rgba(0, 47, 144, 0.1); }
    .bg-texture { 
      background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 50%, #f8f9fc 100%);
      background-color: #f8f9fc;
      position: relative;
      backdrop-filter: blur(10px);
    }
    .fade-in { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-in-out; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Enhanced global styles with geometric shapes - light theme */
    section {
      position: relative;
      overflow: hidden;
    }

    section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(0, 47, 144, 0.03) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(0, 47, 144, 0.02) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
    
    /* Modern geometric elements for visual interest */
    section::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(0, 47, 144, 0.05), transparent);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      pointer-events: none;
      z-index: 0;
      animation: blob-rotate 12s infinite linear;
    }
    
    @keyframes blob-rotate {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(20px, -30px) rotate(90deg); }
      50% { transform: translate(-20px, 10px) rotate(180deg); }
      75% { transform: translate(30px, 20px) rotate(270deg); }
    }

    /* ---------- Safa-style header + slider styles ---------- */
    :root{
      --accent1: #c250b6;
      --accent2: #9b46a0;
      --muted: #aaa;
      --bg-start: #0B0B45;
      --bg-end: #0B0B45;
      --maxw: 1180px;
    }
    *{box-sizing:border-box}

    /* Header (logo in center) - LIGHT THEME PREMIUM DESIGN */
     .page-header {
      border-radius: 28px;
      max-width: var(--maxw);
      margin: 16px auto 18px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 85px;
      padding: 0 24px;
      background: linear-gradient(135deg, #ffffff 0%, #f8fafe 100%);
      backdrop-filter: blur(30px);
      border: 2px solid rgba(0, 47, 144, 0.15);
      box-shadow: 0 12px 40px rgba(0, 47, 144, 0.1), inset 0 0 30px rgba(0, 47, 144, 0.02);
      transition: all 0.3s ease;
    }
    
    .page-header:hover {
      box-shadow: 0 20px 60px rgba(0, 47, 144, 0.15), inset 0 0 40px rgba(0, 47, 144, 0.05);
      border-color: rgba(0, 47, 144, 0.25);
    }

    .nav-desktop {
      
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .nav-desktop .left, .nav-desktop .right {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-desktop a {
      color: #002F90;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      transition: width 0.3s ease;
    }

    .nav-desktop a:hover {
      color: #0047d4;
    }

    .nav-desktop a:hover::after {
      width: 100%;
    }

    .logo-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      /* width: 152px; 
      height: 144px; */
      z-index: 1;
      /* border-radius: 50%; */
      /* background: linear-gradient(135deg, rgba(248, 249, 252, 0.9), rgba(240, 244, 255, 0.8)); */
      display: flex; 
      align-items: center; 
      justify-content: center;
      /* border: 3px solid rgba(0, 47, 144, 0.15); */
      box-shadow: 0 0 40px rgba(0, 47, 144, 0.1), inset 0 0 40px rgba(0, 47, 144, 0.03);
      /* transition: all 0.3s ease; */
    }

    .logo-circle:hover {
      border-color: rgba(0, 47, 144, 0.25);
      box-shadow: 0 0 60px rgba(0, 47, 144, 0.15), inset 0 0 40px rgba(0, 47, 144, 0.06);
    }

    .logo-circle img { 
      width: 56px; 
      height: 56px; 
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .logo-circle:hover img {
      transform: scale(1.08) rotate(-5deg);
    }

    /* Hide mobile stuff by default */
    .mobile-hamburger, .mobile-drawer {
      display: none;
    }

    /* ================= MOBILE STYLES ================= */
    @media(max-width: 768px) {
      .page-header {
        justify-content: space-between;
        height: 70px;
        padding: 0 16px;
      }

      /* Hide desktop nav on mobile */
      .nav-desktop {
        display: none;
      }

      /* Move logo left */
      .logo-circle {
        position: static;
        transform: none;
        width: 60px;
        height: 60px;
        border: 2px solid rgba(0, 47, 144, 0.2);
        margin: 0;
        flex-shrink: 0;
      }
      .logo-circle img {
        width: 40px;
        height: 40px;
      }

      /* Hamburger button */
      .mobile-hamburger {
        display: flex;
        cursor: pointer;
        width: 28px;
        height: 20px;
        position: relative;
        z-index: 1100;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
      }
      .mobile-hamburger span {
        position: relative;
        height: 2.5px;
        width: 100%;
        background: linear-gradient(90deg, #002F90, #0047d4);
        left: 0;
        transition: all 0.3s ease;
        border-radius: 2px;
      }

      /* Drawer */
      .mobile-drawer {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(248, 249, 252, 0.98), rgba(240, 244, 255, 0.98));
        backdrop-filter: blur(20px);
        box-shadow: -2px 0 30px rgba(0, 47, 144, 0.15);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 90px 30px 30px;
        flex-direction: column;
        gap: 20px;
        z-index: 1000;
        border-left: 1px solid rgba(0, 47, 144, 0.1);
      }
      .mobile-drawer.open {
        right: 0;
      }
      .mobile-drawer a {
        color: #002F90;
        font-size: 18px;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
        position: relative;
      }

      .mobile-drawer a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #002F90, #0047d4);
        transform: translateY(-50%);
        transition: height 0.3s ease;
        border-radius: 2px;
      }

      .mobile-drawer a:hover {
        color: #fff;
        background: rgba(0, 224, 255, 0.1);
      }

      .mobile-drawer a:hover::before {
        height: 20px;
      }
    }

    /* Hero / Slider container - ENHANCED */
    .hero{
      max-width:var(--maxw);
      margin: 40px auto;
      position:relative;
      border-radius:40px;
      padding:60px;
      /* background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 31, 77, 0.65) 50%, rgba(13, 27, 62, 0.85) 100%); */
      /* backdrop-filter: blur(30px); */
      border: 2px solid rgba(0, 224, 255, 0.2);
      /* box-shadow: 0 40px 100px rgba(0, 47, 144, 0.3), 
                  inset 0 0 80px rgba(0, 224, 255, 0.08),
                  0 0 60px rgba(0, 224, 255, 0.05); */
      overflow:hidden;
    }
    
    /* Enhanced animated geometric shapes in hero */
    .hero::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, rgba(0, 224, 255, 0.15), rgba(0, 47, 144, 0.08));
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(40px);
      animation: hero-blob-1 16s ease-in-out infinite;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: linear-gradient(225deg, rgba(0, 47, 144, 0.1), rgba(0, 224, 255, 0.06));
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      z-index: 0;
      filter: blur(40px);
      animation: hero-blob-2 18s ease-in-out infinite;
    }
    
    @keyframes hero-blob-1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(60px, -80px) rotate(90deg) scale(1.08); }
      50% { transform: translate(30px, 40px) rotate(180deg) scale(0.95); }
      75% { transform: translate(-50px, 10px) rotate(270deg) scale(1.05); }
    }
    
    @keyframes hero-blob-2 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(-80px, 60px) rotate(-90deg) scale(1.05); }
      50% { transform: translate(-30px, -40px) rotate(-180deg) scale(0.95); }
      75% { transform: translate(50px, -10px) rotate(-270deg) scale(1.08); }
    }

    .slides {
      display:flex;
      width:100%;
      transition: transform .75s cubic-bezier(.2,.9,.2,1);
      will-change: transform;
      position: relative;
      z-index: 1;
    }
    .slide {
      min-width:100%;
      display:flex;
      gap:48px;
      align-items:center;
      padding:10px 6px;
    }

    .content{
      flex:1.05;
      max-width:55%;
      animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .eyebrow{ 
      color:#002F90; 
      font-weight:700; 
      margin-bottom:8px; 
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .title{
      font-size:56px; 
      line-height:1.15; 
      font-weight:800; 
      margin:8px 0 18px; 
      color:#002F90;
      letter-spacing:-0.6px;
      background: linear-gradient(135deg, #002F90 0%, #0047d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .desc{
      color:#555;
      font-size:16px;
      line-height:1.75;
      margin-bottom:28px;
      max-width:610px;
    }
    .cta{
      display:inline-block;
      padding:14px 32px;
      border-radius:30px;
      background:linear-gradient(135deg, #002F90, #0047d4);
      color:white; 
      font-weight:700; 
      border:none;
      box-shadow: 0 12px 30px rgba(0, 47, 144, 0.3);
      cursor:pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #002F90, #005bff);
      transition: left 0.3s ease;
      z-index: -1;
    }

    .cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(0, 47, 144, 0.4);
    }

    .cta:hover::before {
      left: 0;
    }

    /* Controls */
    .controls{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:20px;
      display:flex;
      gap:16px;
      align-items:center;
      z-index:40;
      flex-wrap: wrap;
    }

    .dot{
      width:48px; 
      height:10px; 
      border-radius:10px;  
      cursor:pointer; 
      transition:all .3s ease;
      background: rgba(0, 47, 144, 0.1);
      border: 2px solid rgba(0, 47, 144, 0.2);
    }
    .dot.active{ 
      background:linear-gradient(90deg, #002F90, #0047d4);
      border-color: #002F90;
      transform:scale(1.1); 
      box-shadow: 0 0 20px rgba(0, 47, 144, 0.4);
    }

    #prevBtn {
      display: none;
    }

    .visual {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      animation: slideInRight 0.8s ease-out;
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .plate {
      width: 340px; 
      height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 36px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.95), rgba(240, 244, 255, 0.9));
      border: 2.5px solid rgba(0, 47, 144, 0.2);
      box-shadow: 0 30px 80px rgba(0, 47, 144, 0.2), 
                  inset 0 0 50px rgba(0, 47, 144, 0.06),
                  inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
    }
    
    .plate::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 36px;
      background: radial-gradient(circle at 35% 35%, rgba(0, 47, 144, 0.1), transparent 60%),
                  radial-gradient(circle at 85% 15%, rgba(0, 224, 255, 0.05), transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    .plate:hover {
      border-color: rgba(0, 47, 144, 0.4);
      box-shadow: 0 45px 120px rgba(0, 47, 144, 0.3), 
                  inset 0 0 60px rgba(0, 47, 144, 0.12),
                  0 0 50px rgba(0, 224, 255, 0.1);
      transform: translateY(-20px) scale(1.08);
    }

    .plate img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      z-index: 2;
    }
    .plate img:hover {
      transform: scale(1.15) rotate(3deg);
    }

    /* Responsive adjustments */
    @media (max-width:900px){
      .slide{ flex-direction:column; padding:24px 12px; text-align:center; }
      .content{ max-width:100%; width:100%; }
      .visual{ margin-top:24px; }
      .plate{ width:280px; height:280px;}
      .title{ font-size:40px; }
      .hero { padding: 36px; }
      .nav-desktop .left, .nav-desktop .right {
        gap: 16px;
      }
    }
    @media (max-width:600px){
      body{ margin:0; }
      .page-header {
        height: auto;
        padding: 12px 16px;
      }
      .logo-circle{ 
        position: static;
        transform: none;
        width: 60px; 
        height: 60px; 
        border: 2px solid rgba(0, 224, 255, 0.2);
        margin-right: 12px;
      }
      .logo-circle img{ width: 40px; height: 40px; }
      .title{ font-size:28px; }
      .desc{ font-size:14px; }
      .plate{ width:200px; height:200px; }
      .nav{ flex-direction:column; align-items:center; gap:8px; }
      .hero {
        margin: 20px 12px;
        padding: 24px;
      }
      .controls {
        bottom: 12px;
        gap: 8px;
      }
      .dot {
        width: 36px;
        height: 8px;
      }
    }

    @media (max-width: 480px) {
      .page-header {
        margin: 0 0 12px;
      }
      .title { font-size: 22px; }
      .desc { font-size: 13px; }
      .plate { width: 160px; height: 160px; }
      .hero { padding: 16px; margin: 12px 8px; }
      .eyebrow { font-size: 10px; }
      .cta { padding: 10px 20px; font-size: 13px; }
      
      /* Enhanced mobile responsiveness */
      .hero {
        border-radius: 24px;
        padding: 20px;
      }
      
      .slide {
        gap: 24px;
      }
      
      .content {
        max-width: 100%;
      }
      
      .visual {
        margin-top: 20px;
      }
      
      .controls {
        bottom: 8px;
        gap: 6px;
      }
      
      .dot {
        width: 28px;
        height: 6px;
      }
      
      .product-slider {
        padding: 40px 16px;
      }
      
      .product-slider h2 {
        font-size: 1.3rem;
      }
      
      .testimonial-section-new {
        padding: 40px 16px;
        margin: 30px 8px;
        border-radius: 24px;
      }
      
      .testimonial-slider-new {
        max-width: 100%;
      }
    }
    
    /* Extra small devices optimization */
    @media (max-width: 320px) {
      .title { font-size: 18px; }
      .desc { font-size: 12px; }
      .plate { width: 120px; height: 120px; }
      .hero { padding: 12px; }
      .product-slider h2 { font-size: 1.2rem; }
      .cta { padding: 8px 16px; font-size: 12px; }
    }
    
    /* Tablet enhancements */
    @media (max-width: 900px) and (min-width: 600px) {
      .hero {
        padding: 40px;
        margin: 30px 16px;
      }
      
      .plate {
        width: 280px;
        height: 280px;
      }
      
      .product-slider {
        padding: 70px 30px;
      }
      
      .testimonial-section-new {
        padding: 60px 30px;
        margin: 40px 16px;
      }
    }

    /* ensure the rest of page sits nicely on light background */
    .page-body-layout { background: #f8f9fc; }

    /* Global scrollbar styling */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: rgba(0, 47, 144, 0.05);
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #002F90, #0047d4);
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #0047d4, #005bff);
    }

    /* Add smooth scrolling behavior */
    html {
      scroll-behavior: smooth;
    }

    /* Improve overall typography */
    * {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ==================== ADVANCED INTERACTIVE FEATURES ==================== */

    /* Floating Animation for Elements */
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }

    @keyframes pulse-glow {
      0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 47, 144, 0.3);
      }
      50% { 
        box-shadow: 0 0 40px rgba(0, 47, 144, 0.5);
      }
    }

    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

    @keyframes counter {
      from { 
        opacity: 0;
        transform: scale(0.8);
      }
      to { 
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Enhanced CTA Button with Ripple */
    .cta::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .cta:active::after {
      width: 300px;
      height: 300px;
    }

    /* Product Card Premium Effect */
    .product-card {
      position: relative;
    }

    .product-card::after {
      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;
    }

    .product-card:hover::after {
      left: 100%;
    }

    /* Stats Counter Animation */
    .stats-counter {
      font-size: 2.5rem;
      font-weight: 900;
      color: #002F90;
      animation: counter 1.5s ease-out forwards;
      text-shadow: 0 0 20px rgba(0, 47, 144, 0.2);
    }

    /* Premium Badge */
    .premium-badge {
      position: absolute;
      top: -15px;
      right: 20px;
      background: linear-gradient(135deg, #002F90, #0047d4);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 8px 20px rgba(0, 47, 144, 0.4);
      animation: float 3s ease-in-out infinite;
    }

    /* Attention Pulse */
    .attention-pulse {
      animation: pulse-glow 2s ease-in-out infinite;
    }

    /* Text Reveal Animation */
    .text-reveal {
      overflow: hidden;
    }

    .text-reveal-line {
      display: inline-block;
      animation: slideInUp 0.8s ease-out forwards;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Scroll Progress Indicator */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      width: 0%;
      z-index: 999;
      transition: width 0.1s ease;
    }

    /* Parallax Scroll Effect */
    .parallax-section {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    /* Product Filter Tags */
    .filter-tag {
      display: inline-block;
      padding: 8px 16px;
      margin: 5px;
      border-radius: 20px;
      border: 2px solid rgba(0, 224, 255, 0.3);
      color: #aaa;
      cursor: pointer;
      transition: all 0.3s ease;
      background: transparent;
      font-weight: 600;
    }

    .filter-tag:hover,
    .filter-tag.active {
      border-color: #002F90;
      background: rgba(0, 47, 144, 0.1);
      color: #002F90;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 47, 144, 0.15);
    }

    /* Icon Animation on Hover */
    .icon-float {
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .icon-float:hover {
      transform: translateY(-8px) scale(1.15) rotate(5deg);
    }

    /* Tooltip Animation */
    .tooltip {
      position: relative;
    }

    .tooltip::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
      background: rgba(0, 47, 144, 0.95);
      color: #fff;
      padding: 8px 12px;
      border-radius: 8px;
      white-space: nowrap;
      font-size: 12px;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
      z-index: 100;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 224, 255, 0.3);
    }

    .tooltip:hover::after {
      opacity: 1;
      transform: translateX(-50%) translateY(-15px);
    }

    /* Gradient Text Animation */
    .gradient-text-animated {
      background: linear-gradient(90deg, #002F90, #0047d4, #002F90);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 3s linear infinite;
    }

    @keyframes gradient-shift {
      0% { background-position: 0% center; }
      50% { background-position: 100% center; }
      100% { background-position: 0% center; }
    }

    /* Loading Skeleton */
    @keyframes skeleton-loading {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

    .skeleton {
      background: linear-gradient(90deg, #1a1a6e, #2a2a8e, #1a1a6e);
      background-size: 1000px 100%;
      animation: skeleton-loading 2s infinite;
      border-radius: 8px;
    }

    /* Floating Objects */
    .floating {
      animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      25% { transform: translateY(-20px) rotate(2deg); }
      50% { transform: translateY(-10px) rotate(-2deg); }
      75% { transform: translateY(-25px) rotate(1deg); }
    }

    /* Quality Badge Animation */
    .quality-badge {
      position: relative;
      display: inline-block;
      padding: 12px 24px;
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.8), rgba(240, 244, 255, 0.9));
      border: 2px solid rgba(0, 47, 144, 0.2);
      border-radius: 12px;
      color: #002F90;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 12px;
      transition: all 0.3s ease;
    }

    .quality-badge:hover {
      border-color: #002F90;
      box-shadow: 0 0 30px rgba(0, 47, 144, 0.25);
      transform: translateY(-3px);
      background: linear-gradient(135deg, rgba(240, 244, 255, 0.95), rgba(230, 240, 255, 0.9));
    }

    /* Number Counter Styles */
    .achievement-number {
      font-size: 3rem;
      font-weight: 900;
      background: linear-gradient(135deg, #002F90, #0047d4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 20px rgba(0, 47, 144, 0.15);
    }

    /* CTA Pulse Animation */
    .cta-pulse {
      animation: pulse-glow 1.5s ease-in-out infinite;
    }

    /* Blur on Scroll */
    .blur-on-scroll {
      transition: backdrop-filter 0.3s ease;
    }

    /* Stagger Animation */
    .stagger-item {
      animation: slideInUp 0.8s ease-out forwards;
    }

    .stagger-item:nth-child(1) { animation-delay: 0.1s; }
    .stagger-item:nth-child(2) { animation-delay: 0.2s; }
    .stagger-item:nth-child(3) { animation-delay: 0.3s; }
    .stagger-item:nth-child(4) { animation-delay: 0.4s; }
    .stagger-item:nth-child(5) { animation-delay: 0.5s; }
    .stagger-item:nth-child(6) { animation-delay: 0.6s; }









/* product section - MODERNIZED */

    .product-slider {
      position: relative; 
      overflow: hidden;
      width: 100%;
      padding: 100px 20px;
      background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 25%, #fafbfe 50%, #f0f4ff 75%, #f8f9fc 100%);
      border-top: 2px solid rgba(0, 47, 144, 0.08);
      border-bottom: 2px solid rgba(0, 47, 144, 0.08);
    }
    
    /* Unique geometric shapes in background */
    .product-slider::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -200px;
      width: 700px;
      height: 700px;
      background: linear-gradient(135deg, rgba(0, 47, 144, 0.08), rgba(0, 224, 255, 0.05));
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(50px);
      animation: shape-rotate-1 20s ease-in-out infinite;
    }
    
    @keyframes shape-rotate-1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(80px, -100px) rotate(90deg) scale(1.05); }
      50% { transform: translate(40px, 60px) rotate(180deg) scale(0.95); }
      75% { transform: translate(-60px, 20px) rotate(270deg) scale(1.08); }
    }
    
    .product-slider::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: linear-gradient(225deg, rgba(0, 224, 255, 0.08), rgba(0, 47, 144, 0.05));
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      z-index: 0;
      filter: blur(50px);
      animation: shape-rotate-2 22s ease-in-out infinite;
    }
    
    @keyframes shape-rotate-2 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(-100px, 80px) rotate(-90deg) scale(1.08); }
      50% { transform: translate(-40px, -60px) rotate(-180deg) scale(0.95); }
      75% { transform: translate(60px, -20px) rotate(-270deg) scale(1.05); }
    }

    .product-slider h2 {
      color: #002F90;
      text-align: center;
      font-size: 2.8rem;
      margin-bottom: 60px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #002F90 0%, #0047d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
    }

    .product-slider h2::after {
      content: "";
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      display: block;
      margin: 20px auto 0;
      border-radius: 3px;
      box-shadow: 0 0 25px rgba(0, 47, 144, 0.25);
    }

    .slider-track {
      display: flex;
      gap: 32px;
      animation: scroll 40s linear infinite;
      will-change: transform;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    .slider-track.paused {
      animation-play-state: paused;
    }

    .product-card {
      flex: 0 0 21%;
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.98), rgba(240, 244, 255, 1));
      border-radius: 32px;
      text-align: center;
      box-shadow: 0 20px 50px rgba(0, 47, 144, 0.15), 
                  inset 0 1px 0 rgba(255, 255, 255, 0.6);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(25px);
      border: 2px solid rgba(0, 47, 144, 0.1);
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform-style: preserve-3d;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      background: linear-gradient(135deg, rgba(248, 249, 252, 1), rgba(240, 244, 255, 1));
      box-shadow: 0 40px 80px rgba(0, 47, 144, 0.25), 
                  inset 0 1px 0 rgba(255, 255, 255, 0.8),
                  0 0 40px rgba(0, 47, 144, 0.12);
      transform: translateY(-24px) scale(1.06);
      border-color: rgba(0, 47, 144, 0.35);
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 32px;
      padding: 2px;
      background: linear-gradient(135deg, #002F90 0%, #0047d4 33%, #005bff 66%, #002F90 100%);
      background-size: 300% 300%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover::before {
      opacity: 0.9;
      animation: gradient-animate 4s ease infinite;
    }

    @keyframes gradient-animate {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .product-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 30px 30px 0 0;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
      filter: brightness(1) saturate(1) contrast(1);
    }

    .product-card:hover img {
      transform: scale(1.18);
      filter: brightness(1.15) saturate(1.15) contrast(1.05);
    }

    .product-info {
      position: relative;
      z-index: 2;
      padding: 32px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-info h3 {
      font-size: 1.45rem;
      font-weight: 700;
      color: #002F90;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .product-card:hover .product-info h3 {
      color: #0047d4;
    }

    .product-info p {
      font-size: 0.97rem;
      color: #555;
      margin-bottom: 20px;
      line-height: 1.7;
      font-weight: 500;
    }

    .product-info button {
      padding: 15px 36px;
      background: linear-gradient(135deg, #002F90, #0047d4);
      border: none;
      border-radius: 32px;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 12px 40px rgba(0, 47, 144, 0.35);
      position: relative;
      overflow: hidden;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      display: inline-block;
      margin: 0 auto;
    }

    .product-info button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #005bff, #0047d4);
      transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: -1;
    }

    .product-info button::after {
      content: '→';
      position: absolute;
      right: 28px;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-info button:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 0 24px 60px rgba(0, 47, 144, 0.45);
    }

    .product-info button:hover::before {
      left: 0;
    }

    .product-info button:hover::after {
      opacity: 1;
      transform: translateX(0);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Responsive */
    @media(max-width:1024px) {
      .product-card { flex: 0 0 30%; }
      .product-slider h2 { font-size: 2.2rem; }
      .product-slider { padding: 60px 0; }
    }
    @media(max-width:768px) {
      .product-card { flex: 0 0 45%; }
      .product-slider h2 { font-size: 1.8rem; }
      .product-slider { padding: 50px 0; }
      .slider-track { gap: 20px; }
    }
    @media(max-width:480px) {
      .product-card { flex: 0 0 80%; }
      .product-slider h2 { font-size: 1.5rem; }
      .product-slider { padding: 40px 0; }
      .product-card img { height: 180px; }
      .product-info { padding: 15px; }
      .slider-track { gap: 16px; padding: 0 12px; }
    }



    /* testimonial - PREMIUM MODERNIZED */
    
    .testimonial-section-new {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 80px 40px;
        color: #1a1a1a;
        animation: fadeIn 1s ease-in-out;
        background: linear-gradient(135deg, rgba(248, 249, 252, 0.98) 0%, rgba(240, 244, 255, 0.98) 50%, rgba(230, 240, 255, 0.98) 100%);
        border-radius: 36px;
        position: relative;
        overflow: hidden;
        border: 2.5px solid rgba(0, 47, 144, 0.15);
        box-shadow: 0 40px 100px rgba(0, 47, 144, 0.15), 
                    inset 0 0 80px rgba(0, 47, 144, 0.05),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
        gap: 50px;
        margin: 60px 20px;
    }

    /* Unique animated geometric shapes for testimonials */
    .testimonial-section-new::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -150px;
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, rgba(0, 47, 144, 0.1), rgba(0, 224, 255, 0.06));
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        pointer-events: none;
        z-index: 0;
        filter: blur(50px);
        animation: testimonial-shape-1 18s ease-in-out infinite;
    }
    
    @keyframes testimonial-shape-1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(60px, -80px) rotate(90deg) scale(1.08); }
      50% { transform: translate(30px, 40px) rotate(180deg) scale(0.95); }
      75% { transform: translate(-50px, 10px) rotate(270deg) scale(1.05); }
    }

    /* Unique second shape in testimonials */
    .testimonial-section-new::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 550px;
        height: 550px;
        background: linear-gradient(225deg, #0036A4, rgba(0, 47, 144, 0.06));
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        pointer-events: none;
        z-index: 0;
        filter: blur(50px);
        animation: testimonial-shape-2 20s ease-in-out infinite;
    }
    
    @keyframes testimonial-shape-2 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(-100px, 80px) rotate(-90deg) scale(1.05); }
      50% { transform: translate(-40px, -60px) rotate(-180deg) scale(0.95); }
      75% { transform: translate(60px, -20px) rotate(-270deg) scale(1.08); }
    }
    /* } */

    /* keep content above shape */
    .testimonial-section-new > * {
        position: relative;
        z-index: 1;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .logos-new {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        animation: slideInLeft 1s ease-out;
        gap: 20px;
        min-width: 300px;
    }

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logos-new img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(0, 224, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 47, 144, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.logos-new img:hover {
    transform: scale(1.15) translateY(-8px);
    border-color: rgba(0, 224, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 224, 255, 0.3), 0 0 30px rgba(0, 224, 255, 0.15);
}

.testimonial-slider-new {
    flex: 1;
    max-width: 550px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.testimonial-slider-new .slides-new {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slider-new .slide-new {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 47, 144, 0.25), rgba(0, 224, 255, 0.1));
    border-radius: 24px;
    text-align: left;
    border: 1.5px solid rgba(0, 224, 255, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 47, 144, 0.2), inset 0 0 30px rgba(0, 224, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slider-new .slide-new h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-slider-new .slide-new p {
  color: #000000;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.testimonial-slider-new .client-new {
    color: #fff;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-slider-new .client-new img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2.5px solid rgba(0, 224, 255, 0.4);
    animation: rotateIn 1s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.testimonial-slider-new .client-new span {
    font-weight: 700;
    color: #fff;
}

.testimonial-slider-controls-new {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-slider-controls-new button {
    background: rgba(0, 47, 144, 0.6);
    border: 1.5px solid rgba(0, 224, 255, 0.3);
    color: white;
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.testimonial-slider-controls-new button:hover {
    background: rgba(0, 224, 255, 0.4);
    border-color: rgba(0, 224, 255, 0.6);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 224, 255, 0.3);
}

/* Media Queries for Responsiveness */

@media (max-width: 1024px) {
    .testimonial-section-new {
        padding: 60px 30px;
        flex-direction: column;
        gap: 40px;
    }
    .logos-new img {
        width: 100px;
        height: 100px;
    }
    .testimonial-slider-new {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonial-section-new {
        flex-direction: column;
        padding: 40px 20px;
        margin: 40px 0;
        gap: 30px;
    }
    .logos-new {
        justify-content: center;
        width: 100%;
    }
    .logos-new img {
        width: 80px;
        height: 80px;
    }
    .testimonial-slider-new {
        max-width: 100%;
        width: 100%;
    }
    .testimonial-slider-controls-new button {
        padding: 10px 12px;
    }
    .testimonial-section-new::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-section-new {
        padding: 30px 16px;
        margin: 30px 12px;
    }
    .logos-new img {
        width: 70px;
        height: 70px;
    }
    .testimonial-slider-new .slide-new {
        padding: 20px;
    }
    .testimonial-slider-controls-new button {
        padding: 8px 10px;
    }
}

/* footer - MODERNIZED with unique shapes */

    :root{
      --bg:#f8f9fc;
      --accent:#002F90;
      --muted:#aaa;
      --white:#1a1a1a;
      --radius:14px;
      --max-width:1200px;
      --gap:32px;
      font-family: 'Poppins', Inter, system-ui;
    }

    .Safa-footer{
      position:relative;
      background: linear-gradient(135deg, #f8f9fc 0%, #f0f4ff 25%, #fafbfe 50%, #f0f4ff 75%, #f8f9fc 100%);
      color:#555;
      padding:100px 40px 60px;
      overflow:hidden;
      border-top: 2px solid rgba(0, 47, 144, 0.1);
    }
    
    /* Unique footer background shapes */
    .Safa-footer::before {
      content: '';
      position: absolute;
      top: 0;
      right: -150px;
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, #0036A4, rgba(0, 224, 255, 0.05));
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(50px);
      animation: footer-shape-1 20s ease-in-out infinite;
    }
    
    .Safa-footer::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      background: linear-gradient(225deg, rgba(0, 224, 255, 0.08), rgba(0, 47, 144, 0.05));
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
      z-index: 0;
      filter: blur(50px);
      animation: footer-shape-2 22s ease-in-out infinite;
    }
    
    @keyframes footer-shape-1 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(60px, -80px) rotate(90deg) scale(1.08); }
      50% { transform: translate(30px, 40px) rotate(180deg) scale(0.95); }
      75% { transform: translate(-50px, 10px) rotate(270deg) scale(1.05); }
    }
    
    @keyframes footer-shape-2 {
      0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
      25% { transform: translate(-100px, 80px) rotate(-90deg) scale(1.05); }
      50% { transform: translate(-40px, -60px) rotate(-180deg) scale(0.95); }
      75% { transform: translate(60px, -20px) rotate(-270deg) scale(1.08); }
    }
    
    .Safa-footer .container{
      position:relative;
      z-index:2;
      max-width:var(--max-width);
      margin:0 auto;
      display:grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap:var(--gap);
      align-items:start;
    }

    .Safa-brand{
      color:#002F90;
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    
    .Safa-brand .logo{
      display:flex;
      align-items:center;
      gap:16px;
    }
    
    .Safa-brand .logo .mark{
      width:64px;
      height:64px;
      border-radius:50%;
      background: linear-gradient(135deg, #002F90, #0047d4);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 12px 35px rgba(0, 47, 144, 0.2), inset 0 0 20px rgba(0, 47, 144, 0.08);
      transition: all 0.3s ease;
      position: relative;
      border: 2px solid rgba(0, 47, 144, 0.15);
    }

    .Safa-brand .logo .mark:hover {
      transform: scale(1.12) rotate(-5deg);
      box-shadow: 0 16px 45px rgba(0, 47, 144, 0.3), inset 0 0 30px rgba(0, 47, 144, 0.12);
      border-color: rgba(0, 47, 144, 0.25);
    }

    .Safa-brand h3{
      margin:0;
      font-size:28px;
      letter-spacing:-0.5px;
      font-weight: 800;
      background: linear-gradient(135deg, #002F90 0%, #0047d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .Safa-brand p{
      margin:0;
      color:#555;
      line-height:1.8;
      font-size:15px;
    }

    .Safa-links{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    
    .Safa-links h4{
      color:#002F90;
      margin:0 0 16px;
      font-size:18px;
      position:relative;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    
    .Safa-links h4::after{
      content:'';
      display:block;
      width:60px;
      height:3px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      margin-top:8px;
      border-radius:3px;
      box-shadow: 0 0 20px rgba(0, 47, 144, 0.3);
      transition: all 0.3s ease;
    }
    
    .Safa-links h4:hover::after{
      width: 100px;
      box-shadow: 0 0 30px rgba(0, 47, 144, 0.4);
    }
    
    .Safa-links ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }
    
    .Safa-links a{
      color:#555;
      text-decoration:none;
      font-size:14px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      font-weight: 500;
    }

    .Safa-links a::before {
      content: '';
      position: absolute;
      left: -8px;
      top: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      transform: translateY(-50%);
    }

    .Safa-links a:hover{
      color:#002F90;
      transform:translateX(6px);
    }

    .Safa-links a:hover::before {
      width: 8px;
      box-shadow: 0 0 15px rgba(0, 47, 144, 0.3);
    }

    .Safa-contact{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    
    .Safa-contact h4{
      color:#002F90;
      margin:0 0 16px;
      font-size:18px;
      position:relative;
      font-weight: 700;
      letter-spacing: -0.5px;
    }
    
    .Safa-contact h4::after{
      content:'';
      display:block;
      width:60px;
      height:3px;
      background: linear-gradient(90deg, #002F90, #0047d4);
      margin-top:8px;
      border-radius:3px;
      box-shadow: 0 0 20px rgba(0, 47, 144, 0.3);
      transition: all 0.3s ease;
    }
    
    .Safa-contact h4:hover::after{
      width: 100px;
      box-shadow: 0 0 30px rgba(0, 47, 144, 0.4);
    }
    
    .contact-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover{
      transform: translateX(4px);
    }
    
    .contact-item svg{
      flex:0 0 22px;
      margin-top:3px;
      color: #002F90;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .contact-item:hover svg {
      transform: scale(1.3) rotate(-10deg);
      filter: drop-shadow(0 0 10px rgba(0, 47, 144, 0.3));
    }

    .contact-item a{
      color:#555;
      font-size:14px;
      text-decoration:none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      font-weight: 500;
    }
    
    .contact-item a:hover{
      color:#002F90;
      text-decoration: underline;
    }

    .contact-item span {
      color: #aaa;
      font-size: 14px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .contact-item:hover span {
      color: #002F90;
    }

    .Safa-bottom{
      margin-top:50px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-top:30px;
      border-top:2px solid rgba(0, 47, 144, 0.1);
      position: relative;
      z-index: 2;
    }

    .social-list{
      display:flex;
      gap:14px;
    }
    
    .social-list a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:48px;
      height:48px;
      border-radius:50%;
      background:linear-gradient(135deg, rgba(248, 249, 252, 0.95), rgba(240, 244, 255, 0.95));
      text-decoration:none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 1.5px solid rgba(0, 47, 144, 0.2);
      color: #002F90;
    }
    
    .social-list a:hover{
      background:linear-gradient(135deg, #002F90, #0047d4);
      color:#fff;
      border-color: #002F90;
      transform: translateY(-6px) scale(1.08);
      box-shadow: 0 12px 30px rgba(0, 47, 144, 0.3), 0 0 20px rgba(0, 224, 255, 0.1);
    }
    
    .social-list svg{
      width:20px;
      height:20px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .social-list a:hover svg {
      transform: rotate(15deg) scale(1.15);
    }

    .newsletter{
      display:flex;
      gap:8px;
      align-items:center;
    }
    
    .newsletter input{
      background:linear-gradient(135deg, rgba(248, 249, 252, 0.95), rgba(240, 244, 255, 0.95));
      border:1.5px solid rgba(0, 47, 144, 0.2);
      padding:12px 16px;
      border-radius:12px;
      color:#1a1a1a;
      outline:none;
      font-size:14px;
      min-width:240px;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .newsletter input::placeholder {
      color: rgba(0, 47, 144, 0.4);
    }

    .newsletter input:focus {
      border-color: rgba(0, 47, 144, 0.4);
      box-shadow: 0 0 30px rgba(0, 47, 144, 0.2);
      background:linear-gradient(135deg, #f8f9fc, #f0f4ff);
    }

    .newsletter button{
      background:linear-gradient(135deg, #002F90, #0047d4);
      border:none;
      padding:12px 24px;
      border-radius:12px;
      color:#fff;
      cursor:pointer;
      font-weight:700;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: 0 8px 25px rgba(0, 47, 144, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 13px;
    }
    
    .newsletter button:hover{
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 15px 40px rgba(0, 47, 144, 0.4), 0 0 20px rgba(0, 224, 255, 0.1);
    }

    .legal{
      color:rgba(0, 47, 144, 0.6);
      font-size:13px;
      position: relative;
      z-index: 2;
    }

    .back-to-top{
      position:fixed;
      right:24px;
      bottom:24px;
      background:linear-gradient(135deg, #002F90, #0047d4);
      color:#fff;
      border-radius:999px;
      width:52px;
      height:52px;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow: 0 12px 40px rgba(0, 47, 144, 0.4), 0 0 20px rgba(0, 224, 255, 0.15);
      cursor:pointer;
      border:none;
      z-index:99;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .back-to-top:hover {
      transform: translateY(-6px) scale(1.1);
      box-shadow: 0 16px 45px rgba(0, 47, 144, 0.4);
    }

    .back-to-top[hidden]{
      display:none;
    }

    @media (max-width:1024px){


    /* ==================== FEATURE CARDS & SECTIONS ==================== */
    
    /* Why Choose Us Section */
    section[style*="Why Choose Us"] {
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.95) 0%, rgba(240, 244, 255, 0.9) 50%, rgba(230, 240, 255, 0.95) 100%) !important;
      position: relative;
    }
    
    /* Feature Card Premium Style */
    .group {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.8), rgba(240, 244, 255, 0.9)) !important;
      border: 1.5px solid rgba(0, 47, 144, 0.12) !important;
      box-shadow: 0 20px 50px rgba(0, 47, 144, 0.1), inset 0 0 30px rgba(0, 47, 144, 0.03) !important;
    }
    
    .group:hover {
      transform: translateY(-12px) scale(1.02);
      background: linear-gradient(135deg, rgba(240, 244, 255, 0.95), rgba(230, 240, 255, 0.95)) !important;
      border-color: rgba(0, 47, 144, 0.25) !important;
      box-shadow: 0 30px 70px rgba(0, 47, 144, 0.18), inset 0 0 40px rgba(0, 47, 144, 0.06) !important;
    }
    
    /* Glow effect on hover */
    .group::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 30% 30%, rgba(0, 47, 144, 0.08), transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }
    
    .group:hover::before {
      opacity: 1;
    }
    
    .group > * {
      position: relative;
      z-index: 2;
    }
    
    /* Industries Section */
    section[style*="#industries"] {
      background: linear-gradient(135deg, rgba(248, 249, 252, 0.95), rgba(240, 244, 255, 0.9)) !important;
      position: relative;
      overflow: hidden;
    }
    
    section[style*="#industries"]::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -150px;
      width: 500px;
      height: 500px;
      /* background: radial-gradient(circle, rgba(0, 47, 144, 0.06) 0%, transparent 70%); */
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      animation: blob-rotate 18s infinite ease-in-out;
      z-index: 0;
    }
    
    section[style*="#industries"]::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(0, 47, 144, 0.05) 0%, transparent 70%);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: blob-rotate-reverse 20s infinite ease-in-out;
      z-index: 0;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #002F90, #0077ff);
      border: 2px solid rgba(0, 224, 255, 0.3);
      color: #fff;
      cursor: pointer;
      z-index: 999;
      transition: all 0.3s ease;
      box-shadow: 0 12px 35px rgba(0, 47, 144, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .back-to-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 16px 45px rgba(0, 224, 255, 0.4);
      border-color: rgba(0, 224, 255, 0.6);
    }
    
    /* Contact Section CTA */
    section[style*="Ready to Upgrade"] {
      background: linear-gradient(135deg, rgba(26, 31, 77, 0.6), rgba(10, 14, 39, 0.8)) !important;
      border-top: 2px solid rgba(0, 224, 255, 0.15);
      border-bottom: 2px solid rgba(0, 224, 255, 0.15);
      position: relative;
    }
    
    section[style*="Ready to Upgrade"]::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0, 224, 255, 0.08) 0%, transparent 70%);
      border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
      animation: float-orbit 15s ease-in-out infinite;
      z-index: 0;
    }
    
    section[style*="Ready to Upgrade"]::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 47, 144, 0.08) 0%, transparent 70%);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: float-orbit-reverse 18s ease-in-out infinite;
      z-index: 0;
    }
    
    @media(max-width:1024px) {
      .product-card { flex: 0 0 30%; }
      .product-slider h2 { font-size: 2.2rem; }
      .product-slider { padding: 60px 0; }
    }
    @media(max-width:768px) {
      .product-card { flex: 0 0 45%; }
      .product-slider h2 { font-size: 1.8rem; }
      .product-slider { padding: 50px 0; }
      .slider-track { gap: 20px; }
      .group { padding: 20px !important; }
    }
    @media(max-width:480px) {
      .product-card { flex: 0 0 80%; }
      .product-slider h2 { font-size: 1.5rem; }
      .product-slider { padding: 40px 0; }
      .product-card img { height: 180px; }
      .product-info { padding: 15px; }
      .slider-track { gap: 16px; padding: 0 12px; }
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }
    }

      .Safa-footer .container{
        grid-template-columns:1fr 1fr;
        gap: 24px;
      }
      .Safa-links ul{
        grid-template-columns:repeat(3, minmax(0,1fr));
      }
    }

    @media (max-width:720px){
      .Safa-footer {
        padding: 80px 20px 40px;
      }
      .Safa-footer .container{
        grid-template-columns:1fr;
        gap: 30px;
      }
      .Safa-links ul{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .Safa-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .newsletter {
        width: 100%;
        flex-direction: column;
      }
      .newsletter input {
        min-width: 100%;
      }
      .newsletter button {
        width: 100%;
      }
    }

    @media (max-width: 520px){
      .Safa-links ul{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }
      .newsletter{
        flex-direction:column;
        align-items:flex-start;
        width: 100%;
      }
      .newsletter input {
        width: 100%;
      }
      .newsletter button {
        width: 100%;
      }
      .Safa-bottom{
        flex-direction:column;
        align-items:flex-start;
      }
      .social-list {
        justify-content: flex-start;
      }
    }