  /* navbar start  */

    * { box-sizing: border-box;
         margin: 0; 
         padding: 0;
         }

    :root {
      --clanora-blue: #022b69;
      --clanora-light-blue: #2f6bff;
      --clanora-yellow: #ffb400;
      --text-dark: #0e1d34;
      --border-color: #eaeaea;
      --clanora-red: #DB2925;
    }

    body { 
      font-family: "Poppins", Arial, Helvetica, sans-serif;
     }

    .clanora-container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* ================= TOPBAR ================= */
    .clanora-top-section {
      position: relative;
      background-color: var(--clanora-blue);
      color: #fff;
      z-index: 10;
    }

    .clanora-top-bar {
      padding: 12px 0 25px 0;
      font-size: 13px;
      font-weight: 500;
    }

    .top-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .top-left, .top-right {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }

    .info-item a { color: #fff; text-decoration: none; }
    .icon-yellow, .label-yellow { color: var(--clanora-red); }

    .top-links a {
      color: #fff;
      text-decoration: none;
      margin-right: 15px;
      transition: 0.3s;
      white-space: nowrap;
    }
    .top-links a:hover { opacity: 0.85; }

    .social-icons {
      display: flex;
      gap: 8px;
    }

    .social-btn {
      width: 26px;
      height: 26px;
      background: var(--clanora-red);
      color: var(--clanora-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 12px;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255,255,255,0.2);
      padding: 4px 10px;
      border-radius: 4px;
      cursor: pointer;
      white-space: nowrap;
    }

    .flag-icon { width: 18px; }

    /* WAVY SVG DIVIDER */
    .wavy-divider {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      line-height: 0;
      overflow: hidden;
    }
    .wave-svg { width: 100%; height: 15px; display: block; }

    /* ================= NAVBAR ================= */
    .clanora-navbar-section {
      background: #fff;
      border-bottom: 1px solid #f0f0f0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-flex-container {
      display: flex;
      align-items: center;
      height: 90px;
    }

    .nav-logo-area img { height: 65px; display: block; }

    .vertical-divider {
      width: 1px;
      height: 100%;
      background-color: var(--border-color);
      margin: 0 30px;
    }

    .nav-menu-area {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .main-nav-list {
      list-style: none;
      display: flex;
      gap: 25px;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 700;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 10px 0;
      transition: color 0.3s;
    }

    .nav-link.active, .nav-link:hover { color: var(--clanora-light-blue); }

    .nav-arrow { font-size: 10px; color: #999; }

    .has-dropdown { position: relative; }

    .dropdown-box {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 200px;
      list-style: none;
      padding: 10px 0;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      border-top: 3px solid var(--clanora-light-blue);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s;
      z-index: 200;
    }

    .has-dropdown:hover .dropdown-box {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-box li a {
      display: block;
      padding: 8px 20px;
      color: var(--text-dark);
      text-decoration: none;
      font-size: 14px;
    }
    .dropdown-box li a:hover { background: #f8f9fa; color: var(--clanora-light-blue); }

    .nav-actions-area {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .search-btn {
      background: none;
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: var(--text-dark);
    }

    .btn-estimate {
      background-color: var(--clanora-red);
      color: #fff;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
      transition: 0.3s;
      white-space: nowrap;
    }
    .btn-estimate:hover { background-color: #2455cc; }

    .cart-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      white-space: nowrap;
    }

    .cart-text { font-weight: 700; color: var(--text-dark); }

    .cart-icon-group {
      position: relative;
      font-size: 18px;
      color: var(--text-dark);
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--clanora-yellow);
      color: #fff;
      font-size: 10px;
      width: 16px;
      height: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-weight: bold;
    }

    /* MOBILE TOGGLE + DRAWER */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-dark);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      opacity: 0;
      visibility: hidden;
      transition: 0.25s ease;
      z-index: 1000;
    }
    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-drawer {
      display: block;
      position: fixed;
      top: 0;
      right: -340px;
      width: min(340px, 85vw);
      height: 100vh;
      background: #fff;
      padding: 18px;
      border-left: 1px solid #eee;
      z-index: 1001;
      transition: right 0.25s ease;
      overflow-y: auto;
    }
    .mobile-drawer.open { right: 0; }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 10px;
      border-bottom: 1px solid #f2f2f2;
      margin-bottom: 12px;
    }
    .drawer-title {
      font-weight: 800;
      color: var(--text-dark);
    }
    .drawer-close {
      background: #f4f4f4;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 8px;
      cursor: pointer;
      color: var(--text-dark);
      font-size: 16px;
    }

    .mobile-nav-list { list-style: none; padding: 0; margin: 0; }
    .mobile-nav-list li { margin-bottom: 6px; }
    .mobile-nav-list a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 700;
      font-size: 16px;
      display: block;
      padding: 12px 10px;
      border-radius: 8px;
    }
    .mobile-nav-list a:hover {
      background: #f5f7ff;
      color: var(--clanora-light-blue);
    }

    /* ================= RESPONSIVE FIXES ================= */
    @media (max-width: 1024px) {
      /* Top bar becomes stacked/wrapped */
      .top-flex { flex-wrap: wrap; }
      .top-left, .top-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
      }
      .top-right { justify-content: flex-start; }
      .top-links { width: 100%; display: flex; gap: 14px; flex-wrap: wrap; }

      /* Navbar switches to mobile */
      .nav-flex-container {
        height: auto;
        min-height: 70px;
      
        justify-content: space-between;
      }
      .nav-menu-area, .vertical-divider.mobile-hide, .vertical-divider { display: none; }
      .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .nav-actions-area { gap: 12px; }
      .btn-estimate { padding: 10px 14px; font-size: 13px; }
    }

    @media (max-width: 480px) {
      .btn-estimate { display: none; } /* optional */
      .cart-text { display: none; }    /* optional */
      .clanora-top-bar { font-size: 12px; }
      .info-item { white-space: normal; }
    }

    /* Hide top bar completely on mobile */
@media (max-width: 1024px) {
  .clanora-top-section {
    display: none !important;
  }
}

/* Mobile dropdown styles */
.mobile-dropdown-box {
  list-style: none;
  padding: 0;
  margin: 0 0 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-box.open {
  max-height: 500px; /* Adjust based on content */
}

.mobile-services-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-list .has-dropdown-mobile {
  position: relative;
}

.mobile-nav-list a {
  /* Your existing styles */
}

.mobile-dropdown-box li a {
  font-size: 15px !important;
  padding: 8px 10px !important;
  border-radius: 6px;
}

  /* nav bar  */




/* ====================<section class="home-index-1"> ============================ */

.home-index-1{
  position: relative;
  min-height: calc(100vh - 150px);
  background: #000;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  text-align: center;
}

/* Video background cover */
.home-index-1__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Overlay */
.home-index-1__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 43, 105, 0.55) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.home-index-1__content{
  position: relative;
  z-index: 2;
  padding: 90px 15px;
  color: #fff;
  max-width: 920px;
}

/* Text */
.home-index-1__title{
  font-size: clamp(26px, 4.4vw, 56px);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.home-index-1__subtitle{
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.7;
  opacity: 0.95;
  margin: 0 auto 22px auto;
  max-width: 720px;
}

/* Button center */
.home-index-1__cta{
  display: flex;
  justify-content: center;
}

/* Red button */
.home-index-1__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  background: #DB2925; /* red */
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.28);
  transition: transform .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}

.home-index-1__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Shine effect on button */
.home-index-1__btn::after{
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 40%;
  height: 140%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  opacity: 0;
}

@media (prefers-reduced-motion: no-preference){
  /* Text animations (fade + up) */
  .home-index-1__title{
    opacity: 0;
    transform: translateY(18px);
    animation: homeIndexFadeUp .7s ease forwards;
  }
  .home-index-1__subtitle{
    opacity: 0;
    transform: translateY(18px);
    animation: homeIndexFadeUp .7s ease .12s forwards;
  }
  .home-index-1__btn{
    opacity: 0;
    transform: translateY(18px);
    animation: homeIndexFadeUp .7s ease .22s forwards, homeIndexPulse 2.2s ease-in-out .9s infinite;
  }
  .home-index-1__btn:hover::after{
    opacity: 1;
    animation: homeIndexShine .9s ease forwards;
  }
}

@keyframes homeIndexFadeUp{
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeIndexPulse{
  0%,100% { box-shadow: 0 10px 30px rgba(229, 9, 20, 0.28); }
  50%     { box-shadow: 0 14px 42px rgba(229, 9, 20, 0.45); }
}

@keyframes homeIndexShine{
  0%   { left: -60%; }
  100% { left: 140%; }
}

/* Mobile extra */
@media (max-width: 600px){
  .home-index-1__content{
    padding: 70px 15px;
  }
  .home-index-1__btn{
    width: 100%;
    max-width: 320px; /* button center + big tap area */
  }
}

/* SECTION 2 CSS END ============================ */


/* ======================      <section class="process-steps-section">=========================== */


/* ==============end===================== */



/* <section class="service-hex"> */


  .service-hex{
    padding:80px 15px 90px;
    background:var(--clanora-blue);
    color:#111827;
  }

  .service-hex__inner{
    max-width:1180px;
    margin:0 auto;
    text-align:center;
  }

  .service-hex__tag{
    font-size:12px;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--clanora-red);
    margin:0 0 6px;
  }

  .service-hex__title{
    font-size:clamp(26px,3.2vw,34px);
    font-weight:800;
    color:#ffffff;
    margin:0 0 40px;
  }

  .service-hex__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:35px 30px;
  } /* 3-column cards like screenshot [file:121] */

  .hex-card{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .hex-card__topcap{
    width:210px;
    height:84px;
    border-radius:40px 40px 0 0;
    background:#edf1f8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:-42px;
    z-index:2;
    box-shadow:0 12px 25px rgba(148,163,184,0.2);
  }

  .hex-card__topcap span{
    font-weight:700;
    font-size:20px;
    letter-spacing:.15em;
    color:#94a3b8;
  }

  .hex-card__topcap--accent{
    background:#ffe3d4;
  }

  .hex-card__shape{
    position:relative;
    width:100%;
    max-width:310px;
    background:#ffffff;
    border-radius:32px;
    clip-path:polygon(50% 0,92% 18%,100% 55%,77% 100%,23% 100%,0 55%,8% 18%);
    padding:80px 40px 70px;
    box-shadow:0 18px 40px rgba(15,23,42,0.08);
    border:1px solid #e5e7eb;
    box-sizing:border-box;
    text-align:center;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  } /* hexagon via clip-path [web:95] */

  .hex-card__title{
    margin:0 0 10px;
    font-size:16px;
    font-weight:800;
    color:#020617;
  }

  .hex-card__text{
    margin:0 0 22px;
    font-size:14px;
    line-height:1.7;
    color:#6b7280;
  }

  .hex-card__link{
    border:none;
    background:none;
    padding:0;
    font-size:13px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#111827;
    display:inline-flex;
    align-items:center;
    gap:4px;
    cursor:pointer;
  }

  .hex-card__footer{
    width:100%;
    max-width:310px;
    height:70px;
    z-index: 1;
    margin-top:-30px;
    border-radius:0 0 40px 40px;
    background:#ffffff;
    box-shadow:0 18px 30px rgba(148,163,184,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .hex-card__icon{
    width:60px;
    height:60px;
    border-radius:999px;
    background:#f9fafb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
  }

  /* HOVER: RED ACCENT */
  .hex-card:hover .hex-card__shape{
    border-color:#ef4444;
    background:#fff1f1;
    box-shadow:0 24px 45px rgba(248,113,113,0.35);
    transform:translateY(-6px);
  }

  .hex-card:hover .hex-card__title{
    color:#b91c1c;
  }

  .hex-card:hover .hex-card__link{
    color:#b91c1c;
  }

  .hex-card:hover .hex-card__icon{
    background:#b91c1c;
    color:#ffffff;
  }

  @media (max-width:992px){
    .service-hex__grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
  }

  @media (max-width:640px){
    .service-hex{
      padding:60px 15px 80px;
    }
    .service-hex__grid{
      grid-template-columns:minmax(0,1fr);
    }
  }


/* end */


/* <section class="stats-ribbon"> */


  .stats-ribbon{
    padding:40px 15px;
  }

  .stats-ribbon__inner{
    max-width:1220px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
  }

  .stat-card{
    position:relative;
    background:var(--clanora-red);
    color:#f9fafb;
    padding:46px 24px 32px;
    border-radius:6px 6px 46px 6px; /* bottom-right big radius like design */
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    overflow:hidden;
  }

  .stat-card__icon{
    font-size:34px;
    margin-bottom:18px;
    opacity:.9;
  }

  .stat-card__label{
    margin:0 0 10px;
    font-size:17px;
    font-weight:600;
  }

  .stat-card__value{
    margin:0;
    font-size:34px;
    font-weight:700;
  }

  /* subtle hover */
  .stat-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:1px solid rgba(255,255,255,0.06);
    pointer-events:none;
  }

  .stat-card:hover{
    background:#b91c1c;
  }

  @media (max-width:1100px){
    .stats-ribbon__inner{
      grid-template-columns:repeat(3,minmax(0,1fr));
    }
  }

  @media (max-width:768px){
    .stats-ribbon__inner{
      grid-template-columns:repeat(2,minmax(0,1fr));
    }
  }

  @media (max-width:540px){
    .stats-ribbon__inner{
      grid-template-columns:minmax(0,1fr);
    }
    .stat-card{
      align-items:center;
      text-align:center;
    }
  }
/* end */


/* PERFECT MATCH - SAME TO SAME DESIGN */
.elycura-services-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.elycura-services-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT: HERO IMAGE + STATS BADGE */
.elycura-services-section__hero {
  position: relative;
}

.elycura-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.elycura-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.elycura-stats-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--clanora-red);
  color: white;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.elycura-stats-number {
  font-size: 28px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

/* RIGHT: CONTENT */
.elycura-services-title {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 12px;
  line-height: 1.2;
}

.elycura-services-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--clanora-red);
  margin: 0 0 16px;
  line-height: 1.3;
}

.elycura-services-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 32px;
}

.elycura-services-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BUTTONS */
.elycura-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.elycura-btn--primary {
  background: var(--clanora-red);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.elycura-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.elycura-btn--secondary {
  background: white;
  color: #1f2937;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.elycura-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
  color: #2563eb;
}

.elycura-founder-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .elycura-services-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .elycura-services-section__hero {
    order: 2;
  }
  
  .elycura-services-section__content {
    order: 1;
  }
  
  .elycura-services-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .elycura-services-section {
    padding: 40px 15px;
  }
  
  .elycura-hero-image img {
    height: 350px;
  }
  
  .elycura-services-title {
    font-size: 26px;
  }
  
  .elycura-services-subtitle {
    font-size: 20px;
  }
  
  .elycura-services-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .elycura-btn {
    justify-content: center;
  }
}

/* end */


/* <section class="industries-section"> */
.industries-section {
  padding: 80px 20px;
  background: #e8eef5;
  position: relative;
}

.industries-container {
  max-width: 1500px;
  margin: 0 auto;
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Industries Grid - Exact 4 columns */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20.25px;
}

.industry-card {
  background: var(--clanora-red);
  border-radius: 9.72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40.5px 24.3px;
  min-height: 178.2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--clanora-red);
  cursor: pointer;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.1), 
    transparent
  );
  transition: left 0.6s;
}

.industry-card:hover::before {
  left: 100%;
}

.industry-card:hover {
  transform: translateY(-8.1px) scale(1.03);
  box-shadow: 0 12.96px 40.5px rgba(0,61,122,0.4);
  background: var(--clanora-red);
}

.industry-icon {
  width: 64.8px;
  height: 64.8px;
  margin-bottom: 16.2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-card:hover .industry-icon img {
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(255,255,255,0.5));
}

.industry-name {
  font-size: 0.9315rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Responsive - Exact same breakpoints */
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 17.82px;
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 70px 15px;
  }
  
  .section-title {
    font-size: 2.3rem;
    margin-bottom: 50px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16.2px;
  }
  
  .industry-card {
    padding: 32.4px 20.25px;
    min-height: 162px;
  }
  
  .industry-icon {
    width: 56.7px;
    height: 56.7px;
    margin-bottom: 14.58px;
  }
  
  .industry-name {
    font-size: 0.8505rem;
  }
}

@media (max-width: 540px) {
  .industries-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 14.58px;
  }
  
  .industry-card {
    padding: 28.35px 16.2px;
    min-height: 145.8px;
  }
}

/* end */



/*<section class="process-steps-section">  */

.process-steps-section {
  width: 100%;
  background: #031D49;
  padding: 80px 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.process-steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(47,107,255,0.02) 10px, rgba(47,107,255,0.02) 20px),
    radial-gradient(circle at 30% 70%, rgba(47,107,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Section Header - SAME */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color:  #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  line-height: 1.2;
}

.section-heading.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heading-underline {
  width: 0;
  height: 5px;
  background:  #ffffff;
  margin: 0 auto 20px auto;
  border-radius: 3px;
  transition: width 0.8s ease 0.4s;
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4);
}

.heading-underline.show {
  width: 150px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
}

/* Steps Container - SAME */
.steps-container {
  max-width: 1400px;
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 10px;
  flex-wrap: wrap;
}

.step-item {
  flex: 0 0 192px;
  min-width: 192px;
  max-width: 208px;
  opacity: 0;
  transform: translateY(100px) scale(0.85);
  transform-origin: center bottom;
}

.step-item.animate-in {
  animation: waveCardIn 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes waveCardIn {
  0% {
    opacity: 0;
    transform: translateY(120px) scale(0.85);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.step-item:nth-child(1).animate-in { animation-delay: 0.2s; }
.step-item:nth-child(2).animate-in { animation-delay: 0.35s; }
.step-item:nth-child(3).animate-in { animation-delay: 0.5s; }
.step-item:nth-child(4).animate-in { animation-delay: 0.65s; }
.step-item:nth-child(5).animate-in { animation-delay: 0.8s; }

/* NEW WAVE DESIGN - 20% SMALLER */
.step-wave {
  position: relative;
  height: 288px;
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 32px 80px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1px solid rgba(236, 245, 255, 0.7);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.4), 
    transparent
  );
  transition: left 0.6s;
}

.step-wave:hover::before {
  left: 100%;
}

.step-wave::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,107,255,0.3), transparent);
}

.wave-container {
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wave-container::before,
.wave-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wave-container::before {
  width: 112px;
  height: 112px;
  border: 2px solid;
  opacity: 0.3;
  animation: waveRipple 3s ease-in-out infinite;
}

.wave-container::after {
  width: 80px;
  height: 80px;
  border: 2px solid;
  opacity: 0.5;
  animation: waveRipple 3s ease-in-out infinite 1s;
}

@keyframes waveRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.wave-number {
  font-size: 3.36rem;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 3;
  text-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-feature-settings: 'tnum' 1;
}

.wave-step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 5px;
  position: relative;
  z-index: 3;
  opacity: 0.95;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark, #0e1d34);
  text-align: center;
  z-index: 3;
  padding: 0 10px;
}

/* Blue Color Variations */
.wave-container.blue-1::before { border-color: #3b82f6; }
.wave-container.blue-1::after { border-color: #3b82f6; }
.wave-number.blue-1, .wave-step.blue-1 { color: #3b82f6; }

.wave-container.blue-2::before { border-color: #2f6bff; }
.wave-container.blue-2::after { border-color: #2f6bff; }
.wave-number.blue-2, .wave-step.blue-2 { color: #2f6bff; }

.wave-container.blue-3::before { border-color: #1d4ed8; }
.wave-container.blue-3::after { border-color: #1d4ed8; }
.wave-number.blue-3, .wave-step.blue-3 { color: #1d4ed8; }

.wave-container.blue-4::before { border-color: #1e40af; }
.wave-container.blue-4::after { border-color: #1e40af; }
.wave-number.blue-4, .wave-step.blue-4 { color: #1e40af; }

.wave-container.blue-5::before { border-color: #022b69; }
.wave-container.blue-5::after { border-color: #022b69; }
.wave-number.blue-5, .wave-step.blue-5 { color: #022b69; }

/* Responsive */
@media (min-width: 1200px) {
  .steps-container { justify-content: space-between; flex-wrap: nowrap; }
  .step-item { flex: 1 1 18%; }
}

@media (max-width: 900px) {
  .process-steps-section { padding: 60px 4%; }
  .section-heading { font-size: 2.2rem; }
  .section-subtitle { font-size: 1.05rem; }
  .steps-container { gap: 24px; }
}

@media (max-width: 600px) {
  .process-steps-section { padding: 50px 3%; }
  .section-header { padding: 0 10px; margin-bottom: 50px; }
  .section-heading { font-size: 1.8rem; margin-bottom: 12px; }
  .heading-underline.show { width: 100px; height: 4px; }
  .section-subtitle { font-size: 0.95rem; line-height: 1.5; }
  .steps-container { gap: 20px; flex-direction: column; align-items: center; }
  .step-item { flex: 0 0 auto; min-width: 224px; max-width: 224px; }
  .step-wave { padding: 32px 22px; height: 256px; border-radius: 22px; }
  .wave-container { width: 112px; height: 112px; margin-bottom: 20px; }
  .wave-container::before { width: 96px; height: 96px; }
  .wave-container::after { width: 68px; height: 68px; }
  .wave-number { font-size: 2.88rem; }
  .wave-step { font-size: 0.64rem; }
  .step-title { font-size: 0.92rem; }
}


/* end */



/* <section class="service-hex"> */
.service-hex {
  padding: 80px 15px 90px;
  background: #031D49;
  color: #111827;
}

.service-hex__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.service-hex__tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clanora-red);
  margin: 0 0 6px;
}

.service-hex__title {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 15px;
  position: relative;
  display: inline-block;
}

/* White Underline */
.service-hex__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
}

.service-hex__title-wrapper {
  margin-bottom: 40px;
}

.service-hex__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 30px;
}

.hex-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateX(0);
}

/* Scroll Animation - Left Cards */
.hex-card[data-direction="left"] {
  animation: slideInLeft 0.8s ease-out forwards;
}

/* Scroll Animation - Right Cards */
.hex-card[data-direction="right"] {
  animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hex-card:nth-child(1) { animation-delay: 0.1s; }
.hex-card:nth-child(2) { animation-delay: 0.2s; }
.hex-card:nth-child(3) { animation-delay: 0.3s; }
.hex-card:nth-child(4) { animation-delay: 0.4s; }
.hex-card:nth-child(5) { animation-delay: 0.5s; }
.hex-card:nth-child(6) { animation-delay: 0.6s; }

.hex-card__topcap {
  width: 210px;
  height: 84px;
  border-radius: 40px 40px 0 0;
  background: #edf1f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -42px;
  z-index: 2;
  box-shadow: 0 12px 25px rgba(0, 106, 255, 0.2);
  transition: all 0.3s ease;
}

.hex-card__topcap span {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #ff0000;
  transition: color 0.3s ease;
}

.hex-card__topcap--accent {
  background: #ffe3d4;
}

.hex-card__shape {
  position: relative;
  width: 100%;
  max-width: 310px;
  background: #ffffff;
  border-radius: 32px;
  clip-path: polygon(50% 0, 92% 18%, 100% 55%, 77% 100%, 23% 100%, 0 55%, 8% 18%);
  padding: 80px 40px 70px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* SVG Hexagonal Border */
.hex-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hex-stroke {
  transition: all 0.4s ease;
  stroke-dasharray: 1200;
  stroke-dashoffset: 0;
  stroke: #fa0000;
  stroke-width: 2.5;
  opacity: 1;
}

/* Background Image Layer */
.hex-card__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?w=800');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hex-card__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,43,105,0.85) 0%, rgba(47,107,255,0.85) 100%);
}

/* Content Layer */
.hex-card__content {
  position: relative;
  z-index: 2;
}

.hex-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #020617;
  transition: color 0.3s ease;
}

.hex-card__text {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  transition: color 0.3s ease;
}

.hex-card__link {
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hex-card__footer {
  width: 100%;
  max-width: 310px;
  height: 70px;
  z-index: 1;
  margin-top: -30px;
  border-radius: 0 0 40px 40px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hex-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.3s ease;
}

/* HOVER EFFECTS */
.hex-card:hover .hex-card__shape {
  box-shadow: 
    0 24px 50px rgba(47, 107, 255, 0.4),
    inset 0 0 0 2px rgba(47, 107, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
}

.hex-card:hover .hex-stroke {
  stroke: var(--clanora-light-blue, #2f6bff);
  stroke-width: 3.5;
  filter: drop-shadow(0 0 8px rgba(47, 107, 255, 0.6));
  animation: hexDash 2s linear infinite;
}

@keyframes hexDash {
  to {
    stroke-dashoffset: -1200;
  }
}

.hex-card:hover .hex-card__bg-image {
  opacity: 1;
}

.hex-card:hover .hex-card__title {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hex-card:hover .hex-card__text {
  color: #e0f2fe;
}

.hex-card:hover .hex-card__link {
  color: #ffffff;
}

.hex-card:hover .hex-card__topcap {
  background: var(--clanora-light-blue, #2f6bff);
  box-shadow: 0 16px 35px rgba(47, 107, 255, 0.4);
}

.hex-card:hover .hex-card__topcap span {
  color: #ffffff;
}

.hex-card:hover .hex-card__icon {
  background: var(--clanora-light-blue, #2f6bff);
  color: #ffffff;
  transform: scale(1.1);
}

.hex-card:hover .hex-card__footer {
  background: rgba(255,255,255,0.95);
}

/* Responsive */
@media (max-width: 992px) {
  .service-hex__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-hex {
    padding: 60px 15px 80px;
  }
  .service-hex__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .hex-card[data-direction="left"],
  .hex-card[data-direction="right"] {
    animation: slideInUp 0.8s ease-out forwards;
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .service-hex__title::after {
    width: 60px;
    height: 3px;
  }
}


/* end */



/* <section class="services-cleaning"> */
  .services-cleaning{
    padding:80px 15px 90px;
    background:#031d49;
    color:#ffffff;
  }

  .services-cleaning__inner{
    max-width:1180px;
    margin:0 auto;
  }

  .services-cleaning__head{
    text-align:center;
    margin-bottom:40px;
  }

  .services-cleaning__eyebrow{
    font-size:13px;
    letter-spacing:.3em;
    text-transform:uppercase;
    color:#c4d7ff;
    margin:0 0 10px;
  }

  .services-cleaning__title{
    margin:0;
    font-size:clamp(26px,3.3vw,38px);
    font-weight:800;
    line-height:1.25;
  }

  .services-cleaning__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px 24px;
  }

  .service-card{
    display:flex;
    align-items:center;
    padding:30px 34px;
    background:#ffffff;
    color:#020617;
    border-radius:26px;
    border-bottom-right-radius:80px;
    box-shadow:0 18px 40px rgba(15,23,42,0.25);
    position:relative;
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }

  .service-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 28px 60px rgba(15,23,42,0.45);
  }

  .service-card__iconwrap{
    flex:0 0 auto;
    width:80px;
    height:80px;
    border-radius:999px;
    background:#f3f6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:22px;
  }

  .service-card__icon{
    width:60px;
    height:60px;
    border-radius:999px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
  }

  .service-card__content{
    flex:1 1 auto;
  }

  .service-card__title{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
    color:#020617;
  }

  .service-card__text{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:#64748b;
  }

  .service-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:1px solid transparent;
    transition:border-color .2s ease;
  }

  .service-card:hover::after{
    border-color:#0ea5e9;
  }

  @media (max-width:900px){
    .services-cleaning__grid{
      grid-template-columns:minmax(0,1fr);
    }
  }

  @media (max-width:600px){
    .service-card{
      padding:24px 22px;
    }
  }

/* end */


/*  <section class="before-after">*/
  .before-after{
    padding:70px 15px 90px;
    background:#f5f7fb;
    color:#020617;
  }

  .before-after__inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
    gap:40px;
    align-items:center;
  }

  /* --- SLIDER --- */
  .ba-slider{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    border-radius:24px;
    overflow:hidden;
    background:#000;
    box-shadow:0 18px 40px rgba(15,23,42,0.35);
    user-select:none;
  }

  .ba-slider__img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .ba-slider__before-wrap{
    position:absolute;
    inset:0;
    width:50%;
    overflow:hidden;
  }

  .ba-slider__divider{
    position:absolute;
    top:0;
    bottom:0;
    width:2px;
    background:#ffffff;
    left:50%;
    transform:translateX(-1px);
    pointer-events:none;
  }

  .ba-slider__handle{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90px;
    height:90px;
    border-radius:999px;
    border:none;
    background:#ffffff;
    box-shadow:0 12px 28px rgba(15,23,42,0.35);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    cursor:grab;
  }

  .ba-slider__handle:active{
    cursor:grabbing;
  }

  .ba-slider__label{
    position:absolute;
    top:18px;
    padding:8px 18px;
    border-radius:10px;
    font-weight:700;
    font-size:14px;
    color:#ffffff;
  }

  .ba-slider__label--left{
    left:18px;
    background:#16a34a;
  }

  .ba-slider__label--right{
    right:18px;
    background:#111827;
  }

  /* --- TEXT SIDE --- */
  .before-after__content{
    max-width:480px;
  }

  .before-after__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 10px;
    border-radius:999px;
    background:#e0f2fe;
    font-size:13px;
    font-weight:600;
    color:#0369a1;
    margin-bottom:12px;
  }

  .before-after__eyebrow-icon{
    width:22px;
    height:22px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0ea5e9;
    color:#ffffff;
    font-size:13px;
  }

  .before-after__title{
    margin:0 0 14px;
    font-size:clamp(26px,3.4vw,36px);
    font-weight:800;
    line-height:1.2;
  }

  .before-after__text{
    margin:0 0 18px;
    font-size:15px;
    line-height:1.7;
    color:#4b5563;
  }

  .before-after__list{
    list-style:none;
    margin:0 0 20px;
    padding:0;
    font-size:14px;
    color:#1f2933;
  }

  .before-after__list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
  }

  .before-after__list span{
    width:22px;
    height:22px;
    border-radius:999px;
    background:var(--color-green-500,#ee2517);
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
  }

  .before-after__actions{
    display:flex;
    align-items:center;
    gap:14px;
  }

  .btn-primary{
    padding:14px 28px;
    border-radius:999px;
    border:none;
    background:red;
    color:#ffffff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
  }

  .btn-link{
    border:none;
    background:none;
    color:#111827;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
  }

  @media (max-width:960px){
    .before-after__inner{
      grid-template-columns:minmax(0,1fr);
    }
  }

  @media (max-width:640px){
    .before-after{
      padding:50px 15px 70px;
    }
    .ba-slider{
      aspect-ratio:4/4;
    }
  }



/* end */


/*<section class="clanora-features">  */

.clanora-features{
  padding:70px 15px 80px;
  background:linear-gradient(180deg,#ffffff 0%, #f6f8ff 60%, #eef4ff 100%);
}

.clanora-features__inner{
  max-width:1200px;
  margin:0 auto;
}

.clanora-features__header{
  text-align:center;
  margin-bottom:34px;
  position: relative;
}

.clanora-features__title{
  font-size:clamp(26px,3.3vw,44px);
  line-height:1.15;
  margin:0 0 20px;
  font-weight:800;
  color:var(--text-dark);
  display: inline-block;
  position: relative;
}

/* Black Underline */
.clanora-features__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #000000;
  border-radius: 2px;
}

.clanora-features__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:28px;
}

.clanora-feature-card{
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(234,234,234,0.9);
  box-shadow:0 24px 60px rgba(2,43,105,0.08);
  height:360px;
  overflow:hidden;
  position:relative;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  display:flex;
  flex-direction:column;
}

.clanora-feature-card__content{
  padding:34px 30px 20px;
  flex:1;
  display:flex;
  flex-direction:column;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index:2;
  position:relative;
}

.clanora-feature-card__iconWrap{
  width:74px;
  height:74px;
  border-radius:18px;
  background:red;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.clanora-feature-card__icon{
  width:44px;
  height:44px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 4px 10px rgba(2,43,105,0.12));
}

.clanora-feature-card__title{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.35;
  font-weight:800;
  color:var(--text-dark);
}

.clanora-feature-card__text{
  margin:0 0 22px;
  font-size:14px;
  line-height:1.9;
  color:#7a879a;
  font-weight:400;
}

.clanora-feature-card__link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--text-dark);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.clanora-feature-card__circle{
  width:34px;
  height:34px;
  border-radius:999px;
  border:2px solid rgba(2,43,105,0.9);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  transition:all 0.3s ease;
}

/* reveal image from bottom half */
.clanora-feature-card__image{
  position:absolute;
  inset:auto 0 0 0;
  height:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  z-index:1;
}

/* hover */
.clanora-feature-card:hover{
  box-shadow:0 32px 80px rgba(2,43,105,0.15);
  border-color:rgba(255,180,0,0.3);
}

.clanora-feature-card:hover .clanora-feature-card__content{
  padding:20px 30px 10px;
  transform:translateY(-80px);
}

.clanora-feature-card:hover .clanora-feature-card__image{
  height:50%;
  opacity:1;
}

.clanora-feature-card:hover .clanora-feature-card__circle{
  background:rgba(255,180,0,0.2);
  border-color:rgba(255,180,0,1);
  transform:scale(1.1);
}

/* Responsive */
@media (max-width:1100px){
  .clanora-features__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  
  .clanora-features__title::after {
    width: 70px;
    height: 3px;
  }
}

@media (max-width:640px){
  .clanora-features{
    padding:55px 15px 60px;
  }
  .clanora-features__grid{
    grid-template-columns:minmax(0,1fr);
  }
  
  .clanora-features__title::after {
    width: 60px;
    height: 3px;
  }
}


/* end */

/* <footer class="corporate-footer"> */


/* CTA Section */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.corporate-footer {
  background: linear-gradient(145deg, #1a1f2e 0%, #16213e 50%, #0f1425 100%);
  color: #e2e8f0;
  line-height: 1.6;
  position: relative;
}

.corporate-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.premium-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  padding: 68px 0;
  position: relative;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-main h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #fff, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-main p {
  font-size: 1.2rem;
  color: #bfdbfe;
  margin: 0;
  font-weight: 500;
}

.cta-premium {
  padding: 20px 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.5);
}

.cta-premium:hover::before { left: 100%; }

/* Main Content */
.footer-main { padding: 90px 0 70px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.3fr;
  gap: 48px;
}

.footer-block {
  padding: 0;
}

.footer-block h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 32px;
  position: relative;
  padding-left: 12px;
}

.footer-block h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

.company-logo {
  height: 72px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.footer-block p {
  color: #cbd5e1;
  font-size: 1rem;
  margin: 0 0 28px;
  line-height: 1.75;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 16px;
}

/* Services Scroll - PERFECT TEXT WIDTH UNDERLINE */
.services-scroll {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #3b82f6 rgba(255,255,255,0.1);
}

.services-scroll::-webkit-scrollbar {
  width: 6px;
}

.services-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}

.services-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  border-radius: 3px;
}

.service-item {
  display: block !important;
  padding: 8px 0 12px 0;
  margin-bottom: 12px !important;
  font-size: 0.95rem !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-item span {
  position: relative;
  display: inline-block;
  padding: 4px 4px;
  color: #ffffff83 !important;
}

.service-item span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transition: width 0.3s ease;
}

.service-item:hover {
  color: #ffffff !important;
  padding-left: 8px;
}

.service-item:hover span::after {
  width: 100%; /* PERFECT TEXT WIDTH */
}

/* Navigation Links - SAME PERFECT TEXT WIDTH UNDERLINE */
.nav-item {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.98rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-item span {
  position: relative;
  display: inline-block;
  padding: 4px 0;
}

.nav-item span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: #ffffff;
  padding-left: 8px;
}

.nav-item:hover span::after {
  width: 100%; /* PERFECT TEXT WIDTH FOR NAVIGATION TOO */
}

/* Contact */
.contact-details { margin-bottom: 28px; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #94a3b8;
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.social-link:hover {
  background: #3b82f6;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bottom-content p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  gap: 28px;
}

.legal-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.legal-links a:hover { 
  color: #3b82f6; 
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
  }
  .services-scroll { max-height: 250px; }
}

@media (max-width: 768px) {
  .cta-row { 
    flex-direction: column; 
    text-align: center; 
    gap: 32px; 
  }
  .cta-main h2 { font-size: 2.1rem; }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 36px;
    text-align: center;
  }
  .company-block, .contact-block { text-align: left; }
  .services-scroll { max-height: 280px; }
  .bottom-content { flex-direction: column; text-align: center; }
  .legal-links { 
    gap: 24px; 
    flex-wrap: wrap;
    justify-content: center;
  }
  .legal-links a { margin: 0; }
}

@media (max-width: 480px) {
  .premium-cta { padding: 48px 0; }
  .footer-main { padding: 60px 0 50px; }
  .container { padding: 0 20px; }
  .service-item, .nav-item { font-size: 0.92rem !important; }
}

/* ===============================abbout-us========================= */
/* end */






/*<section class="testimonial-section">  */


/* Base Setup */
.testimonial-section {
  padding: 80px 20px;
  background-color: #f8fbff;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-main-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
}

.custom-blue-text { color: #022458; }

/* Slider Logic */
.testimonial-slider-container {
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: slideScroll 25s linear infinite;
}

@keyframes slideScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-380px * 2)); } /* Adjust based on card count */
}

.testimonial-track:hover {
  animation-play-state: paused;
}

/* Card Styling */
.testimonial-card {
  width: 350px;
  background: #ffffff;
  border-radius: 25px;
  padding: 50px 30px 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent; 
  display: flex;
  flex-direction: column;
}

/* RED BORDER ON HOVER */
.testimonial-card:hover {
  border-color: #ff0000;
  transform: translateY(-10px);
}

.testimonial-badge {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 45px;
  height: 45px;
  background: #022458;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f8fbff;
}

.badge-white { background: white; }

.active-card {
  background: linear-gradient(135deg, #022458 0%, #011a41 100%);
  color: white;
}

.testimonial-rating { color: #ffb800; margin-bottom: 15px; }

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-user { display: flex; align-items: center; gap: 12px; }

.user-avatar {
  width: 45px;
  height: 45px;
  background: #e0e7ff;
  color: #022458;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.avatar-blue { background: white; color: #022458; }

.user-name { font-size: 16px; font-weight: 700; margin: 0; }
.user-role { font-size: 13px; color: #888; margin: 0; }
.active-card .user-role { color: #e0e7ff; }

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card { width: 300px; }
}

/* end */



/* <section class="clanora-hero-security"> */

/* HERO SECURITY SECTION */
.clanora-hero-security {
  position: relative;
  height: 60vh;
  min-height: 450px; /* Minimum height ensures content fits on small screens */
  background: linear-gradient(135deg, #022b69 0%, #031D49 50%, #022458 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 20px;
}

/* Animated Background Pattern */
.clanora-hero-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(47, 107, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 180, 0, 0.08) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Content Container */
.clanora-hero-security__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.clanora-hero-security__inner {
  text-align: center;
}

/* Main Title with Word Animation */
.clanora-hero-security__title {
  font-size: clamp(2.2rem, 52px, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
}

/* Individual Word Animation */
.clanora-hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 0.15s);
}

@keyframes wordSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight Word (Bangalore) */
.clanora-hero-highlight {
  background: linear-gradient(135deg, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.clanora-hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, red);
  border-radius: 2px;
  animation: underlineExpand 0.8s ease-out 0.8s forwards;
  transform: scaleX(0);
}

@keyframes underlineExpand {
  to { transform: scaleX(1); }
}

/* Subtitle */
.clanora-hero-security__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0f2fe;
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s forwards;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ROUNDED WAVE BOTTOM DESIGN */
.clanora-hero-wave {
  position: absolute;
  bottom: -2px; /* Fixes tiny gap on some screens */
  left: 0;
  width: 100%;
  height: 100px; /* Height of the wave area */
  overflow: hidden;
  z-index: 3;
  line-height: 0;
}

.clanora-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.clanora-hero-wave path {
  animation: wavePulse 6s ease-in-out infinite alternate;
}

@keyframes wavePulse {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(1.05); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clanora-hero-security {
    height: auto;
    padding: 100px 20px 120px; /* Extra bottom padding for wave */
  }

  .clanora-hero-security__title {
    gap: 0.2em;
  }

  .clanora-hero-wave {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .clanora-hero-security {
    padding: 80px 15px 100px;
  }
  
  .clanora-hero-highlight::after {
    height: 3px;
  }
  
  .clanora-hero-wave {
    height: 40px;
  }
}

/* end */


/* <section class="security-services-03"> */
/* SECTION BASE */
.security-services-03 {
  padding: 20px 20px;
  background: #ffffff;
  overflow: hidden;
}

.security-services-03__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT SIDE */
.security-services-03__content {
  position: relative;
  /* Entrance Animation for Content */
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.security-services-03__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--clanora-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.security-services-03__label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: #ffb400;
}

.security-services-03__title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  color: #022b69;
  line-height: 1.15;
  margin: 0 0 25px;
}

.security-services-03__highlight {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.security-services-03__highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%; /* Animate width */
  height: 8px;
  background: rgba(47, 107, 255, 0.2);
  z-index: -1;
  animation: expandWidth 0.8s ease-out 0.5s forwards;
}

@keyframes expandWidth {
  to { width: 100%; }
}

/* JUSTIFIED TEXT */
.security-services-03__desc {
  font-size: 16px;
  line-height: 1.8; /* Better readability */
  color: #555;
  margin-bottom: 35px;
  text-align: justify; /* Justified Alignment */
}

/* 2x2 GRID FEATURES */
.security-services-03__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
  margin-bottom: 40px;
}

.security-services-03__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: var(--d); /* Staggered delay */
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.security-services-03__check {
  background: #eef4ff;
  color: #2f6bff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.security-services-03__item strong {
  display: block;
  font-size: 16px;
  color: #0e1d34;
  margin-bottom: 2px;
}

.security-services-03__item p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

/* BUTTON */
.security-services-03__btn {
  display: inline-block;
  background: #022b69;
  color: #fff;
  text-decoration: none;
  padding: 16px 38px;
  font-weight: 600;
  border-radius: 0 20px 0 20px;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 0px #2f6bff;
}

.security-services-03__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #2f6bff;
}

/* IMAGE SIDE ANIMATIONS */
.security-services-03__image-wrap {
  position: relative;
  padding: 20px 0 0 20px;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.8s ease-out 0.3s forwards;
}

@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

.security-services-03__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #2f6bff;
  border-radius: 30px;
  z-index: 1;
}

.security-services-03__img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: translate(-20px, -20px);
  transition: transform 0.3s ease;
}

.security-services-03__image-wrap:hover .security-services-03__img {
  transform: translate(-15px, -15px);
}

/* STATS BOX FLOAT ANIMATION */
.security-services-03__stats {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  z-index: 3;
  text-align: center;
  border-bottom: 4px solid #ffb400;
  animation: floatStats 3s ease-in-out infinite alternate;
}

@keyframes floatStats {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.security-services-03__stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #022b69;
  line-height: 1;
}

.security-services-03__stat-text {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .security-services-03__container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .security-services-03__image-wrap {
    order: -1;
    max-width: 550px;
    margin: 0 auto;
    padding: 15px 0 0 15px;
  }
}

@media (max-width: 600px) {
  .security-services-03 {
    padding: 60px 15px;
  }

  .security-services-03__desc {
    text-align: left; /* Better for mobile reading */
  }

  .security-services-03__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-services-03__title {
    font-size: 28px;
  }
}
/* end */



/* <section class="security-services-010" id="securitySection"> */
/* SECTION BASE */
.security-services-010 {
  padding: 100px 20px;
  background-color: #f1f1f1;
  overflow: hidden;
}

.security-services-010__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.security-services-010__header {
  text-align: center;
  margin-bottom: 60px;
}

.security-services-010__title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  color: #022b69;
  text-transform: uppercase;
  margin: 0 0 15px;
  letter-spacing: 1px;
}

.security-services-010__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.security-services-010__dots span {
  width: 8px;
  height: 8px;
  background: #DB2925; /* Red Dot */
  border-radius: 50%;
}

.security-services-010__dots span:nth-child(2) {
  background: #2f6bff; /* Blue Dot */
}

/* GRID */
.security-services-010__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  perspective: 1000px; /* Essential for 3D Effect */
}

/* CARD CONTAINER */
.security-services-010__card {
  position: relative;
  background: #f8f9fc;
  border: 1px solid #e2e8f0;
  padding: 40px 25px;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  
  /* INITIAL HIDDEN STATE */
  opacity: 0;
  transform: rotateY(90deg) translateY(50px);
  /* Animation is applied via JS class 'is-visible' */
}

/* ANIMATION CLASS (Added by JS when scrolled into view) */
.security-services-010__card.is-visible {
  animation: cardRotateIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d); /* Staggered Delay */
}

@keyframes cardRotateIn {
  0% {
    opacity: 0;
    transform: rotateY(90deg) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateY(0);
  }
}

/* Hover Effects */
.security-services-010__card:hover {
  background: #ffffff;
  border-color: #2f6bff;
  box-shadow: 0 15px 30px rgba(47, 107, 255, 0.1);
  transform: translateY(-5px); /* Lift Effect */
}

/* BACKGROUND ICON (Watermark) */
.security-services-010__bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 140px;
  color: rgba(2, 43, 105, 0.03); /* Faint Blue */
  z-index: 0;
  pointer-events: none;
  transition: transform 0.5s ease, color 0.5s ease;
}

/* Watermark turns RED on hover */
.security-services-010__card:hover .security-services-010__bg-icon {
  transform: translate(-50%, -50%) rotate(-15deg) scale(1.1);
  color: rgba(219, 41, 37, 0.05); /* Faint RED */
}

/* CORNER ACCENT */
.security-services-010__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent #022b69 transparent transparent;
  transition: border-color 0.3s ease;
  z-index: 1;
}

/* Corner turns RED on Hover */
.security-services-010__card:hover .security-services-010__corner {
  border-color: transparent #DB2925 transparent transparent; /* Red Accent */
}

/* ICON CIRCLE */
.security-services-010__icon-wrap {
  width: 80px;
  height: 80px;
  border: 2px dashed #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.8);
}

.security-services-010__icon {
  font-size: 32px;
  transition: transform 0.4s ease;
}

.security-services-010__card:hover .security-services-010__icon-wrap {
  border-style: solid;
  border-color: #2f6bff;
  background: #eef4ff;
}

.security-services-010__card:hover .security-services-010__icon {
  transform: rotateY(180deg);
}

/* TITLE & TEXT */
.security-services-010__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0e1d34;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.security-services-010__text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .security-services-010__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .security-services-010 {
    padding: 60px 20px;
  }
  
  .security-services-010__grid {
    grid-template-columns: 1fr;
  }
}
/* end */


/* <section class="security-services-018" id="whyChooseUs"> */
/* VARIABLES */
:root {
  --ss18-blue: #022b69;
  --ss18-red: #DB2925;
  --ss18-bg: #ffffff;
}

/* SECTION BASE */
.security-services-018 {
  padding: 80px 20px;
  background-color: var(--ss18-bg);
  color: #333;
  overflow: hidden;
}

.security-services-018__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* CENTERED HEADER */
.security-services-018__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.security-services-018__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ss18-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* UNDERLINE ANIMATION */
.security-services-018__underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--ss18-blue), var(--ss18-red));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.security-services-018__subtitle {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 10px;
}

/* GRID LAYOUT */
.security-services-018__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD WRAPPER & ANIMATION BASE */
.security-services-018__card {
  display: flex;
  flex-direction: column;
  opacity: 0; /* Hidden initially */
  transform: translateY(40px); /* Pushed down */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* ANIMATION TRIGGER CLASS */
.security-services-018__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay); /* Staggered effect */
}

/* CARD HEADER (Pill Shape) */
.security-services-018__head {
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: -18px; /* Overlap */
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-height: 60px; /* Ensure height consistency */
}

.security-services-018__head-text {
  font-weight: 700;
  font-size: 15px; /* Slightly smaller to fit long text */
  color: #ffffff;
  line-height: 1.2;
}

.security-services-018__icon-circle {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0; /* Prevents icon shrinking */
  margin-left: 10px;
}

/* THEME COLORS */
.security-services-018__card--blue .security-services-018__head { background: var(--ss18-blue); }
.security-services-018__card--red .security-services-018__head { background: var(--ss18-red); }

/* CARD BODY */
.security-services-018__body {
  border: 2px solid;
  border-radius: 20px;
  padding: 45px 20px 30px;
  background: #fdfdfd; 
  flex-grow: 1;
  position: relative;
  border-top-left-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.security-services-018__card:hover .security-services-018__body {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.security-services-018__card--blue .security-services-018__body { border-color: var(--ss18-blue); }
.security-services-018__card--red .security-services-018__body { border-color: var(--ss18-red); }

.security-services-018__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* CIRCUIT DECORATION (Bottom Right) */
.security-services-018__circuit {
  position: absolute;
  bottom: -7px;
  right: 40px;
  display: flex;
  align-items: center;
  background: var(--ss18-bg);
  padding: 0 10px;
  transition: background 0.3s ease;
}

.security-services-018__card:hover .security-services-018__circuit {
    background: #ffffff;
}

.security-services-018__circuit span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid;
  background: var(--ss18-bg);
  position: relative;
  z-index: 2;
  margin-right: 14px; /* Space for line */
}

.security-services-018__circuit span:last-child {
  margin-right: 0;
}

/* Connecting Lines */
.security-services-018__circuit span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px; /* Bridge gap */
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: currentColor;
}

/* Circuit Colors */
.security-services-018__card--blue .security-services-018__circuit span {
  border-color: var(--ss18-blue);
  color: var(--ss18-blue);
}
.security-services-018__card--red .security-services-018__circuit span {
  border-color: var(--ss18-red);
  color: var(--ss18-red);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .security-services-018__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-services-018 {
    padding: 60px 20px;
  }
  
  .security-services-018__grid {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 40px; /* More space between stacked items */
  }

  .security-services-018__card {
    opacity: 1; /* Disable scroll animation complexity on mobile if preferred, or keep it */
    transform: none;
  }
}
/* end */




/* whatsapp */

    .icon-bootm01 {
        width: 100%;
        position: relative;
     
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* Floating WhatsApp & Call Buttons - PNG Images */
    .floating-buttons {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .whatsapp-btn, .call-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .whatsapp-btn:hover, .call-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    }

    .whatsapp-btn img, .call-btn img {
        width: 60px;
        height: 60px;
        display: block;
    }

    .icon-bootm01-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .icon-bootm01-wrapper {
        display: flex;
        gap: 40px;
        align-items: center;
        padding: 50px;
        border-radius: 24px;
    }

    .icon-bootm01-left {
        flex: 0 0 40%;
        color: white;
        padding-right: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    .security-guard-icon {
        font-size: 64px;
        margin-bottom: 25px;
        text-shadow: 0 4px 15px rgba(0,0,0,0.5);
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    }

    .icon-bootm01-left h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 700;
        margin: 0 0 20px 0;
        line-height: 1.2;
        background: linear-gradient(135deg, #ffffff, #e2e8f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .icon-bootm01-left p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 0 20px 0;
        opacity: 0.9;
    }

    .icon-bootm01-highlight {
        font-size: clamp(15px, 2vw, 18px);
        line-height: 1.7;
        opacity: 0.85;
    }

    .icon-bootm01-right {
        flex: 0 0 60%;
    }

    .icon-bootm01-form-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.2);
        width: 100%;
    }

    .icon-bootm01-header h3 {
        margin: 0 0 30px 0;
        font-size: 24px;
        font-weight: 600;
        color: #1e293b;
    }

    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 22px;
    }

    .half-width {
        flex: 1;
    }

    .full-width {
        width: 100%;
        margin-bottom: 22px;
    }

    .icon-bootm01-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #374151;
        font-size: 14px;
    }

    .icon-bootm01-group input,
    .icon-bootm01-group select,
    .icon-bootm01-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: #fafbfc;
        box-sizing: border-box;
    }

    .icon-bootm01-group input:focus,
    .icon-bootm01-group select:focus,
    .icon-bootm01-group textarea:focus {
        outline: none;
        border-color: #3b82f6;
        background: white;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .icon-bootm01-submit {
        width: 100%;
        background: linear-gradient(135deg, #ef4444, #dc2626);
        color: white;
        border: none;
        padding: 18px 28px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 12px;
    }

    .icon-bootm01-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(239, 68, 68, 0.4);
    }

    /* Tablet */
    @media (max-width: 1024px) {
        .icon-bootm01-wrapper {
            gap: 30px;
            padding: 40px;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .icon-bootm01 {
          
            background-attachment: scroll;
        }
        
        .icon-bootm01-wrapper {
            flex-direction: column;
            gap: 30px;
            padding: 30px 25px;
            border-radius: 20px;
        }
        
        .icon-bootm01-left,
        .icon-bootm01-right {
            flex: none;
            width: 100%;
        }
        
        .icon-bootm01-left {
            text-align: center;
            padding-right: 0;
        }
        
        .security-guard-icon {
            font-size: 52px;
            margin-bottom: 20px;
        }
        
        .icon-bootm01-form-card {
            padding: 35px 30px;
        }
        
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        /* Mobile Floating Buttons */
        .floating-buttons {
            bottom: 20px;
            right: 20px;
            gap: 12px;
        }
        
        .whatsapp-btn, .call-btn {
            width: 55px;
            height: 55px;
        }
        
        .whatsapp-btn img, .call-btn img {
            width: 60px;
            height: 60px;
        }
    }

    /* Small Mobile */
    @media (max-width: 480px) {
        .floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        
        .whatsapp-btn, .call-btn {
            width: 50px;
            height: 50px;
        }
        
        .whatsapp-btn img, .call-btn img {
            width: 60px;
            height: 60px;
        }
    }

    /* end */




/* <section class="about-us-1"> */
.about-us-1 {
  color: #ffffff;
  padding: 0;
  min-height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.about-us-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  pointer-events: none;
}

.about-us-1__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}

.about-us-1__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-1__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-us-1__underline {
  width: 80px;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 10px;
}

.about-us-1__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0;
  font-weight: 400;
}

.about-us-1__button {
  padding: 14px 36px;
  background: #DB2925;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
  width: fit-content;
  margin-top: 10px;
}

.about-us-1__button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,255,255,0.25);
}

.about-us-1__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}

.about-us-1__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,36,88,0.3) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.about-us-1__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-us-1__image:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .about-us-1__wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 20px;
  }
  
  .about-us-1__image {
    min-height: 350px;
  }
}

@media (max-width: 640px) {
  .about-us-1 {
    min-height: auto;
  }
  
  .about-us-1__wrapper {
    padding: 50px 15px;
    gap: 40px;
  }
  
  .about-us-1__title {
    font-size: 2rem;
  }
  
  .about-us-1__underline {
    width: 60px;
    height: 3px;
  }
  
  .about-us-1__text {
    font-size: 0.95rem;
  }
  
  .about-us-1__image {
    min-height: 280px;
  }
  
  .about-us-1__button {
    width: 100%;
  }
}
/* end */

/* <section class="ai-dev-section"> */

/* Base Styles */
.ai-dev-section {
  padding: 80px 20px;
  background-color: #f8fbff;
  color: #1a1a1a;
}

.ai-dev-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-dev-main-title {
  text-align: center;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  margin-bottom: 60px;
  line-height: 1.3;
}

.blue-text {
  color: red;
}

/* Stats Section */
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
  text-align: center;
}

.ai-stat-icon {
  margin-bottom: 15px;
}

.ai-stat-value {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #1a1a1a;
}

.ai-stat-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Cards Section with Red Hover Border */
.ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ai-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 50px 30px 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent; /* Prepare for hover border */
}

/* RED BORDER ON HOVER */
.ai-card:hover {
  border-color: #ff0000;
  transform: translateY(-5px);
}

.active-card {
  background: #022458;
}

.ai-card-badge {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: #022458;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #f8fbff;
}

.badge-white {
  background: white;
}

.ai-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.ai-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.bold-blue {
  color: red;
  font-weight: 600;
}

.text-white {
  color: #ffffff !important;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .ai-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .ai-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-card {
    max-width: 100%;
  }
}
/* end */


/* <section class="about-services-section"> */

/* 60% Height Reduction & General Styling */
.about-services-section {
  position: relative;
  padding: 50px 20px; /* Reduced vertical padding */
  background: #DB2925;
  color: #ffffff;
  overflow: hidden;
  height: 60vh; /* Set height to 60% of viewport */
  min-height: 510px;
  display: flex;
  align-items: center;
}

/* Curve SVGs */
.curve-top, .curve-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.curve-top { top: 0; }
.curve-bottom { bottom: 0; transform: rotate(180deg); }
.curve-top svg, .curve-bottom svg { display: block; width: 100%; height: 50px; }

/* Content Container */
.about-services-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end; /* Align content to the bottom */
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 5;
  width: 100%;
}

/* Moving Image to the Bottom Curve */
.about-left-content { 
  flex: 1; 
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-main-img {
  max-width: 85%; /* Slightly smaller */
  height: auto;
  margin-bottom: -55px; /* Pulls image down into the bottom rounded shape */
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Typography with Reduced Opacity */
.about-right-content { flex: 1.4; padding-bottom: 80px; }
.header-wrapper { margin-bottom: 15px; }

.section-heading {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  margin: 0;
  opacity: 1; /* Reduced opacity for heading */
}

/* Fixed Underline */
.heading-underline {
  width: 150px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6); /* Fixed opacity match */
  margin-top: 6px;
  border-radius: 2px;
}

/* Compact Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.06);
}

.service-item:hover {
  border-color: #ff0000;
  background: rgba(255, 255, 255, 0.12);
}

.service-icon-box {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon { width: 20px; height: 20px; }

.service-title { font-size: 15px; font-weight: 700; margin: 0; opacity: 0.9; }

.service-desc { 
  font-size: 12px; 
  opacity: 0.7; /* Reduced opacity for paragraph */
  margin: 0; 
  line-height: 1.2; 
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .about-services-section { height: auto; padding: 80px 20px; }
  .about-services-container { flex-direction: column-reverse; }
  .about-main-img { margin-bottom: -40px; }
  .heading-underline { margin: 6px auto; }
  .section-heading { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}
/* end */