.elementor-3332 .elementor-element.elementor-element-d3ebeb2{--display:flex;}.elementor-3332 .elementor-element.elementor-element-7f11fe3{--display:flex;}.elementor-3332 .elementor-element.elementor-element-7f11fe3:not(.elementor-motion-effects-element-type-background), .elementor-3332 .elementor-element.elementor-element-7f11fe3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6F7F8;}.elementor-3332 .elementor-element.elementor-element-ef36799{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );text-transform:var( --e-global-typography-primary-text-transform );font-style:var( --e-global-typography-primary-font-style );text-decoration:var( --e-global-typography-primary-text-decoration );color:var( --e-global-color-primary );}.elementor-3332 .elementor-element.elementor-element-ff47aea{--display:flex;}.elementor-3332 .elementor-element.elementor-element-ff47aea:not(.elementor-motion-effects-element-type-background), .elementor-3332 .elementor-element.elementor-element-ff47aea > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F6F7F8;}:root{--page-title-display:none;}@media(max-width:1366px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}@media(max-width:879px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );}}/* Start custom CSS for html, class: .elementor-element-3447442 *//* ===== RESET ===== */
.mobile-bottom-nav{display:none;}
.mobile-menu{display:none;}

/* HEADER */
.main-header{
display:flex;
align-items:center;
justify-content:space-between;
background:#f5f6f7;
border-bottom: 1px solid #061f48;
height:60px;
position:relative;
bottom:30px ;
}

/* LOGO */
.logo-box{ background:#061f48; padding:20px 60px 20px 40px; clip-path:polygon(0 0, 100% 0, 90% 100%, 0% 100%); display:flex; align-items:center; height: 80px; } .logo-box img{ width:200px ; }

/* NAV */
.nav-links{display:flex;gap:40px;font-size:18px; font-weight:bold;}
.nav-links a{color:#0b2545;text-decoration:none}

/* SOCIAL */
.social-box{ background:#DDF146; padding:22px 70px 22px 90px; clip-path:polygon(10% 0, 100% 0, 100% 100%, 0% 100%); display:flex; gap:26px; align-items:center; justify-content:center; } /* ICON SIZE FIX */ .social-box i{ font-size:22px; /* icon size */ color:#0b2545; display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:8px; transition:.3s; } /* HOVER */ .social-box i:hover{ transform:translateY(-3px); }

/* ACTIVE NAV LINK (DESKTOP) */
.nav-links a.active{
    color:#061f48;
    font-weight:700;
    
}

/* UNDERLINE ALWAYS VISIBLE */
.nav-links a.active::after{
    width:100%;
}

/* OPTIONAL: background highlight 🔥 */
.nav-links a.active{
    background:#DDF146;
    padding:6px 12px;
    border-radius:8px;
}

.nav-links a.active::after{
    width:100%;
    animation:lineSlide 0.4s ease;
}

@keyframes lineSlide{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}


/* ================= MOBILE ================= */
@media(max-width:900px){

.nav-links,.social-box{
display:none;
}

.mobile-menu{
display:block;
font-size:26px;
cursor:pointer;
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
color:#0b2545;
}

.logo-box{
height:60px;
padding:15px 40px 15px 20px;
}

.logo-box img{
width:140px;
}

/* Bottom Nav */
.mobile-bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#f3f4f6;
display:flex;
justify-content:space-around;
align-items:center;
padding:12px 0;
border-top:1px solid #061f48;
z-index:999;
}

/* icon + text same line */
.mobile-bottom-nav a{
text-decoration:none;
color:#061f48;
font-size:14px;
display:flex;
align-items:center;   /* 🔥 same line */
gap:8px;              /* space between icon & text */
position:relative;
font-weight:500;
}

/* icon size */
.mobile-bottom-nav i{
position: relative;
        font-size: 30px;
        right: -15px;
    color:#061f48;
}

/* REMOVE OLD HIGHLIGHT */
.mobile-bottom-nav a.active::before{
display:none;
}

/* ACTIVE STATE = FILLED ICON + COLOR */
.mobile-bottom-nav a.active{
color:#061f48;
}

.mobile-bottom-nav a.active i{
color:#ddf146;  /* fill color */
}
/* Drawer */
.mobile-drawer{ 
    position:fixed; 
top:0; 
left:-100%; 
width:160px;
height:100%;
background:linear-gradient(#f3f4f6,#fff); transition:.4s;
z-index:9999;
border-radius:0 20px 20px 0; }

.mobile-drawer.active{left:0} .drawer-inner{ padding:60px 25px; display:flex; flex-direction:column; gap:25px; } .drawer-inner a{ font-size:22px; text-decoration:none; color:#0b2545; } .drawer-social{ position:absolute; bottom:30px; left:25px; display:flex; gap:15px; } body{padding-bottom:80px;} }

.mobile-drawer{
display:none;
}

@media(max-width:900px){
.mobile-drawer{
display:block;
}
}



/* ===== ANIMATIONS STRAT ===== */

/* HEADER FADE DOWN */
.main-header{
animation:headerFade 0.8s ease forwards;
opacity:0;
transform:translateY(-20px);
}

@keyframes headerFade{
to{
opacity:1;
transform:translateY(0);
}
}


.logo-box{
animation:logoSlide 1s ease forwards;
transform:translateX(-40px);
opacity:0;
}

@keyframes logoSlide{
to{
transform:translateX(0);
opacity:1;
}
}


.nav-links a{
opacity:0;
transform:translateY(20px);
animation:navFade 0.6s ease forwards;
}

.nav-links a:nth-child(1){ animation-delay:.2s; }
.nav-links a:nth-child(2){ animation-delay:.3s; }
.nav-links a:nth-child(3){ animation-delay:.4s; }
.nav-links a:nth-child(4){ animation-delay:.5s; }
.nav-links a:nth-child(5){ animation-delay:.6s; }

@keyframes navFade{
to{
opacity:1;
transform:translateY(0);
}
}



.nav-links a{
position:relative;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#061f48;
transition:.4s;
}

.nav-links a:hover::after{
width:100%;
}


.social-box{
animation:socialSlide 1s ease forwards;
transform:translateX(60px);
opacity:0;
}

@keyframes socialSlide{
to{
transform:translateX(0);
opacity:1;
}
}


.social-box i:hover{
transform:translateY(-4px) scale(1.1);
}



.mobile-bottom-nav{
animation:bottomSlide .6s ease forwards;
transform:translateY(100%);
}

@keyframes bottomSlide{
to{
transform:translateY(0);
}
}


.mobile-bottom-nav a.active i{
animation:none !important;
transform:none !important;
}

@keyframes pulse{
0%{ transform:scale(1); }
50%{ transform:scale(1.15); }
100%{ transform:scale(1); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6e373da */body{

font-family:inter;
overflow-x:hidden;
background:#fff;
}


.hero-section {
  background: radial-gradient(circle at center, #f5f6f7, #f7f8f9);
  color: #fff;
  text-align: center;
  padding: 50px 0px;
  font-family: 'Poppins', sans-serif;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero-section h1 {
  font-size: 67px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section h1 span {
  color: #ddf146;
}

.hero-section p {
  margin: 20px 0;
  color: #061f48;
  font-size: 16px;
}

.highlight-hero-section {
background:#061F48;
padding:1px 28px;
border-radius:10px;
display:inline-block;
}
.hero-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #061f48;
  color: #ddf146;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ddf146;
  color:#061f48;
}

.trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.trusted span {
  width: 60px;
  height: 1px;
  background: #061f48;
}

.trusted p {
  font-size: 12px;
  color: #061f48;
  letter-spacing: 1px;
}

.brands {
  margin-top: 20px;
  background: #dde0e5;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
  color: #aaa;
  font-size: 14px;
}



.brands img {
  height: 30px;
  filter: grayscale(100%);
  opacity: 0.7;
}

.brands img:hover {
  filter: grayscale(0%);
  opacity: 1;
}




/* animatios */



.hero-content h1 {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.hero-content p {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-btn {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.trusted {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* Mobile Responsive */




/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .hero-section {
    padding: 50px 20px;
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-section p {
    font-size: 15px;
  }

  .brands-track {
    gap: 25px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .hero-section {
    padding: 0px 15px;
  }

  .hero-section h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .highlight-hero-section {
    padding: 4px 16px;
    border-radius: 8px;
  }

  .hero-section p {
    font-size: 14px;
    padding: 0 10px;
       line-height: 1.3;
  }

  .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

  .trusted {
    flex-direction: column;
    gap: 5px;
  }

  .trusted span {
    width: 40px;
  }

  .trusted p {
    font-size: 11px;
    text-align: center;
  }

  .brands {
    padding: 12px;
  }

  .brands-track {
    gap: 20px;
    animation: scroll 15s linear infinite; /* faster on mobile */
  }

  .brands img {
    height: 22px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 24px;
  }

  .hero-section p {
    font-size: 12px;
  }

  .hero-btn {
    width: 100%;
    max-width: 220px;
  }
}



.hero-section h1 br {
  display: none;
}






@media (max-width: 767px) {
  .trusted {
    flex-direction: row; /* 👈 IMPORTANT */
    gap: 8px;
  }

  .trusted span {
    width: 40px;
  }

  .trusted p {
    font-size: 10px;
    
  }
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-64382c5 */.service-title{
    position: relative;
font-size:64px;
font-weight:800;
font-style:italic;
letter-spacing:1px;
margin:0 auto;
line-height:1.1;
color:#fff;
text-align:center;
display:block;
top: 20px;
}


/* SERVICE Highlight Box */
.highlight{
background:#DDF146;
color:#0b2545;
padding:8px 18px;
border-radius:12px;
font-weight:800;
display:inline-block;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef3d851 */.my-services{
    display: flex;
    justify-content: center;
   
}







.services-wrapper{
    background: radial-gradient(circle at center, #f5f6f7, #f7f8f9);;
width:100%;
}

/* HEADER */
.services-header{
display:flex;
justify-content: center;
align-items:center;
padding-bottom:20px;
margin-bottom:50px;
color: #fff;
}



.services-header p{
max-width:400px;
font-size:14px;
color:#aaa;
font-family: inter;
}

/* CARDS */
.services-cards{
display:block;
grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
column-gap:30px;
row-gap:100px;
justify-items:center;
}

.service-card{
width:310px;
flex:none;
max-width:380px;
margin:auto;
border-radius:28px;
position:relative;
overflow:visible;
transition:0.4s ease;
}

/* HALF BACKGROUND EFFECT */
.service-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:200px;   /* 👈 exact control */
background:#dde0e5;
border-radius:28px 28px 20px 20px;
z-index:0;
}

.service-card h3{
position:relative;
z-index:2;
padding:25px;
margin:0;
border-bottom:1px solid #fff;
font-family:inter;
color:#0a2a66;
font-weight: 800;
}

/* STACKED MOCKUPS */
.mockup-stack{
position:relative;
height:220px;
margin-top:20px;
}
.mockup{
    width:100%;
left:0;
transform:none;
position:absolute;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.5);
transition:0.4s;
}

.mockup.back{
bottom: 20px;
    opacity: 0.2;
    border-radius: 30px;
    padding: 15px;
}

.mockup.middle{
top: 5px;
    opacity: 0.4;
    border-radius: 20px;
    padding: 8px;
}

.mockup.front{
top:30px;
border-radius: 20px;
}

/* CIRCLE BUTTON */
.circle-arrow{
position:absolute;
right:-10px;
bottom:-25px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:5;
}

.circle-arrow svg{
width:100%;
height:100%;
}

.service-card:hover .arrow-bg{
fill:#ddf146;
}

.service-card.active .arrow-bg{
fill:#ddf146;
}

.service-card.active .arrow-icon{
fill:#1c274c;
}

.arrow-bg{
fill:#8e93a6;
transition:0.3s;
}

.arrow-icon{
fill:#1c274c;
transition:0.3s;
}

/* HOVER EFFECT */
.service-card:hover{
transform:translateY(-8px);
}



/* ACTIVE CARD */

.service-card.active{
background:#ddf146;
}

.service-card.active::before{
background:rgba(255,255,255,0.15);
}




 /*ANIMATIONS */

/* Initial hidden state */
.service-card{
opacity:0;
transform:translateY(40px);
animation:cardFade 0.8s ease forwards;
}

/* Delay each card */
.service-card:nth-child(1){ animation-delay:0.1s; }
.service-card:nth-child(2){ animation-delay:0.3s; }
.service-card:nth-child(3){ animation-delay:0.5s; }

@keyframes cardFade{
to{
opacity:1;
transform:translateY(0);
}
}


.circle-arrow{
transition:transform 0.3s ease;
}

.service-card:hover .circle-arrow{
transform:translateY(-6px) rotate(8deg);
}


.service-card{
transition:all .45s cubic-bezier(.34,1.56,.64,1);
}

.service-card.active{
background:#ddf146;
transform:translateY(-12px) scale(1.05);
box-shadow:0 20px 50px rgba(0,0,0,0.25);
}


.mockup{
transition:all .6s cubic-bezier(.34,1.56,.64,1);
}

/* ACTIVE SPREAD */

.service-card.active .mockup.back{
transform:translateY(-40px) scale(.96);
opacity:.35;
}

.service-card.active .mockup.middle{
transform:translateY(-20px) scale(.96);
opacity:.6;
}

.service-card.active .mockup.front{
transform:translateY(0) scale(1);
}




.circle-arrow{
transition:all .35s ease;
}

.service-card:hover .circle-arrow{
transform:translateY(-6px) rotate(8deg);
}

.service-card.active .circle-arrow{
transform:translateY(-10px) rotate(45deg);
}



.service-card.active{
box-shadow:
0 20px 50px rgba(0,0,0,0.25),
0 0 0 4px rgba(221,241,70,0.25);
}


@keyframes cardFade{
0%{
opacity:0;
transform:translateY(60px) scale(.9);
}

100%{
opacity:1;
transform:translateY(0) scale(1);
}
}



.services-cards{
  
  display: block; /* REMOVE grid */
}

.slider-track{
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.service-card{
  min-width: 310px;
}



.slider-btn{
  position: relative;
  top: 60%;
  transform: translateY(-50%);
  background: #ddf146;
  width: 45px;
  height: 50px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 25px;
  z-index: 10;
}



.service-card{
  margin-bottom: 80px;
}


.slider-track{
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  width: max-content; /* 👈 IMPORTANT */
}






@media(max-width:768px){

.team-slider{
padding:0 30px;
}

.slider-track{
gap:80px;
}

.service-card{
width:175px;
margin-top:0px;
left: 190px;
}


.slider-btn{
  position: relative;
  top: 50px;
  transform: translateY(-50%);
}

.prev{ left: 0px; }
.next{ right: 0px; }


}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-901a5f3 */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.design-section {
  background: radial-gradient(circle at center, #f5f6f7, #f7f8f9);
  color: #061f48;
  padding: 100px 20px;
}

.container {
  position: relative;
    bottom: 50px;
}

/* Top Section */
.top-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.left {
  max-width: 500px;
}

.tag {
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.left h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.right {
  max-width: 450px;
}

.right p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: #dde0e5;
  color: #061f48;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Steps */
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  position: relative;
  gap: 20px;
}

/* Desktop Half Lines */
.steps::before,
.steps::after {
  content: "";
  position: absolute;
  top: 30px;
  height: 2px;
  background: #061f48;
  z-index: 0;
}

.steps::before {
  left: 16%;
  width: 28%;
}

.steps::after {
  right: 17%;
  width: 28%;
}

.step {
  text-align: center;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.icon {
  background: #dde0e5;
  color: #061f48;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: auto;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .top-content {
    flex-direction: column;
  }

  .left h1 {
    font-size: 34px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  /* Remove desktop lines */
  .steps::before,
  .steps::after {
    content: none;
  }

  /* Add vertical line */
  .steps::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #061f48;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }

  .step {
    max-width: 100%;
  }

}




@media(max-width:768px){

  .top-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .left {
    max-width: 100%;
  }

  .right {
    max-width: 100%;
  }

  .tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .left h1 {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .right p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

}




















/* ===== ANIMATIONS ===== */

/* Fade Up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale Pop */
@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Apply Animations */
.left h1 {
  animation: fadeUp 1s ease forwards;
}

.right p {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.btn {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* Steps Animation */
.step {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.3s; }
.step:nth-child(2) { animation-delay: 0.6s; }
.step:nth-child(3) { animation-delay: 0.9s; }

/* Icon Pop Effect */
.icon {
  animation: pop 0.6s ease forwards;
}

/* Hover Effects */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6,31,72,0.2);
  transition: 0.3s;
}

.icon:hover {
  transform: scale(1.1);
  transition: 0.3s;
}/* End custom CSS */