
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


   :root {
      --white: #fff;
      --black: #000;
      --teal: #22b8b0;
      --teal-dark: #189992;
      --teal-light: #e0f7f6;
      --pink: #e8549a;
      --green: #6ecf6e;
      --blue: #4f8ef7;
      --purple: #9b72e8;
      --lavender: #c0b4f5;
      --dark: #0e1a2b;
      --dark2: #162236;
      --muted: #6b7c93;
      --gray: #555555;
      --dark: #1a1a1a;
      --light-gray: #f5f5f5;
      --body-font: 'Poppins', sans-serif;
      --head-font: 'Poppins', sans-serif;
        --border: #e0e0e0;



/* Gradients */
  --grad-primary: linear-gradient(135deg, #D32F2F 0%, #8E1414 100%);
  --grad-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --grad-overlay: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.85) 100%);
  --grad-accent: linear-gradient(135deg, #2563EB 0%, #0F172A 100%);


/* Spacing scale */
  --space-section: clamp(4rem, 8vw, 8rem);
  --space-section-sm: clamp(3rem, 6vw, 5rem);



  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.6s;

  --header-h: 88px;





    }




 /*   :root {
    --primary: #e8261a;
    --primary-dark: #c01e14;
    --dark: #1a1a1a;
    --dark2: #222222;
    --gray: #555555;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --border: #e0e0e0;
    --text: #333333;
    --accent: #e8261a;
  }
*/

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
  }



h1{font-size:50px;margin-bottom:10px;}
h2{font-size:40px;margin-bottom:10px;}
h3{font-size:30px;margin-bottom:10px;}
h4{font-size:20px;margin-bottom:10px;}
h5{font-size:17px;margin-bottom:10px;}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
   
}

p{
margin-bottom:10px;
font-size:16px;
line-height: 20px;
}



  /* ── TOP BAR ── */
  .top-bar {
    background: rgba(14, 26, 43, 0.97);
    color: var(--teal);
    font-size: 12px;
    padding: 6px 0;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-bar a {color: var(--blue);  text-decoration: none; }
  .top-bar a:hover { color: white !important; background:var(--blue); }
  .top-bar .region-links { display: flex; gap: 20px; }
  .top-bar .region-links a {
    padding: 3px 12px;
    border-radius: 3px;
    border: 1px solid var(--blue);
    transition: all .2s;
    border-radius: 15px;
  }
  .top-bar .region-links a.active,
  .top-bar .region-links a:hover {
    border-color: var(--blue);
    color: var(--blue);
  }
  .top-bar .contact-info { display: flex; gap: 20px; align-items: center; color: #aaa; }

  /* ── CONTAINER ── */
  .container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

  /* ── NAVBAR ── */

  .menu-toggle{
    width:32px;
    display:none;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    margin:6px 0;
    background:#111;
    border-radius:30px;
    transition:.4s;
}

/* Animation */

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}


  .logo-icon img{ width:130px; }
  nav {
    background: #f7f7f7;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon {
    /*width: 48px; height: 48px;*/
    background: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 22px;
    
  }
 
  .logo-text .brand { font-size: 20px; font-weight: 700; color: var(--dark); }
  .logo-text .tagline { font-size: 10px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

  .nav-menu { display: flex; gap:2px; list-style: none; align-items: center; margin-bottom:0; }
  .nav-menu > li { position: relative; }
  .nav-menu > li > a {
    display: block;
    padding:0px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
      letter-spacing: .3px;
    transition: color .2s;
    text-transform: uppercase;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li.active > a { color: var(--blue); }
/*  .nav-menu > li > a.has-dropdown::after {
    content: ' ▾';
    font-size: 10px;
  }*/

  /* Dropdown */
  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    border-top: 3px solid var(--primary);
    z-index: 200;
    border-radius: 0 0 6px 6px;
  }
  .nav-menu > li:hover .dropdown { display: block; }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s, color .2s;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
  }
  .dropdown a:hover { background: #fff5f4; color: var(--primary); }
  .dropdown .d-icon {
    width: 28px; height: 28px;
    background: var(--primary);
    border-radius:20px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 14px;
    flex-shrink: 0;
  }

  .nav-cta { display: flex; gap: 10px; align-items: center; }
  .btn-outline {
    padding: 8px 18px;
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .btn-outline:hover { background: var(--blue); color: white; }
  .btn-filled {
    padding: 8px 18px;
    background: var(--blue);
    color: white;
    border: 2px solid var(--blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .btn-filled:hover { background: #47aaeb; border-color: #47aaeb; }



  /*------meghamenu-----*/

  /* FULL WIDTH MEGA MENU */

.mega-parent{
    position:static !important;
}

.mega-parent::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:20px;
}

.mega-menu-style2{
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#fff;
    display:grid;
    grid-template-columns:repeat(8,1fr);
    border-top:3px solid #0d6efd;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s;
    z-index:999;
}

.mega-parent:hover .mega-menu-style2{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-item{
    text-decoration:none;
    color:#222;
    text-align:center;
    padding:15px 10px;
    border-right:1px solid #e7e7e7;
    border-bottom:1px solid #e7e7e7;
    transition:.3s;
    min-height:125px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.mega-item:hover{
    background:#f8fbff;
}

.mega-item img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin-bottom:12px;
}

.mega-item span{
    font-size:14px;
    line-height:1.4;
    font-weight:500;
}


.mega-item i{
    font-size:30px;
    color:#5c6b82;
    margin-bottom:12px;
}












.mega-parent{
    position:relative;
}

.mega-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-top: 3px solid #0d6efd;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.35s;
    z-index:999;
}

.mega-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mega-sidebar{
    width:260px;
    background:#f7f7f7;
}

.mega-sidebar ul{
    margin:0;
    padding:0;
    list-style:none;
}

.mega-sidebar li{
    padding:13px 18px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.mega-sidebar li.active{
    background:#eef4ff;
    color:#2563eb;
    border-left:4px solid #2563eb;
}

.mega-content{
    flex:1;
    padding:20px;
    max-height:80vh;
    overflow-y:hidden;
    overflow-x:hidden;
    scrollbar-width:thin;
    scrollbar-color:#4f8ef7 #f1f1f1;
}

/* Hover par hi Scroll Show */
.mega-content:hover{
    overflow-y:auto;
}

/* Chrome Scrollbar */
.mega-content::-webkit-scrollbar{
    width:8px;
}

.mega-content::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:10px;
}

.mega-content::-webkit-scrollbar-thumb{
    background:#4f8ef7;
    border-radius:10px;
}

.mega-content::-webkit-scrollbar-thumb:hover{
    background:#2563eb;
}



.tab-content{
    display:none;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
}

.tab-content.active{
    display:grid;
    animation:fadeIn .4s ease;
}

.menu-box{
    border:1px solid #e5e5e5;
    border-radius:12px;
    min-height:140px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:600;
    cursor:pointer;
  font-size: 13px;
    transition:.3s;
}

.menu-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}


.menu-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    min-height:120px;
    padding:10px;

    border:1px solid #e5e5e5;
    border-radius:12px;
    cursor:pointer;
    transition:.3s ease;
}

.menu-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.menu-icon{
    font-size:30px;
    color:#4f8ef7;
    margin-bottom:15px;
}

.menu-title{
    font-size:13px;
    font-weight:600;
    line-height:1.4;
    color:#333;
}


#solutionBtn{
    color:#222;
    transition:all .3s ease;
}

#solutionBtn.active{
    color:#4f8ef7;
}

#solutionBtn.active i{
    transform:rotate(180deg);
}

#solutionBtn i{
    transition:.3s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.mega-sidebar ul li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 15px;
    cursor:pointer;
    transition:.3s ease;
}

.submenu-arrow{
    font-size:14px;
    opacity:.6;
    transition:.3s ease;
}

.mega-sidebar ul li:hover .submenu-arrow,
.mega-sidebar ul li.active .submenu-arrow{
    color:#4f8ef7;
    opacity:1;
    transform:translateX(5px);
}

.mega-sidebar ul li.active{
    background:#eef4ff;
    color:#4f8ef7;
    border-left:4px solid #4f8ef7;
}


/*.tooltip-box{
    position:relative;
    overflow:visible !important;
}*/

.menu-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

.menu-title .fa-angle-right{
    margin-left:10px;
    font-size:14px;
}

.tooltip-menu{
    position:absolute;
    left:105%;
    top:0;

    min-width:240px;
    background:#fff;

    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateX(10px);
    transition:.25s ease;

    z-index:99999;
}

.tooltip-menu::before{
    content:"";
    position:absolute;
    left:-8px;
    top:20px;

    width:16px;
    height:16px;

    background:#fff;
    transform:rotate(45deg);
}

.tooltip-menu a{
    display:block;
    padding:10px 16px;

    color:#333;
    text-decoration:none;
    font-size:13px;

    border-bottom:1px solid #eee;
    transition:.3s;
    text-align: left;
}

.tooltip-menu a:last-child{
    border-bottom:none;
}

.tooltip-menu a:hover{
    background:#f5f8ff;
    color:#0d6efd;
}

.tooltip-box:hover .tooltip-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}


.submenu-arrow{
    opacity:0;
    transform:translateX(-5px);
    transition:.3s;
}

.mega-sidebar ul li:hover .submenu-arrow,
.mega-sidebar ul li.active .submenu-arrow{
    opacity:1;
    transform:translateX(5px);
}











/* =========================
   SOLUTIONS MEGA MENU
========================= */
nav,
.nav-inner{
    overflow:visible !important;
}

.solutions-dropdown{
     position:static !important;
}

.solutions-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:20px;
}
.solutions-panel{
    position:absolute;
    left:0;
    top:100%;

    width:100%;
    /*min-height:450px;*/

    background:#fff;
    display:none;

    z-index:9999;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.solutions-dropdown:hover .solutions-panel{
    display:flex;
}

/* LEFT SIDEBAR */

.solutions-sidebar{
   width:260px;
    min-width:260px;
    flex-shrink:0;

    background:#f8f9fb;
    border-right:1px solid #e5e7eb;
}

.solutions-sidebar ul{
    margin:0;
    padding:20px 0;
    list-style:none;
}

.solutions-sidebar li{
    padding:16px 25px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.solutions-sidebar li:hover,
.solutions-sidebar li.active{
    background:#eef4ff;
    color:#2563eb;
    border-left:4px solid #2563eb;
}

/* RIGHT GRID */

.solutions-grid{
    flex:1;
    padding:20px;

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px;
}

/* BOXES */

.solution-card{
    min-height:140px;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    text-decoration:none;
    color:#222;

    transition:.3s ease;
}

.solution-card i{
    font-size:32px;
    margin-bottom:15px;
    color:#64748b;
}

.solution-card span{
    font-size:12px;
    font-weight:600;
    line-height:1.5;
}

.solution-card:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
    box-shadow:0 12px 30px rgba(37,99,235,.15);
}

.solution-card:hover i{
    color:#2563eb;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .solutions-panel{
        position:static;
        width:100%;
        transform:none;
        display:block !important;
        box-shadow:none;
    }

    .solutions-sidebar{
        width:100%;
    }

    .solutions-grid{
        grid-template-columns:repeat(2,1fr);
        padding:20px;
    }
}

@media(max-width:576px){

    .solutions-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .solution-card{
        min-height:100px;
    }

    .solution-card i{
        font-size:24px;
    }
}





.solutions-sidebar li{
    padding:16px 20px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.solutions-sidebar li.active{
    background:#eef4ff;
    color:#0d6efd;
    border-left:4px solid #0d6efd;
}

.solution-content{
    display:none;
}

.solution-content.active{
    display:block;
}






  /* ── HERO banner ── */

.banner-hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
}

/* Slider Background */
.slider-wrap{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item{
    height:100vh;
}

.hero-slider .item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark Overlay */
.slider-wrap::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:2;
      pointer-events:none;
}

/* Hero Content */
.hero-content{
    position:relative;
    z-index:5;
}

/* Progress Bar */
.slider-progress{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:rgba(255,255,255,.15);
    z-index:99999;
    overflow:hidden;
}

.slider-progress span{
    display:block;
    width:0;
    height:100%;
    background:#4f8cff;
}

/* Navigation */
.hero-slider .owl-nav{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    z-index:9999;
    pointer-events:none;
}

.hero-slider .owl-prev,
.hero-slider .owl-next{
    position:absolute;
    width:55px;
    height:55px;
    border-radius:50% !important;
    border:1px solid rgba(255,255,255,.3) !important;
    background:rgba(255,255,255,.12) !important;
    backdrop-filter:blur(10px);
    color:#fff !important;
    font-size:26px !important;
    transition:.3s;
    pointer-events:auto;
    cursor:pointer;
}

.hero-slider .owl-prev{
    left:30px;
}

.hero-slider .owl-next{
    right:30px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover{
    background:#4f8cff !important;
}

/* Hide Dots */
.hero-slider .owl-dots{
    display:none;
}




















 /* .banner-hero{
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue);
    padding: 20px 0;
    background-attachment: fixed !important;
}


.banner-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,27,74,.85) 0%,
        rgba(7,27,74,.55) 40%,
        rgba(0,0,0,.25) 100%
    );}*/



  .hero {
    position: relative;
     min-height:100vh;
    height:100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
  }

  .slider-wrap,
.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .item{
    height:100vh;
}

.hero-slider .item img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-content{
    position:relative;
    z-index:5;
    width:min(1200px,90%);
    margin:auto;
}
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
  }
  .hero-accent {
    position: absolute;
    right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232,38,26,.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1300px;     margin: 0 130px; 
  }
  .hero-badge {
    display: inline-block;
   background: rgb(79 142 247 / 18%);
    border: 1px solid rgb(79 142 247);
    color: white;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(20px, 4vw, 44px);
    font-weight:700;
    color: var(--white);
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 16px;
  }
  .hero h1 span { color: var(--blue); }
  .hero p {
    font-size: 16px;
    color: white;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-btns .btn-filled { padding: 14px 32px; font-size: 14px; border-radius: 4px; }
  .hero-btns .btn-outline { padding: 14px 32px; font-size: 14px; border-radius: 4px; color: white; border-color: rgba(255,255,255,.4); }
  .hero-btns .btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; }

  .hero-info {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .hero-info-card {
       background: rgb(79 142 247 / 27%);
    border: 1px solid rgb(79 142 247);
    border-radius: 8px;
    padding: 16px 22px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    min-width: 240px;
    transition: border-color .2s;
  }
  .hero-info-card:hover {  border: 1px solid rgb(79 142 247);}
  .hero-info-card .hi-icon { color: var(--primary); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
  .hero-info-card .hi-text .label { font-size: 11px; color: white; text-transform: uppercase; letter-spacing: 1px; }
  .hero-info-card .hi-text p { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 4px; line-height: 1.4; }
  .hero-info-card .hi-text a { color: var(--white); text-decoration: none; font-weight: 600; }

  /* ── SECTION COMMON ── */
  section { padding: 60px 0; }
  .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
   }
  .section-title {
      font-size: clamp(24px, 3vw, 35px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-title .red { color: var(--blue); }
  .section-desc {
    font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom:20px;
  }
  .divider {
    width: 50px; height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 20px;
  }


    /* ─── MARQUEE ─── */
    .marquee-band { background: var(--blue); padding: 16px 0; overflow: hidden; }
    .marquee-track { display: flex; gap: 60px; animation: marquee 22s linear infinite; white-space: nowrap; }
    .marquee-track span { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; display: flex; align-items: center; gap: 10px; }
    .marquee-track span::before { content: '◆'; color: var(--pink); font-size: .6rem; }
    @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }



  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    align-items: center;
  }
  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-img-wrap img{ width:100%; height:300px; object-fit:contain; }
  .about-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
  }
  .about-img-wrap.tall { grid-row: span 2; }
  .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-img-placeholder {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 13px; gap: 8px;
  }
  .about-img-placeholder.tall { height: 412px; }
  .about-img-placeholder .icon { font-size: 36px; color: var(--primary); }
  .about-content .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px;
  }
  .stat-box {
    background: var(--light-gray);
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    text-align: center;
  }
  .stat-box .num {
    font-size: 28px; font-weight: 800; color: var(--primary);
  }
  .stat-box .lbl { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
  .about-btns { display: flex; gap: 14px; margin-top: 28px; }

  /* ── SERVICES ── */
  .services { background: var(--light-gray); }
  .services-header { text-align: center; margin-bottom: 50px; }
  .services-header .section-desc { margin: 0 auto 0; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(232,38,26,.15);
    border-color: var(--blue);
  }
  .service-card .sc-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(232,38,26,.1), rgba(232,38,26,.05));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--primary);
    transition: background .25s;
  }
  .service-card:hover .sc-icon { background: var(--blue); color: white; }
  .service-card .sc-title {
        font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
  }
  .service-card:hover .sc-title { color: var(--blue); }

  /* ── CTA BAND ── */
  .cta-btns i{font-size: 20px;}
  .cta-band {
   background: linear-gradient(135deg, #399de0 0%, #399ce1 100%);
    padding: 60px 0;
    text-align: center;
  }
  .cta-band h2 {
      font-size: 32px; font-weight: 800;
    color: white; margin-bottom: 12px;
  }
  .cta-band p { color: rgba(255,255,255,.85); font-size: 15px; margin-bottom: 28px; }
  .cta-band .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    padding: 14px 32px;
    background: white;
    color: var(--blue);
    border: 2px solid white;
    border-radius: 30px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    letter-spacing: .5px;
    text-transform: uppercase;
  }
  .btn-white:hover { background: transparent; color: white; }
  .btn-ghost {
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 30px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    letter-spacing: .5px;
    text-transform: uppercase;
  }
  .btn-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }

  /* ── SOLUTIONS ── */
  .solutions { background: var(--white); }
  .solutions-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
  }
  .sol-tabs { background: var(--dark); padding: 0; }
  .sol-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
  }
  .sol-tab:hover, .sol-tab.active {
    background: var(--blue);
    color: white;
  }
  .sol-tab .arrow { font-size: 10px; opacity: .5; }
  .sol-tab.active .arrow { opacity: 1; }

  .sol-panel { display: none; position: relative; overflow: hidden; }
  .sol-panel.active { display: block; }
  .sol-panel-img {
    width: 100%; height: 380px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; align-items: center; justify-content: center;
    font-size: 60px; color: rgba(255,255,255,.2);
  }
  .sol-panel-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, transparent 100%);
    padding: 30px;
  }
  .sol-panel-overlay h3 {
      font-size: 22px; font-weight: 800;
    color: white; margin-bottom: 8px;
  }
  .sol-panel-overlay p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
  .sol-panel-overlay a {
    color: var(--blue);
    font-weight: 700; font-size: 13px;
    text-decoration: none; text-transform: uppercase; letter-spacing: .5px;
  }
  .sol-panel-overlay a:hover { color: white; }
  .sol-slide img{width: 100%; height: 500px;}

  /* ── WHY CHOOSE ── */
  .why { background: var(--light-gray); }
  .why-grid { display: grid;   grid-template-columns: 450px 1fr; gap: 60px; align-items: center; }
  .why-img {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
    color: rgba(255,255,255,.4); font-size: 14px;
  }
  .why-img .icon { font-size: 64px; color: var(--blue); }
  .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
  .why-feature {
    background: var(--white);
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    display: flex; gap: 12px; align-items: flex-start;
  }
  .why-feature .wf-icon { color: var(--blue); font-size: 20px; flex-shrink: 0; }
  .why-feature .wf-title {  font-size: 13px; font-weight: 700; color: var(--dark); }
  .why-feature .wf-text { font-size: 12px; color: var(--gray); margin-top: 3px; line-height: 1.5; }

  /* ── PROJECTS ── */
  .projects { background: var(--white); }
  .projects-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .project-card {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
  }
  .project-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.15); }
  .pc-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; color: rgba(255,255,255,.25);
    position: relative; overflow: hidden;
  }
  .pc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(232,38,26,.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s;
    display: flex; align-items: flex-end; justify-content: flex-end; padding: 16px;
  }
  .project-card:hover .pc-overlay { opacity: 1; }
  .pc-overlay a { color: white; font-size: 12px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
  .pc-body { padding: 18px; background: white; }
  .pc-title {  font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .pc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
  .pc-tag {
    background: var(--light-gray);
    color: var(--gray);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
  }
  .pc-sector {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(232,38,26,.08);
    color: var(--blue);
    font-size: 11px; font-weight: 700;
    padding: 3px 10px; border-radius: 50px; margin-top: 10px;
  }

  /* ─── TEAM ─── */
  .team-fild {

    text-align: center;
    margin: 0 auto;
}


 .team-fild{textarea:center; margin-bottom: 0 auto;}
  .section-label { color:var(--blue); }
    #team {background: var(--light-gray);}
    .team-card { text-align: center; }
    .team-img { width: 110px; height: 110px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; overflow: hidden; border: 3px solid var(--border); transition: border-color .3s; }
    .team-card:hover .team-img { border-color: var(--blue); }
    .team-img i { font-size: 2.8rem; color: var(--blue); }
    .team-card h6 { font-weight: 600; color: var(--dark); margin-bottom: 3px; }
    .team-card span { font-size: .82rem; color: var(--muted); }

    /* ─── PARTNERS ─── */
    #partners { background: var(--light-bg); }
    .partner-item { background: var(--white); border-radius: 12px; padding: 22px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); transition: all .3s; min-height: 90px; }
    .partner-item:hover { box-shadow: var(--shadow); border-color: var(--primary); }
    .partner-item span { font-weight: 700; color: var(--muted); font-size: .95rem; text-align: center; transition: color .3s; }
    .partner-item:hover span { color: var(--primary); }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--white); }
    .testimonial-card { background: var(--light-gray); border-radius: 10px; padding: 30px; border: 1px solid var(--border); position: relative; height: 100%; }
    .testimonial-card::before { content: '\201C'; font-size: 5rem; color: var(--primary); opacity: .12; position: absolute; top: 10px; left: 20px; font-family: Georgia; line-height: 1; }
    .testimonial-card .stars { color: var(--accent); margin-bottom: 14px; }
    .testimonial-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px;  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.8; min-height: 80px;}
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; }
    .t-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
    .t-role { font-size: .78rem; color: var(--muted); }

  /* ── CONTACT ── */
  .contact-section { background: var(--dark); padding: 80px 0; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-info .section-title { color: white; }
  .contact-info .section-desc { color: rgba(255,255,255,.65); }
  .contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
  .contact-item {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(232,38,26,.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px;
  }
  .ci-text .lbl { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; }
  .ci-text p, .ci-text a { font-size: 14px; color: rgba(255,255,255,.8); text-decoration: none; margin-top: 4px; display: block; }
  .ci-text a:hover { color: var(--primary); }

  .contact-form { background: var(--white); border-radius: 10px; padding: 36px; }
  .contact-form h3 {  font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--gray); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s;
    background: white;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--primary); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background .2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--primary-dark); }

  /* ── FOOTER ── */
  .ftr-logo img{width:200px;}
  footer { background: #111; padding: 60px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand .logo-text .brand { color: white; }
  .footer-brand p { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 14px; line-height: 1.7; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 14px;
    text-decoration: none; transition: all .2s;
  }
  .social-icon:hover { background: var(--blue); color: white; }
  .footer-col h4 {

    font-size: 13px; font-weight: 700;
    color: white; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
  }
  .footer-col ul { list-style: none; padding-left: 0;}
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,.5);
    text-decoration: none; font-size: 13px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--blue); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom p { color: rgba(255,255,255,.4); font-size: 12px; }
  .footer-bottom a { color: var(--blue); text-decoration: none; }

  /* ── FLOATING BTNS ── */
  .floating-btns {
    position: fixed;
    right: 20px; bottom: 30px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 999;
  }
  .float-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,.3);
    text-decoration: none; transition: transform .2s;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-call { background: #25d366; }
  .float-enquire { background: var(--primary); }


   /* ─── BACK TO TOP ─── */
   
.scrollup {
    position: fixed;
    right: 10px;
    bottom: 10px;
    border: 1px solid transparent;
    background: var(--blue);
    width: 35px;
    height: 35px;
    color: white;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    transition: var(--transition);
}
.scrollup:hover {
    background: var(--blue);
}


/* -------------------- PAGE HERO (interior pages) -------------------- */
.innerpage_container .container {
    max-width: 1200px;
}
.page-hero {
  position: relative;
  /*padding: calc(var(--header-h) + 5rem) 0 4.5rem;*/
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
  padding: 30px 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.page-hero::after {
  content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(211,47,47,0.28), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: #8C97AC; margin-bottom: 1.4rem; font-family: var(--font-mono); }
.breadcrumb a:hover { color: var(--color-primary-light); }
.breadcrumb i { font-size: 0.65rem; }
.page-hero h2 { color: #fff; max-width: 700px; font-size:25px, }
.page-hero p.lead { color: #B3BCD1; max-width: 600px; margin-top: 1rem; font-size: 1.08rem; }




/*---------mission-vision------------------*/

.mission-vision{
   padding: 60px 0;
    background:
    radial-gradient(circle at top left,#17315e 0%,transparent 40%),
    radial-gradient(circle at bottom right,#008cff33 0%,transparent 35%),
    #09111f;
    overflow:hidden;
}



/* TITLE */

.iner-title{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:40px;
}

.iner-title span:first-child{
    display:inline-block;
    color: var(--blue);
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:18px;
}

.iner-title h2{
    color:#fff;
    font-size: clamp(24px, 3vw, 35px);
    font-weight:700;
    margin-bottom: 0;
 
}

.andt{
     color:#fff !important;
    font-size:52px !important;
    font-weight:700;
}

.iner-title h2 span{
    color:#4ecbff;

}

.iner-title p{
    color:#c8d4e4;
    line-height:1.7;
    font-size:15px;
}

/* GRID */

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/* CARD */

.mv-card{

    position:relative;

    padding:45px;

    border-radius:28px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s ease;

    overflow:hidden;
}

.mv-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:#25b8ff20;

    border-radius:50%;

    top:-120px;

    right:-80px;

    transition:.5s;

}

.mv-card:hover{

    transform:translateY(-10px);

    border-color:#39c5ff;

    box-shadow:0 25px 60px rgba(0,180,255,.18);

}

.mv-card:hover::before{

    transform:scale(1.5);

}

/* ICON */

.icon{

    width:78px;

    height:78px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#00c6ff,#0072ff);

    color:#fff;

    font-size:30px;

    margin-bottom:28px;

    box-shadow:0 15px 35px rgba(0,140,255,.35);

}

.mv-card h3{

    color:#fff;

    font-size:30px;

    margin-bottom:18px;

}

.mv-card p{

    color:#90accd;

    line-height:1.9;

    font-size:16px;

}




/* -------------------- ABOUT -------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-media { position: relative; }
.about-media-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media-tag {
  position: absolute; bottom: -1.6rem; left: -1.6rem;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 1.3rem 1.6rem; display: flex; align-items: center; gap: 1rem;
  border-left: 4px solid var(--color-primary);
}
.about-media-tag .ico { width: 46px; height: 46px; background: var(--color-bg-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 1.2rem; flex-shrink: 0; }
.about-media-tag .num { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--color-secondary); line-height: 1; }
.about-media-tag .txt { font-size: 0.78rem; color: var(--color-text-muted); }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 2rem 0; }
.about-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.about-feature i { color: var(--color-primary); font-size: 1.1rem; margin-top: 0.2rem; }
.about-feature h5 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.85rem; }

.mv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1.5rem; }
.mv-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; transition: all var(--t-base) var(--ease); }
.mv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.mv-card .ico { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--grad-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.mv-card h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.mv-card p { font-size: 0.92rem; }



/*==============================
CONTACT PAGE
==============================*/

.jc-contact-wrapper{
    max-width:1400px;
    margin:auto;
    padding:40px 20px 80px;
 
}

/* Banner */

.jc-contact-banner{
    background:linear-gradient(135deg,#071d7b,#0b64ff);
    border-radius:16px;
    padding:45px 50px;
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
}

.jc-contact-banner::before{
    content:'';
    position:absolute;
    right:-100px;
    top:-80px;
    width:450px;
    height:450px;
    background:radial-gradient(circle,
    rgba(0,255,255,.25),
    transparent 70%);
}

.jc-banner-content h1{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin:0;
}

.jc-banner-content span{
    width:70px;
    height:4px;
    background:#7dff3f;
    display:block;
    margin-top:15px;
}

/* Intro */

.jc-contact-intro{
    margin-bottom:40px;
}

.jc-contact-intro p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
    font-weight: 600;
}



/* Tabs */

.jc-contact-tabs{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:40px;
}

.jc-tab-btn{
    flex:1;
    padding:10px;
    border:none;
    background:#fff;
    font-size:15px;
    font-weight:600;
    color:#222;
    cursor:pointer;
    transition:.3s;
    position:relative;
}

.jc-tab-btn:not(:last-child){
    border-right:1px solid #ececec;
}

.jc-tab-btn:hover{
    background:#f8faff;
}

.jc-tab-btn.active{
    color:#0057ff;
}

.jc-tab-btn.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#0057ff;
}

/* Tab Content */

.jc-tab-content{
    display:none;
    animation:fadeTab .4s ease;
}

.jc-tab-content.active{
    display:block;
}

@keyframes fadeTab{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Section */

.jc-section-title{
    margin-bottom:30px;
}

.jc-section-title h2{
    font-size:25px;
    margin-bottom:10px;
        color: var(--dark);
}

.jc-section-title p{
    color:#666;
}

/* Cards */

.jc-support-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:60px;
}

.jc-support-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    text-align: center;
}

.jc-support-card::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#005cff,#5ee72f);
}

.jc-support-card:hover{
    transform:translateY(-8px);
}

.jc-icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eef3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    margin: 10px auto;
}

.jc-icon-box i{
    font-size:28px;
    color:#0b57ff;
}

.jc-support-card h3{
    margin-bottom:8px;
    font-size:18px;
    font-weight:600;
}

.jc-support-card p{
    color:#666;
    margin-bottom:10px;
    font-size: 13px;
    line-height: 18px;
}

.jc-support-card a{
    color:#0b57ff;
    text-decoration:none;
    font-weight:600;
}

/* Form */

.jc-contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    width: 100%;
    margin: 0 auto;
    max-width: 700px;
}

.jc-form-header h2{
     font-size: clamp(24px, 3vw, 35px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 5px;
}

.jc-form-header p{
    color:#555;
}

.jc-line{
    height:4px;
    background:linear-gradient(90deg,#004cff,#63d934);
    border-radius:10px;
    margin:12px 0 35px;
}

.jc-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.jc-field label{
    display:block;
    margin-bottom:5px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}

.jc-field input,
.jc-field select{
    width:100%;
    height:45px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    transition:.3s;
}

.jc-field input:focus,
.jc-field select:focus,
.jc-textarea textarea:focus{
    outline:none;
    border-color:#0b57ff;
}

.jc-textarea{
    margin-top:25px;
}

.jc-textarea label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.jc-textarea textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:15px;
    resize:none;
}

.jc-checkbox{
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size: 12px;
}

.jc-submit-btn{
    margin-top:20px;
    border:none;
    background:linear-gradient(135deg,#004cff,#0b57ff);
    color:#fff;
    padding:8px 20px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.jc-submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,92,255,.35);
}


/*------------services details--------*/

.service-detail-body{
    padding:60px 0;
    background:
    radial-gradient(circle at top right,
    rgba(37,99,235,.05),
    transparent 40%),
    #f8fafc;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.service-detail-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.service-detail-content{
    background:#fff;
    padding:50px;
    border-radius:30px;
    border:1px solid #eef2f7;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.service-subtitle{
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    position:relative;
    display:inline-block;
    margin-bottom:20px;
}

.service-subtitle:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:60px;
    height:3px;
    background:#2563eb;
    border-radius:10px;
}


.service-detail-content p{
   font-size: 15px;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 20px;
	text-align: justify;
    text-justify: inter-word;
}

.service-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
    margin-bottom:40px;
}

.benefit-box{
    background:#f8fafc;
    border:1px solid #edf2f7;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.benefit-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(37,99,235,.12);
}

.benefit-box i{
    font-size:42px;
    color:#2563eb;
    margin-bottom:15px;
}

.benefit-box h4{
    margin-bottom:10px;
}

.service-info-box{
    background:#f8fafc;
    border-radius:20px;
    padding:35px;
}

.service-info-box h3{
    margin-bottom:25px;
}

.service-list{
    list-style:none;
}

.service-list li{
    padding:14px 0 14px 28px;
    position:relative;
    border-bottom:1px solid #e5e7eb;
}

.service-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2563eb;
    font-weight:700;
}

.service-sidebar{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.sidebar-box{
    background:#fff;
    padding:35px 25px;
    border-radius:30px;
    border:1px solid #eef2f7;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.sidebar-box h3{
    font-size:18px;
    margin-bottom:25px;
    text-transform: uppercase;
    font-weight: 600;
}

.sidebar-box ul{
    list-style:none;
    padding: 0;
}

.sidebar-box li{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 0;
    border-bottom:1px solid #edf2f7;
    font-size: 14px;
    font-weight: 500;
}

.sidebar-box i{
    color:#2563eb;
}

.cta-box{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    padding:20px;
    border-radius:30px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.cta-box h4{
    font-size:24px;
    margin-bottom:15px;
    line-height: 30px;
}

.cta-box p{
    line-height:1.3;
    margin-bottom:20px;
    font-size: 15px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#2563eb;
    text-decoration:none;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
    position:relative;
    overflow:hidden;
    font-size: 16px;
}

.cta-btn:before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.05);
    transition:.6s;
}

.cta-btn:hover:before{
    left:100%;
}

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}


.service-feature-list{
    list-style:none;
    margin:0;
    padding:0;
}

.service-feature-list li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    margin-bottom:10px;
    border-radius:12px;
    background:#fff;
    border:1px solid #eef2f7;
    transition:all .35s ease;
    cursor:pointer;
}

.service-feature-list li i{
    color:#2563eb;
    transition:.35s;
}

.service-feature-list li:hover{
    background:#2563eb;
    color:#fff;
    transform:translateX(8px);
    box-shadow:0 12px 25px rgba(37,99,235,.18);
}

.service-feature-list li:hover i{
    color:#fff;
    transform:translateX(5px);
}




