@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

:root {
  /* Primary Colors */
  --primary-color: #FF3B30;       /* Crimson Red */
  --secondary-color: #FF9500;     /* Vibrant Orange */
  --tertiary-color: #2C2C34;      /* Cool Gray / Neutral */

  /* Backgrounds */
  --bg-dark: #1B1F2B;             /* Dark Charcoal – main background */
  --bg-light: #F5F6FA;            /* Light Gray – card/section backgrounds */

  /* Text Colors */
  --text-primary: #E5E5E5;        /* Off-white for readability on dark bg */
  --text-secondary: #B0B0B0;      /* Light gray for subtext/meta */

  /* Borders / Dividers */
  --border-color: #2E3340;        /* Subtle divider lines */

  /* Buttons / Gradients */
  --btn-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --btn-gradient-hover: linear-gradient(135deg, var(--secondary-color), var(--primary-color));

  /* Shadows / Effects */
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.35);
    --light: #fff;
      --text-gray: #555;
      --accent:#0a1234;--accent-2:#1a2364;--success:#28a745;--error:#e74c3c
}

body {
  font-family: "Roboto Flex", sans-serif;
  color: #334155;
    font-weight: 200;
    letter-spacing: 1px;
}
.navbar {
  backdrop-filter: saturate(180%) blur(8px);
  z-index: 9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.navbar-brand span {
  color: var(--primary-color);
}
.btn-brand {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: 0;

}

  
.btn-brand:hover {
  opacity: 0.9;
  color: #fff;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Hero */
.hero {
  background: radial-gradient(
      1200px 400px at 80% -10%,
      rgba(16, 185, 129, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 300px at -10% 20%,
      rgba(14, 165, 233, 0.2),
      transparent 60%
    );
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.hero .badge {
  background: rgba(14, 165, 233, 0.1);
  color: var(--secondary-color);
}
/* Cards */
.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}
.about-us p{
  text-align: justify;
}
/* Section spacing */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* Footer */
.footer-link {
  color: #cbd5e1;
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
/* Card Styling */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.service-card .btn{
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 25px;
}
/* Our Story Section */
.our-story-section {
  background: #f8f9fa;
}

.story-img-wrapper {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  height: 100%;
}

.story-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.story-img {
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content h2.section-title {
  font-size: 2rem;
  letter-spacing: 1px;
}

.story-content h3.text-gradient {
  font-size: 1.5rem;
  font-weight: 600;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.6;
 text-align: justify;
}
.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  background: white;
}

.navbar.hidden {
   
  transform: translateY(-100%);
opacity: 0;
}

/* Voice Call Feature */
.voice-call-benefit .card {
      height: 100%;
      border: none;
      border-radius: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
      overflow: hidden;
    }

    .voice-call-benefit .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .voice-call-benefit .card-header {
      padding: 1rem 1.5rem;
      font-size: 1.3rem;
      font-weight: 600;
      color: #fff;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .voice-call-benefit .card-body {
      padding: 1.5rem;
    }

    .voice-call-benefit .card-body p {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s forwards;
    }

    .voice-call-benefit .card-body p:nth-child(1) { animation-delay: 0.1s; }
    .voice-call-benefit .card-body p:nth-child(2) { animation-delay: 0.2s; }
    .voice-call-benefit .card-body p:nth-child(3) { animation-delay: 0.3s; }
    .voice-call-benefit .card-body p:nth-child(4) { animation-delay: 0.4s; }
    .voice-call-benefit .card-body p:nth-child(5) { animation-delay: 0.5s; }
    .voice-call-benefit .card-body p:nth-child(6) { animation-delay: 0.6s; }
/* PRICING SECTION */
 

 

/* Glassy Pricing Cards */
.pricing-card {
  
  transition: all 0.3s ease-in-out;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

/* Accent borders */
.growth-border { border-top: 5px solid var(--primary-color); }
.scale-border { border-top: 5px solid #28a745; }
.pro-border { border-top: 5px solid #ff6600; }

/* Header style */
.card-title {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Price gradient */
.price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* ============================= */
/*   COMMON PAGE HEADER STYLES   */
/* ============================= */

.page-header-section {
  color: #fff;
  position: relative;
  padding: 60px 0;
}

/* Default Theme - Fallback */
.page-header-section {
  background-color: #0a1234;
}

/* WhatsApp Theme */
.whatsapp-theme {
  background-color: #0a1234;
}

.rcs-theme {
  background-color: #0057ff;
}

.voice-theme {
  background-color: #1a237e;
}

.bulk-theme {
  background-color: #004d40;
}

.ai-theme {
  background-color: #111827;
}

/* Header Title */
.page-header-section .header-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Header Description */
.page-header-section .header-desc {
  font-size: 1.05rem;
  color: #e0e0e0;
}

/* Badge Style */
.page-badge {
  background-color: #25d366;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-block;
}

/* Primary Button */
.btn-primary-custom {
  background-color: #25d366;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-primary-custom:hover {
  background-color: #1eb854;
  color: #fff;
}

/* Decorative Circle */
.decorative-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #25d366;
  border-radius: 50%;
  top: 50px;
  right: -50px;
  z-index: 1;
  opacity: 0.4;
}

/* Header Card */
.header-card-wrapper {
  position: relative;
}

.header-card {
  background-color: #1f2937;
  border-radius: 12px;
  padding: 20px;
  max-width: 320px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Badge on Card */
.badge-custom {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #25d366;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* ================= */
/*   RESPONSIVE UI   */
/* ================= */
@media (max-width: 768px) {
  .page-header-section {
    text-align: center;
  }
  .header-card {
    margin: 0 auto;
  }
  .decorative-circle {
    display: none;
  }
}


/* Most Popular badge */
.popular-badge {
    z-index: 10;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn-free {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-free:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Check icon color */
ul li i {
    color: var(--primary-color);
    margin-right: 0.6rem;
}
 

/* Card body padding */
.card-body { padding: 2rem; }

/* Slanted Gradient Header */
.pricing-card .card-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  text-align: center;
  padding: 1.8rem 0.5rem 1.3rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.pricing-card .card-header h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  color: white;
}

.pricing-card .card-header span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

.pricing-card .card-header .tax-text {
  font-size: 0.8rem;
  color: #ffeb3b;
  margin-top: 5px;
}

/* Card Body Styling */
.pricing-card .card-body {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Stylish Separators */
.pricing-card .card-body hr {
  border: none;
    border-top: 1px dashed rgb(255 255 255);
    margin: 5px 0;
}

/* Icons - Bright & Glowing */
.pricing-card .card-body i {
  color: var(--primary-color);
  margin-right: 10px;
  min-width: 20px;
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(255, 255, 0, 0.7);
}

/* Premium Rounded Buttons */
.btn-premium {
  display: inline-block;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-premium:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

 /* GLASSY CARD */
    .glass-card {
     
      
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    
    .glass-card i {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .glass-card h2 {
      font-size: 2rem;
      font-weight: 200;
      margin-bottom: 15px;
      color: #222;
      position: relative;
    }

    .glass-card h2::after {
      content: "";
      width: 70px;
      height: 4px;
      background: var(--primary-color);
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 5px;
    }

    .glass-card p {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
    }


    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }


    /*-------------------------*/

    .rcs-section-slanted {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.slanted-container {
  background: #f9f9f9;
  border: 2px solid #0d6efd;
  border-radius: 30px;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
  padding: 40px;
  width: 95%;
}

.slanted-container h2 {
  font-weight: 200;
  color: #0d6efd;
  margin-bottom: 40px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

.feature-card i {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .slanted-container {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0% 100%);
  }
}

@media (max-width: 768px) {
  .row.g-4 {
    display: flex;
    flex-direction: column;
  }
}

/* --- Pricing Card Styling --- */
      #rcspricing  .pricing-card {
            border: none;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
           
        }

       #rcspricing .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

       #rcspricing .pricing-card .card-header {
            background-image: linear-gradient(to right, crimson, #ff7f00);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            font-weight: 600;
            font-size: 1.25rem;
        }
        
      
        
       #rcspricing .pricing-card .list-group-item {
            border: none;
            /*padding: 1rem 1.5rem;*/
            color: #495057;
            border-bottom: 1px dotted #dbdbdb;
        }
        
       #rcspricing .pricing-card .list-group-item .bi {
            margin-right: 10px;
            color: #ff7f00;
        }
        
       #rcspricing .pricing-card .list-group-item:last-child {
            border-bottom: none;
        }

        #rcspricing .pricing-card .btn-signup {
            background-image: linear-gradient(to right, crimson, #ff7f00);
            color: white;
            border: none;
            font-weight: 600;
            padding: 1rem;
            border-radius: 0 0 12px 12px;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }
        
        #rcspricing .pricing-card .btn-signup:hover {
            background-image: linear-gradient(to right, #ff7f00, crimson);
            transform: translateY(-3px);
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Highlight the GOLD card */
        #rcspricing .card-gold {
            transform: scale(1.05);
            z-index: 10;
            position: relative;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
     .badge-popular {
            position: absolute;
            top: 5px;
            right: 15px;
            background-color: #ff7f00;
            color: white;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        #rcspricing .card-gold .btn-signup {
            background-image: linear-gradient(to right, #ff7f00, crimson);
        }
 
         /* Card styles */
    #pricings .card,   #reseller .card {
      border: none;
      border-radius: 12px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    /* Card shadow on hover */
    #pricings  .card:hover,    #reseller .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

    /* Card header gradient text */
    #pricings  .card-header,   #reseller .card-header {
      font-weight: 600;
      font-size: 1.1rem;
      padding: 15px;
    }

    /* Card body styling */
    #pricings  .card-body h5 {
      font-size: 1.2rem;
      font-weight: 500;
      color: #333;
      margin-bottom: 0;
    }

    #pricings  .card-body p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Gradient headers for RCS Packs (blue) */
    #pricings  .bg-gradient-packs {
      background: linear-gradient(90deg, #00b6ff, #0056b3);
      color: white;
    }

    /* Gradient headers for RCS Charges (red-yellow) */
    #pricings  .bg-gradient-charges {
      background: linear-gradient(90deg, #ff4e50, #f9d423);
      color: white;
    }

    /* Responsive adjustments for small screens */
    @media (max-width: 576px) {
      #pricings  .card-header {
        font-size: 1rem;
        padding: 12px;
      }
     #pricings  .card-body h5 {
        font-size: 1rem;
      }
    }

    /*-------------------------*/

    @keyframes pulse {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
 

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .voice-call-benefit .card-body i {
      color: var(--primary-color);
      margin-right: 10px;
      min-width: 20px;
      text-align: center;
    }

    .btn-primary-custom {
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      border: none;
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      color: #fff;
      font-weight: 600;
      transition: background 0.3s, transform 0.3s;
      margin-top: 1rem;
    }

    .btn-primary-custom:hover {
      background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
      transform: translateY(-3px);
    }
/* END Voice Call Feature */
/* Wrapper for marquee */
    .logo-scroller {
      --gap: 2rem;        /* Gap between logos */
      --speed: 25s;       /* Lower = faster */
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      padding-block: 1rem;
      background-color: #fff;
      border-top: 2px solid #eee;
      border-bottom: 2px solid #eee;
    }

    /* Logo track for smooth infinite scroll */
    .logo-track {
      display: flex;
      align-items: center;
      gap: var(--gap);
      width: max-content;
      animation: scroll var(--speed) linear infinite;
      scroll-behavior: smooth;
    }
ul.clients-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
}

ul.clients-grid li {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

ul.clients-grid li img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

ul.clients-grid li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: rgba(0, 123, 255, 0.8);
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
  display: none; /* Hidden by default */
      height: 40px;
    width: 40px;
    line-height: 25px;
}

#scrollTopBtn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}
/* Hero Header */
    .page-header {
      position: relative;
      color: white;
      padding: 100px 0;
      background: url('../images/01.webp') no-repeat center center;
      background-size: cover;
      background-attachment: fixed; /* Parallax effect */
      overflow: hidden;
    }

    /* Gradient overlay */
    .page-header::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      opacity: 0.7;
      z-index: 0;
    }

    .page-header .container {
      position: relative;
      z-index: 1;
    }

    /* Hero animations */
    @keyframes fadeSlideUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .animate-header { opacity: 0; animation: fadeSlideUp 1s ease forwards; animation-delay: 0.3s; }
    .animate-breadcrumb { opacity: 0; animation: fadeSlideUp 1s ease forwards; animation-delay: 0.6s; }

    .page-header h1 { font-size: 3rem; font-weight: 200; }
    .page-header p { font-size: 1.2rem; color: rgba(255,255,255,0.9); }

    .page-header .breadcrumb { background: transparent; padding: 0; margin-bottom: 0; }
    .page-header .breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
    .page-header .breadcrumb a:hover { text-decoration: underline; }
    .page-header .breadcrumb .active { color: rgba(255,255,255,0.7); }

    /* About Us Section */
    .about-us {
      padding: 80px 0;
    }

    .about-images img{
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      min-height:400px;
      object-position: center;
      width: 100%;
      margin-bottom: 2rem;
    }
  
@media (max-width: 992px) {
  .story-content h2.section-title {
    font-size: 1.75rem;
  }
  .story-content h3.text-gradient {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .story-content h2.section-title {
    font-size: 1.5rem;
  }
  .story-content h3.text-gradient {
    font-size: 1.1rem;
  }
}
/* Subheading */
.subheading-wrapper {
  display: inline-flex;
  align-items: center;
}
.story-img {
 
  object-fit: cover;
  min-height: 450px;
}

.subheading-text {
  font-size: 0.9rem;
  font-weight: 200;
  background: var(--primary-color); /* soft gold background */
  padding: 3px 8px;
  border-radius: 4px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.subheading-line {
  display: block;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
}

/* Main Heading */
.main-heading {
  font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
}
 
 

.slanted-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 80px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}

.slanted-section h2 {
  font-weight: 200;
  margin-bottom: 2rem;
  text-align: center;
}

.slanted-section .card {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: white;
}

.slanted-section .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
  background-size: 200% 200%;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.slanted-section .card:hover::before {
  opacity: 1;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.slanted-section .card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Icon glow & pulse */
.icon-glow {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 15px;
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.card:hover .icon-glow {
  transform: scale(1.4);
  text-shadow: 0 0 15px var(--secondary-color), 0 0 30px var(--primary-color), 0 0 45px var(--secondary-color);
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--primary-color); transform: scale(1); }
  50% { text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--secondary-color); transform: scale(1.1); }
}

.slanted-section .card h5 {
  font-weight: 200;
  margin-bottom: 15px;
  font-size: 2rem;
}

.slanted-section .card p {
  font-size: 0.95rem;
}
 

.slanted-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 12px auto 0;
  border-radius: 2px;
  animation: slideUnderline 1.5s ease infinite alternate;
}

@keyframes slideUnderline {
  0% { width: 30px; opacity: 0.6; }
  50% { width: 60px; opacity: 1; }
  100% { width: 30px; opacity: 0.6; }
}

.slanted-section p.subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  text-align: center;
}
.footer-section{
      background: #f7f7f7;
}
/* Footer links */
.footer-links a {
  color: #333;
  display: inline-block;
  margin-bottom: 0rem;
  transition: 0.3s;
  font-size: 14px;
  text-decoration: none;
}
.footer-links li{
  font-weight: 300;
  margin-bottom: 0;
}
.footer-links a:hover {
  color: var(--secondary-color);
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(90deg, #ffd700, #dc143c);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.links-address {
  background: #f4f4f4;
  line-height: 1;
  font-size: 14px;
}
.links-address a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Social icons */
.social-icon {
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}
.social-icon:hover {
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.75rem;
  }
  .subheading-line {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 1.5rem;
  }
  .subheading-line {
    width: 30px;
  }
}

/* Image block */
.service-card .card-img-top {
  position: relative;
  height: 100px;
  background-color: #f5f5f5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}
.service-card:hover .card-img-top {
  transform: scale(1.1);
}

/* Overlay */
.card-img-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 123, 255, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .card-img-top::after {
  opacity: 1;
}

/* Gradient Button */
.btn-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: #fff !important;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* ======== MARQUEE CONTAINER ======== */
.testi-marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  position: relative;
  background: #f8f9fa;
}

/* ======== TRACK FOR SCROLL ======== */
.testi-track {
  display: inline-flex;
  gap: 20px;
  animation: scroll-left 35s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.testi-marquee:hover .testi-track {
  animation-play-state: paused;
}

/* ======== TESTIMONIAL CARD ======== */
.testi-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 320px;
  flex: 0 0 auto;
  white-space: normal;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testi-stars {
  font-size: 14px;
  color: #f5b301;
  margin-bottom: 10px;
}

.testi-quote {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-info p {
  margin: 0;
  line-height: 1.2;
}

.testi-name {
  font-weight: 200;
  color: #222;
}

.testi-role {
  font-size: 14px;
  color: #888;
}

.navbar .navbar-brand img {
  height: 60px;
  transition: all 0.3s ease;
}
.navbar.scrolled .navbar-brand img {
  height: 45px;
}
/* Nav links */
.navbar .nav-link {
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.navbar .nav-link:hover {
  color: var(--primary-color);
}

/* Multi-level dropdown */
.dropdown-menu {
  display: none;
  margin-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.nav-item:hover > .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}
.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border-radius: 0 8px 8px 0;
}
.dropdown-item {
  font-weight: 500;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 13px;
}
.dropdown-item:hover {
  background-color: #f1f1f1;
  color: var(--primary-color);
}
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-transform: capitalize;
}
.dropdown-menu li {
  position: relative;
}

.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
  display: block;
  top: 0;
  left: 100%;
  margin-top: -1px;
}
.dropdown-submenu .dropdown-menu {
  display: none;
  position: absolute;
}
/* ----------- Top Bar Styling ----------- */
.top-bar {
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s;
}
.top-bar a:hover {
  color: #ffd700;
}
.social-icons a {
  margin-left: 10px;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ffd700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile Offcanvas */
.offcanvas {
  background-color: #fff;
  padding: 20px;
}
.offcanvas .nav-link {
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}
.offcanvas .nav-link:hover {
  color: var(--primary-color);
}

/* ======== INFINITE SCROLL ANIMATION ======== */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive width for smaller devices */
@media (max-width: 576px) {
  .testi-card {
    width: 260px;
  }
}
/* ================================
       MODERN MINIMAL HEADING STYLE
    ================================= */
.section-title {
  margin-bottom: 2.5rem;
  position: relative;
}

/* Main heading */
.section-title h1,
.section-title h2,
.section-title h3 {
  
  font-weight: 200;
  color: #222;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.6rem;
}

/* Animated line below heading */
.section-title h1::after,
.section-title h2::after,
.section-title h3::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  margin: 0.5rem auto 0;
  border-radius: 5px;
  animation: pulse 2s infinite;
}

/* Subtitle text */
.section-title p {
  color: var(--primary-color);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Container for the tabs */
        .tabs-premium-container {
            border-radius: 12px;
        
            overflow: hidden; /* Ensures the border-radius is applied correctly */
          
            margin: 5rem auto;
            background-color: #fff;
        }

        /* Styling for the tab navigation bar */
        .tabs-premium .nav-link {
            border: none;
            border-radius: 8px 8px 0 0;
            padding: 1.5rem 2.5rem;
            color: #495057;
            background-color: transparent;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* Active tab styling with a gradient */
        .tabs-premium .nav-link.active {
            background-image: linear-gradient(to right, crimson, #ff7f00);
            color: white;
            font-weight: 600;
            box-shadow: inset 0 -4px 0 0 white; /* Small white line at the bottom */
        }
        
        /* Inactive tab hover effect */
        .tabs-premium .nav-link:not(.active):hover {
            color: crimson;
            background-color: rgba(255, 99, 71, 0.05); /* Crimson with low opacity */
        }

        /* Icon styling */
        .tabs-premium .nav-link .bi {
            margin-right: 8px;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }

        /* Inactive icon color */
        .tabs-premium .nav-link:not(.active) .bi {
            color: #adb5bd;
        }
        
        /* Content area styling */
        .tab-content {
            padding: 3rem;
        }
/* Glowing animation for the divider */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0px rgba(0, 198, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 198, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0px rgba(0, 198, 255, 0.3);
  }
}
 /* Section Styling */
    .whatsapp-section {
      background: #f9fbff;
      padding: 60px 0;
    }

    
  /* Sub-text */
    .features-subtext {
      font-size: 1.05rem;
      color: #555;
      margin-top: 15px;
      line-height: 1.7;
    }

    /* Feature List */
    .feature-list {
      list-style: none;
      padding: 0;
      margin-top: 25px;
    }

    .feature-list li {
      font-size: 1.05rem;
      color: #333;
      display: flex;
      align-items: center;
      margin-bottom: 14px;
      font-weight: 500;
    }

    /* Tick Icon */
    .feature-list i {
      color: var(--secondary-color);
      font-size: 1.3rem;
      margin-right: 10px;
    }

    /* Left & Right Column */
    .features-text {
      padding-right: 20px;
    }

    .features-img {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    .features-img:hover {
      transform: scale(1.05);
    }

    /* Responsive Text Center */
    @media (max-width: 768px) {
      .features-text {
        text-align: center;
        padding-right: 0;
      }
    }

    /* Heading */
    .pricing-title {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 50px;
      color: #1e293b;
    }

    /* Pricing Card */
    .pricing-card-bulk-sma {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      padding: 30px 25px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    .pricing-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    }

    /* Price Tag */
 

    /* SMS Count */
    .sms-count {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #0f172a;
    }

    /* Price per SMS */
    .per-sms {
      font-size: 0.95rem;
      color: #475569;
      margin-bottom: 20px;
    }

    /* Features List */
    .pricing-features {
      text-align: left;
      margin-top: 15px;
      margin-bottom: 15px;
    }

    .pricing-features li {
      list-style: none;
      padding: 8px 0;
      font-size: 0.95rem;
      color: #334155;
    }

    .pricing-features li i {
      color: #10b981;
      margin-right: 8px;
    }

    /* Footer Text */
    .tax-note {
      font-size: 0.85rem;
      color: #ef4444;
      font-weight: 600;
    }

    /* Popular Plan Highlight */
 .pricing-card-bulk-sma   .popular-badge {
      position: absolute;
      top: 3%;
      right: -28%;
      background: #22c55e;
      color: #fff;
      padding: 5px 50px;
      font-size: 0.85rem;
      font-weight: 700;
      transform: rotate(45deg);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    }

    

    /* Image Styling */
    .whatsapp-img {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease;
    }

    .whatsapp-img:hover {
      transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .whatsapp-text {
        text-align: center;
        margin-bottom: 25px;
      }
    }

 /* Section Styling */
    .services-section {
      padding: 80px 20px 60px;
      position: relative;
      
    }

 

    /* Glassmorphic Card Styling */
    .service-box {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
    
     margin-bottom: 1rem;
      border: 1px solid #ccc;
    padding: 10px 15px;
    border-radius: 10px;
      transition: all 0.3s ease-in-out;
      position: relative;
    }

    .service-box:hover {
      transform: translateY(-6px);
      border-color: #00f2fe;
     
    }

    /* Small Neon Icons */
    .service-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 14px;
      
      transition: all 0.3s ease;
    }

    .service-box:hover .service-icon {
      transform: scale(1.1) rotate(10deg);
      background: linear-gradient(135deg, #ff00ff, #4facfe);
      box-shadow: 0 0 12px rgba(255, 0, 255, 0.7);
    }

    /* Service Text */
    .service-text {
      font-size: 16px;
      font-weight: 500;
    
    }

    /* Mobile View */
    @media (max-width: 768px) {
      .service-box {
        flex-direction: row;
        text-align: left;
      }
    }

 /* ==============================================
       DOTNET THEME COLORS
    ============================================== */
    :root {
      --dotnet-red: #ff3b30;
      --dotnet-orange: #ff9500;
      --dotnet-bg-gradient: linear-gradient(135deg, #fff8f6, #fff2ec);
      --dotnet-shadow: 0 6px 20px rgba(255, 59, 48, 0.15);
    }

    /* ==============================================
       SECTION WRAPPER
    ============================================== */
    .dotnet-section {
      padding: 80px 20px;
      background: var(--dotnet-bg-gradient);
    
    }

  

    /* ==============================================
       SERVICE CARDS
    ============================================== */
    .dotnet-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      border: 1px solid #ffe3d6;
      box-shadow: var(--dotnet-shadow);
      transition: all 0.35s ease-in-out;
    }

    .dotnet-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 30px rgba(255, 85, 54, 0.25);
      border-color: var(--dotnet-orange);
    }

    /* ==============================================
       CARD TITLE
    ============================================== */
    .dotnet-card h5 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 14px;
      color: var(--dotnet-red);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .dotnet-card h5 i {
      font-size: 18px;
      background: linear-gradient(135deg, var(--dotnet-red), var(--dotnet-orange));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ==============================================
       LIST STYLING
    ============================================== */
    .dotnet-list {
      list-style: none;
      padding-left: 0;
      margin: 0;
      flex-grow: 1;
    }

    .dotnet-list li {
      padding: 7px 0;
      font-size: 15px;
      color: #333;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s ease;
    }

    .dotnet-list li i {
      color: var(--dotnet-orange);
      font-size: 12px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .dotnet-list li:hover {
      color: var(--dotnet-red);
    }

    .dotnet-list li:hover i {
      transform: scale(1.3);
      color: var(--dotnet-red);
    }

    /* ==============================================
       RESPONSIVE FIXES
    ============================================== */
    @media (max-width: 991px) {
      .dotnet-card {
        margin-bottom: 25px;
      }
    }

    /* ==========================
   MOBILE APP SECTION CSS
========================== */
.mobile-app-section {
  padding: 80px 20px;
  background: #fff8f6;
     
  color: #333;
}

/* Header */
.mobile-app-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #ff3b30, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.mobile-app-intro {
  font-size: 16px;
  line-height: 1.7;
 
  margin: 0 auto;
}

/* Subtitles */
.mobile-app-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #ff3b30;
  margin-bottom: 16px;
}

/* Images */
.mobile-app-image, 
.mobile-app-card-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Benefits List */
.mobile-app-benefits {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px 40px;
  font-weight: 600;
  color: #ff3b30;
 
  margin: 0 auto;
}

.mobile-app-benefits.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.mobile-app-benefits li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
}

.mobile-app-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9500;
  font-size: 18px;
  line-height: 1;
}

/* Platform Cards */
.mobile-app-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(255, 85, 54, 0.25);
}

.mobile-app-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ff3b30;
  margin: 16px 0 8px;
}

.mobile-app-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .mobile-app-benefits.two-column {
    grid-template-columns: 1fr;
  }
  .mobile-app-meet-demand .col-lg-6 {
    text-align: center;
  }
  .mobile-app-card {
    margin: 0 auto;
  }
}

/*-----------------end -------------------*/

/* ==========================
   SEO SECTION
========================== */
 

.seo-title {
  
  font-weight: 700;
 
  color: #ff3b30; /* red theme */
  margin-bottom: 40px;
}

/* Benefits list */
.seo-benefits {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 20px 40px;
 
  margin: 0 auto;
  font-weight: 600;
  color: #333;
}

.seo-benefits.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.seo-benefits li {
  position: relative;
  padding-left: 50px;
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.3s ease;
}

/* Gradient circle icon */
.seo-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff3b30, #ff9500);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.seo-icon i {
  color: #fff;
  font-size: 16px;
}

/* Hover effects */
.seo-benefits li:hover {
  color: #ff3b30;
}

.seo-benefits li:hover .seo-icon {
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 6px 16px rgba(255, 149, 0, 0.5);
}

/* Responsive */
@media (max-width: 575px) {
  .seo-benefits.two-column {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   SMO SECTION - 3 COLUMNS
========================== */
.smo-section {
  padding: 60px 20px;
  background: #fdfdfd;
   
}

.smo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  gap: 24px;
}

.smo-card {
  position: relative;
  background: #fff;
  padding: 32px 20px 20px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(255, 85, 54, 0.15);
}

/* Badge/Icon */
.smo-badge {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff3b30, #ff9500);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smo-card:hover .smo-badge {
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(255, 149, 0, 0.5);
}

.smo-card h4 {
  font-size: 20px;
  font-weight: 400;
  color: #ff3b30;
  margin-bottom: 12px;
  padding-top: 10px; /* space for badge */
}

.smo-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .smo-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 575px) {
  .smo-cards {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}


 .chatbot-clean {
  padding: 60px 20px;
 
}

.chatbot-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.chatbot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
}

.chatbot-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.chatbot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.chatbot-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 28px;
}

.chatbot-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.chatbot-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 575px) {
  .chatbot-grid {
    grid-template-columns: 1fr;
  }
}

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

    .process-item {
      position: relative;
      background: var(--light);
      padding: 10px 20px 10px 45px;
      border-left: 5px solid var(--primary);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      counter-increment: step;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .process-item::before {
      content: counter(step);
      position: absolute;
      left: 5px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--primary-color);
      color: var(--light);
      font-weight: bold;
      width: 28px;
      height: 28px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 14px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

   

    .process-item:hover::before {
      background: #fff;
      color: var(--primary);
    }

    @media (max-width: 768px) {
      .process-grid {
        grid-template-columns: 1fr;
      }
    }

    .consultancy-points {
      list-style: none;
      padding: 0;
      margin: 0 0 25px 0;
    }

    .consultancy-points li {
      font-size: 15px;
      color: var(--secondary);
      margin-bottom: 10px;
      padding-left: 28px;
      position: relative;
    }

    .consultancy-points li::before {
      content: "✔";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--primary);
      font-weight: bold;
    }

    .consultancy-btn {
      display: inline-block;
      padding: 12px 28px;
      background: var(--primary-color);
      color: var(--light);
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(255, 59, 59, 0.4);
    }

    .consultancy-btn:hover {
      background: #e53232;
      transform: translateY(-2px);
    }
 

    @media (max-width: 900px) {
      .consultancy-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .consultancy-content {
        order: 2;
      }
      .consultancy-image img {
        max-width: 90%;
        margin-top: 20px;
      }
    }

/* Responsive font sizes */
@media (max-width: 768px) {
  .section-title h1,
  .section-title h2,
  .section-title h3 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .section-title p {
    font-size: 0.9rem;
  }
}
/* Section Styling */
.clients-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}
/* Dynamic Blurred Background */
.blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(25px);
  opacity: 0.3;
  z-index: 1;
  transition: background-image 0.5s ease-in-out;
}
/* Logo Styling */
#clients-carousel .item {
  display: inline-block;
  margin: 0 5px;
}
#clients-carousel .item img {
  width: 180px;
  height: 100px;
  margin: auto;
  background: white;
  transition: all 0.3s ease;
  filter: grayscale(30%);
  opacity: 0.85;
  cursor: pointer;
  border: 1px solid #ebebeb;
  padding: 5px;
  border-radius: 4px;
  object-fit: contain;
}

#clients-carousel .item img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
  opacity: 1;
}

/* Custom Left & Right Navigation Buttons */
.owl-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.owl-nav-btn span {
  font-size: 26px;
  font-weight: bold;
}

.owl-nav-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Positioning Left & Right Buttons */
.owl-nav-left {
  left: -60px; /* Move outside the carousel */
}

.owl-nav-right {
  right: -60px; /* Move outside the carousel */
}

/* Remove default Owl buttons & dots */
.owl-dots,
.owl-nav {
  display: none !important;
}

.php-benefits-list-premium {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  font-family: "Poppins", sans-serif;
  color: #ff3b30;
  font-weight: 600;
  display: grid;
  gap: 12px 40px; /* row gap, column gap */
}

.php-benefits-list-premium.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.php-benefits-list-premium li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.php-benefits-list-premium li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff3b30, #ff9500);
  box-shadow: 0 2px 6px rgba(255, 149, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.php-benefits-list-premium li:hover::before {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 4px 12px rgba(255, 149, 0, 0.6);
}

.php-benefits-list-premium li:hover {
  color: #ff9500;
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 575px) {
  .php-benefits-list-premium.two-column {
    grid-template-columns: 1fr; /* single column on small screens */
  }
}

 
 
 
  /* Alert */
  .alert{position:fixed;top:24px;right:24px;padding:14px 18px;border-radius:10px;color:#fff;font-weight:600;box-shadow:0 8px 30px rgba(10,18,52,.12);transform:translateY(-12px);opacity:0;pointer-events:none;transition:all .28s}
  .alert.show{opacity:1;transform:translateY(0);pointer-events:auto}
  .alert.success{background:var(--success)}
  .alert.error{background:var(--error)}
  @media (max-width:820px){.subscribe-card{grid-template-columns:1fr; padding:20px} .subscribe-form{width:100%}}

@media (max-width: 480px) {
  ul.clients-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
  }
}

  .contact-section {
      padding: 60px 0;
    }

    .contact-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
      padding: 35px;
      transition: all 0.3s ease-in-out;
    }

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

    .contact-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .form-control {
      border-radius: 8px;
      padding: 12px;
    }

    .btn-gradient {
      background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
      border: none;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      border-radius: 8px;
      transition: all 0.3s ease-in-out;
    }

    .btn-gradient:hover {
      background: linear-gradient(45deg, #6610f2, #0d6efd);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
.contact-icon{
  color: var(--primary-color);
}
    .contact-info h5 {
      font-weight: 600;
      margin-bottom: 8px;
    }

    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* Floating WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25d366;
      color: white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      font-size: 24px;
      z-index: 999;
      transition: all 0.3s ease-in-out;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      background: #20ba5a;
    }

    /* Floating Call Button */
    .call-btn {
      position: fixed;
      bottom: 90px;
      right: 25px;
      background: #0d6efd;
      color: white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      font-size: 24px;
      z-index: 999;
      transition: all 0.3s ease-in-out;
    }

    .call-btn:hover {
      transform: scale(1.1);
      background: #0b5ed7;
    }

    /* WhatsApp Section */
    .whatsapp-section {
   
      margin: auto;
      padding: 60px 20px;
      text-align: center;
      background: linear-gradient(135deg, #25D366, #128C7E);
     
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .whatsapp-section h1 {
      font-size: 2.8rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .whatsapp-section p.whatsapp-subtitle {
      font-size: 1.3rem;
      color: #e0e0e0;
      margin-bottom: 40px;
    }

    /* Stats Container */
    .whatsapp-stats-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: none; /* Firefox */
    }

    .whatsapp-stats-container::-webkit-scrollbar {
      display: none; /* Chrome / Safari */
    }

    /* Category Block */
    .whatsapp-category {
      background: #fff;
      padding: 25px;
      border-radius: 18px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      flex: 0 0 400px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 6px solid #25d366;
      color: #222;
      animation: whatsappFadeUp 1s ease-in-out forwards;
    }

    .whatsapp-category:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    }

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

    .whatsapp-category h2 {
      font-size: 1.6rem;
      color: #128c7e;
      margin-bottom: 15px;
    }

    /* Stat Items */
    .whatsapp-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 14px 0;
      text-align: left;
    }

    .whatsapp-stat i {
      font-size: 1.3rem;
      color: #25d366;
      background: #e8f9f0;
      padding: 10px;
      border-radius: 50%;
      min-width: 40px;
      text-align: center;
    }

    .whatsapp-stat span {
      font-size: 1.05rem;
      color: #333;
    }

    /* Counter Styling */
    .whatsapp-counter {
      font-weight: 700;
      color: #000;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .whatsapp-section h1 {
        font-size: 2.2rem;
      }

      .whatsapp-section p.whatsapp-subtitle {
        font-size: 1.1rem;
      }

      .whatsapp-category {
        flex: 0 0 85%;
      }
    }

    /* Floating Icons */
.whatsapp-floating-icon {position:absolute; font-size:2rem; color:rgba(37,211,102,0.15); animation: floatUp 12s linear infinite; pointer-events:none;}
@keyframes floatUp {0% {transform: translateY(0) rotate(0deg);} 50% {transform: translateY(-80px) rotate(180deg);} 100% {transform: translateY(0) rotate(360deg);}}

/* Section Container */
.whatsapp-api-section { margin:auto; padding:60px 20px; position:relative; z-index:1; text-align:center;}
.whatsapp-api-section h1 {font-size:2.5rem; color:#128c7e; margin-bottom:50px;}
.whatsapp-api-section h2 {font-size:1.8rem; color:#128c7e; margin:60px 0 30px 0;}

/* Hexagon Boxes Container */
.whatsapp-six-container {display:flex; flex-wrap:wrap; justify-content:center; gap:30px;}
.whatsapp-box {
  background:#fff; border-radius:20px; flex:0 0 300px; min-height:240px; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center; padding:25px 15px; box-shadow:0 8px 25px rgba(0,0,0,0.12);
  position:relative; overflow:hidden; opacity:0; transform:scale(0.8); transition:all 0.6s ease-out;
}
.whatsapp-box::before {
  content:""; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background:linear-gradient(135deg, #25d366, #128c7e);
  transform:rotate(45deg); opacity:0; transition:opacity 0.4s ease;
}
.whatsapp-box:hover::before {opacity:0.1;}
.whatsapp-box.visible {opacity:1; transform:scale(1);}
.whatsapp-box i {
  font-size:3rem; color:#25d366; background:#e6f7ef; padding:20px; border-radius:50%; margin-bottom:15px;
}
.whatsapp-box p {font-size:1rem; color:#333; line-height:1.5;}

/* Message Type Boxes */
.whatsapp-message-container {display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:30px;}
.whatsapp-message-box {
  flex:0 0 320px; background:#f1fff7;   padding:3rem; box-shadow:0 5px 15px rgba(0,0,0,0.08);
  opacity:0; transform:translateY(50px); transition:all 0.6s ease-out; text-align:left; font-weight:600;
}
.whatsapp-message-box span{
  display: block;
  font-weight: normal;
}
.whatsapp-message-box.visible {opacity:1; transform:translateY(0);}

/* Responsive */
@media screen and (max-width:1024px){.whatsapp-box {flex:0 0 45%;} .whatsapp-message-box {flex:0 0 45%;}}
@media screen and (max-width:768px){.whatsapp-box, .whatsapp-message-box {flex:0 0 90%;}}

.header-section {
      padding: 20px 0;
      position: relative;
      background: #000;
      color: white;

    }

    .header-section h1 {
      font-weight: 700;
      font-size: 2.8rem;
      line-height: 1.2;
    }

    .page-header-section p {
      font-size: 1.1rem;
      margin-top: 20px;
      
    }

    .btn-primary-custom {
      background-color: #1d4ed8;
      border: none;
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: all 0.3s;
    }
    .btn-primary-custom:hover {
      background-color: #2563eb;
    }

    .header-image-card {
      background-color: white; /* dark card background */
      border-radius: 12px;
      padding: 20px;
      position: relative;
      z-index: 2;
      max-width: 320px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .header-image-card img {
      width: 100%;
      border-radius: 10px;
    }

    .header-image-card .badge-custom {
      position: absolute;
      top: -15px;
      right: -10px;
      background-color: #f43f5e;
      color: #fff;
      font-size: 0.75rem;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
    }

    .shape-behind {
      position: absolute;
      width: 350px;
      height: 400px;
      background-color: #f43f5e;
      border-radius: 40px;
      top: 20px;
      right: 0;
      z-index: 1;
      transform: rotate(-15deg);
    }

    @media (max-width: 992px) {
      .header-section {
        text-align: center;
      }
      .shape-behind {
        display: none;
      }
      .header-image-card {
        margin: 40px auto 0 auto;
      }
    }