
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

.portfolio-section {
    padding: 10px 3% 60px 3%;
    /*background: #f8f9fb;*/
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover Effect */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media(max-width: 992px){
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px){
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 320px;   /* preview height */
}

/* THUMB IMAGE */
.portfolio-thumb{
    position:absolute;
    inset:0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    transition: background-position 10s linear;
}

/* 🔥 HOVER SCROLL EFFECT */
.portfolio-item:hover .portfolio-thumb{
    background-position: bottom;
}

/* Overlay same rahega */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: 0.4s;
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
}
/* Colors from your logo theme */
:root{
    --primary:#00c6ff;
    --secondary:#0072ff;
    --dark:#0a0f2c;
}

/* Navbar */
.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 4%;
    background:rgb(255 255 255);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    color:#fff;
    font-size:22px;
    font-weight:600;
}

.logo img{
height: 60px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#000;
    text-decoration:none;
    font-size:16px;
}

.nav-btn{
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    padding:10px 22px;
    border-radius:25px;
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

/* Hamburger */
.menu-toggle{
    display:none;
    font-size:26px;
    color:#000;
    cursor:pointer;
}

/* Hero Section */
.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

/* Video Background */
.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%, -50%);
    object-fit:cover;
    z-index:0;
}

/* Dark overlay for text visibility */
.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    top:0;
    left:0;
    z-index:1;
}

/* Keep text above video */
.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-buttons a{
    margin:10px;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    display:inline-block;
}

/* Mobile Menu (like image 3) */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100%;
    background:var(--dark);
    padding:30px;
    transition:0.4s;
    z-index:2000;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu h3{
    color:#fff;
    margin-bottom:20px;
}

.mobile-menu a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.mobile-contact{
    margin-top:30px;
    color:#fff;
    font-size:14px;
}

.close-menu{
    color:#fff;
    font-size:22px;
    position:absolute;
    right:20px;
    top:15px;
    cursor:pointer;
}

/* Stats Section */
.stats-section{
    /*background:#f5f7fb;*/
    padding:80px 60px;
    text-align:center;
}

.stats-section h2{
    font-size:32px;
    margin-bottom:50px;
    color:#0a0f2c;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin:auto;
}

.stat-card{
    padding:35px 20px;
    border-radius:60px;
    color:#0a0f2c;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.stat-card h3{
    font-size:42px;
    margin-bottom:10px;
}

.stat-card p{
    font-size:16px;
    color:#555;
}
.brand-section {
    padding: 60px 0;
    /*background: #f8f9fc;*/
    text-align: center;
}

.brand-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

.brand-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 25s linear infinite;
}

.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/* Services Section */
.services-section{
    padding:50px 3%;
    /*background:#f5f7fb;*/
}

.section-title{
    text-align:center;
    font-size:32px;
    margin-bottom:50px;
    color:#0a0f2c;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:auto;
}

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}
.footer {
  background: #0f1b2d;
  color: #cfd6e4;
  font-family: Arial, sans-serif;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(90deg, #1e63ff, #144adf);
  padding: 40px 60px;
  border-radius: 20px;
  margin: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}

.newsletter h2 {
  font-size: 28px;
}

.newsletter p {
  opacity: 0.9;
  margin-top: 5px;
}

.newsletter-right h3 {
  margin-bottom: 15px;
}

.subscribe-box {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  width: 250px;
  outline: none;
}

.subscribe-box button {
  background: #081b2e;
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-col ul li:hover {
  color: #1e63ff;
}

.social-icons span {
  display: inline-block;
  margin-right: 10px;
  background: #1a2942;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1f2c45;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cfd6e4;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #1e63ff;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(1, 1fr); /* 2 columns in 1 row */
  }
}

@media (max-width: 576px) {
  .newsletter {
    padding: 30px;
  }

  .footer-content {
    grid-template-columns: repeat(1, 1fr); /* 2 columns per row in mobile */
    gap: 25px;
    padding: 40px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .subscribe-box input {
    width: 160px;
  }
}
/* Gradient border effect */
.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#00c6ff,#0072ff);
}

.service-card:hover{
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.icon{
    font-size:40px;
    margin-bottom:15px;
}

.service-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#0a0f2c;
}

.service-card p{
    font-size:15px;
    color:#666;
}

/* Responsive */
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:26px;
    }
}

.brand {
    width: 200px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand img {
    max-width: 120px;
    transition: 0.3s;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .services-section {
    padding: 0px 20px 60px 20px;
}
    .portfolio-section {
    padding: 0px 20px 60px 20px;
    background: #f8f9fb;
    text-align: center;
}
    .hero {
    height: 65vh;
}
    .brand {
        width: 140px;
    }

    .brand img {
        max-width: 90px;
    }
}
/* Gradients */
.pink{
    background:linear-gradient(90deg,#fbc2eb,#f5f7fa);
}

.peach{
    background:linear-gradient(90deg,#fdd1a0,#f5f7fa);
}

.green{
    background:linear-gradient(90deg,#b8e6c9,#f5f7fa);
}

.blue{
    background:linear-gradient(90deg,#b4c6ff,#f5f7fa);
}

/* Hover Effect */
.stat-card:hover{
    transform:translateY(-6px);
}

/* Responsive */
@media(max-width:992px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-section h2{
        font-size:24px;
    }

    .stat-card h3{
        font-size:32px;
    }
}
/* Responsive */
@media(max-width:992px){
    .nav-links,
    .nav-btn{
        display:none;
    }
    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:32px;
    }
}

/* SECTION */
.agency{
  padding:20px 3%;
  background:var(--bg);
  font-family:'Segoe UI',sans-serif;
}

.agency-container{
  /*max-width:1390px;*/
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* IMAGE */
.agency-img{
  flex:1;
}

.agency-img img{
  width:100%;
  max-width:520px;
}

/* CONTENT */
.agency-content{
  flex:1;
}

.agency-tag{
  color:var(--accent);
  font-weight:600;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:12px;
}

.agency-content h2{
  font-size:32px;
  line-height:1.3;
  margin-bottom:18px;
  color:var(--dark);
}

.agency-content h2 strong{
  font-weight:800;
}

.agency-content p{
  color:var(--text);
  line-height:1.7;
  margin-bottom:16px;
}

/* ACTION AREA */
.agency-actions{
  display:flex;
  align-items:center;
  gap:40px;
  margin-top:25px;
}

/* CALL BOX */
.call-box{
  display:flex;
  align-items:center;
  gap:15px;
}

.call-box .icon{
  width:55px;
  height:55px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.call-box span{
  color:#777;
  font-size:14px;
}

.call-box h4{
  margin:0;
  font-size:20px;
}

/* VIDEO BUTTON */
.video-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:600;
  color:var(--dark);
  padding:12px 18px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:.3s;
}

.video-btn:hover{
  background:var(--primary);
  color:#fff;
}

/* 📱 RESPONSIVE */
@media(max-width:900px){

  .agency-container{
    flex-direction:column;
    text-align:center;
  }

  .agency-actions{
    flex-direction:column;
    gap:20px;
  }

  .agency-content h2{
    font-size:32px;
  }
}


.custom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.modal-box {
  width: 90%;
  max-width: 1100px;
  background: linear-gradient(135deg,#0f2c6e,#102a5c);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

.modal-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */
.modal-left {
  flex: 1;
  color: #fff;
}

.badge {
  display: inline-block;
  border: 1px solid #ffe600;
  color: #ffe600;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-left h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffe600;
}

.subtext {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.features {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.feature-card span {
  display: block;
}

.learn-btn {
  background: #5b7cff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #3f5de0;
}

/* RIGHT SIDE IMAGE */
.modal-right {
  flex: 1;
  text-align: center;
}

.modal-right img {
        height: 594px;
    object-fit: cover;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255,255,0,0.2);
}

/* ========================= */
/* RESPONSIVE MOBILE DESIGN  */
/* ========================= */

/* Mobile Fix */
@media(max-width: 768px){
.badge {
    display: block;
    border: 1px solid #ffe600;
    color: #ffe600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}
  .custom-modal{
    align-items: flex-start;      /* top se start hoga */
    padding: 20px 10px;
    overflow-y: auto;             /* overlay scroll enable */
  }

  .modal-box{
    width: 100%;
    max-height: 90vh;             /* screen se bada nahi hoga */
    overflow-y: auto;             /* andar scroll hoga */
    padding: 20px 18px;
    border-radius: 16px;
  }

  .modal-content{
    flex-direction: column;
    gap: 20px;
  }

  .modal-right{
    order: -1;
  }

  .modal-right img{
    height: 180px;                /* image chhoti */
    object-fit: cover;
    border-radius: 14px;
  }

  .modal-left h2{
    font-size: 22px;
    text-align: center;
  }

  .subtext{
    font-size: 14px;
    text-align: center;
  }

  .features{
    gap: 10px;
  }

  .feature-card{
    padding: 10px;
    font-size: 12px;
  }

  .learn-btn{
    width: 100%;
    padding: 12px;
  }

}
/* Call Button (Your theme color) */
.call-btn{
    text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-btn{
    background:#25D366;
    text-decoration: none;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}

/* FLOAT BUTTON */
.enquiry-btn{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
      background: linear-gradient(45deg, var(--primary), var(--secondary));
  color:#fff;
  padding:15px 12px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-weight:600;
  cursor:pointer;
  border-radius:10px 0 0 10px;
  z-index:999;
}

/* POPUP BACKGROUND */
.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* POPUP BOX */
.popup-box{
  width:90%;
  max-width:950px;
  background:#fff;
  border-radius:20px;
  padding:40px;
  animation:popup .4s ease;
}

@keyframes popup{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* GRID */
.popup-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* IMAGE */
.popup-img img{
  width:100%;
}

/* FORM */
.popup-form h2{
  font-size:32px;
  margin-bottom:10px;
}

.popup-form p{
  color:#666;
  margin-bottom:20px;
}

.popup-form input,
.popup-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:15px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
}

.popup-form textarea{
  height:120px;
  resize:none;
}

.popup-form button{
  width:100%;
  padding:16px;
  border:none;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
  color:#fff;
  font-size:18px;
  border-radius:10px;
  cursor:pointer;
}

/* CLOSE BUTTON */
.close{
  position:absolute;
  right:35px;
  top:25px;
  font-size:28px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .popup-grid{
    grid-template-columns:1fr;
  }

  .popup-box{
    padding:25px;
  }

  .popup-img{
    display:none;
  }
}

.social-icons12{
    display:flex;
    gap:12px;
}

.social-icons12 a{
    width:40px;
    height:40px;
    background:#f1f1f1;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#0072ff;
    font-size:18px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons12 a:hover{
    background:linear-gradient(45deg,#00c6ff,#0072ff);
    color:#fff;
    transform:translateY(-4px);
}

/* SECTION */
.contact-section{
  padding:80px 20px;
  background:var(--gradient);
  font-family:'Segoe UI',sans-serif;
}

.contact-container{
  max-width:1390px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

/* LEFT SIDE */
.contact-left{
  flex:1;
  color:#fff;
}

.contact-left .tag{
  letter-spacing:2px;
  font-size:14px;
  display:block;
  margin-bottom:15px;
}

.contact-left h2{
  font-size:40px;
  line-height:1.3;
  margin-bottom:20px;
}

.contact-left p{
  opacity:.9;
  line-height:1.6;
  max-width:500px;
}

/* RIGHT FORM CARD */
.contact-form-box{
  flex:1;
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.contact-form-box h3{
  font-size:30px;
  margin-bottom:25px;
}

/* FORM */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:10px;
  margin-bottom:15px;
  font-size:15px;
}

.contact-form-box textarea{
  height:120px;
  resize:none;
}

/* TWO COL INPUT */
.row12{
  display:flex;
  gap:15px;
}

.row12 input{
  flex:1;
}

/* BUTTON */
.contact-form-box button{
  width:100%;
  padding:16px;
  border:none;
  background:#3aa0c9;
  color:#fff;
  font-size:18px;
  border-radius:10px;
  cursor:pointer;
  transition:.3s;
}

.contact-form-box button:hover{
  background:#2a89ad;
}

/* RESPONSIVE */
@media(max-width:900px){

  .contact-container{
    flex-direction:column;
  }

  .contact-left{
    text-align:center;
  }

  .contact-left h2{
    font-size:30px;
  }

  .row12{
    flex-direction:column;
  }
}


    .btn-sonar {
    background: #d31f26;
    border: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-block;
    color: #fff;
    outline: 0;
    position: fixed;
    text-align: center;
    line-height: 80px;
    left: 10px;
    bottom: 50px;
    z-index: 99;
}
.btn-sonar img {
    width: 35px;
    height: 35px;
    margin-top: 13px;
    animation: rotate-img 1s infinite;
}

.btn-sonar::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: sonar-effect 1s ease-in-out .1s infinite;
}



@keyframes rotate-in {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}


@keyframes sonar-effect{0%{opacity:.3}40%{opacity:.5;box-shadow:0 0 0 5px #d31f26,0 0 10px 10px #d31f26,0 0 0 10px #d31f26}100%{box-shadow:0 0 0 5px #d31f26,0 0 10px 10px #d31f26,0 0 0 10px #1fd3ba;transform:scale(1.5);opacity:0}}

  @media (max-width: 767.98px){
    .section-top-spacing {
        padding-top: 80px;
    }
  }
    .contact-whatsapp {
    width: 50px;
    position: fixed;
    bottom: 150px;
    left: 15px;
    z-index: 9999;
    display: inline-block;
    animation: up-down 1s infinite;
}

@keyframes up-down {
    0% {transform:translateY(0px);}
    50% {transform:translateY(20px);}
    100% {transform:translateY(0px);}
    50% {margin-top:-20px;}
    100% {margin-top: 0px;}

}
.growth-services{
    padding:90px 20px;
    background:#f7faff;
}

.growth-services .container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#e9f2ff;
    color:#0d6efd;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:42px;
    color:#111;
    margin-bottom:20px;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;
}

.service-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.growth-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.growth-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#00c6ff);
}

.growth-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.icon-box{
    width:75px;
    height:75px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    margin-bottom:25px;
}

.reputation{
    background:linear-gradient(135deg,#ff9800,#ff5722);
}

.branding{
    background:linear-gradient(135deg,#6f42c1,#8e44ad);
}

.leads{
    background:linear-gradient(135deg,#00b894,#00cec9);
}

.growth-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
}

.growth-card p{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.growth-card ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.growth-card ul li{
    padding:10px 0;
    color:#444;
    border-bottom:1px solid #eee;
    position:relative;
    padding-left:28px;
}

.growth-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#0d6efd;
    font-weight:bold;
}

.growth-card a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
    transition:.3s;
}

.growth-card a:hover{
    letter-spacing:1px;
}

@media(max-width:992px){

.service-wrapper{
grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
font-size:34px;
}

}

@media(max-width:768px){

.service-wrapper{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:28px;
}

.section-heading p{
font-size:15px;
line-height:28px;
}

.growth-card{
padding:28px;
}

}