/* Home page css start - index page */

/* GLOBAL */


.container {
    width: 92%;
    margin: auto;
}

/* ================= TOP STRIP ================= */
/* TOP STRIP */
.top-strip {
    background: #001AA0;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TOP RIGHT LINKS */
.top-right {
    display: flex;
    align-items: center;
    gap: 22px; /* perfect spacing between items */
}

.top-right a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px; /* space between icon & text */
    transition: 0.3s ease;
}

.top-right a:hover {
    color: #e8e8e8;
    transform: translateY(-1px);
}

/* Cart icon bigger */
.top-right .cart i {
    font-size: 18px;
}
.top-strip p {
    animation: spacingPulse 2.8s ease-in-out infinite;
    font-size: 18px;
}

@keyframes spacingPulse {
    0% { letter-spacing: 0px; }
    50% { letter-spacing: 2px; }
    100% { letter-spacing: 0px; }
}

/* INR Currency Box */
.currency-box {
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.35);
}
.currency-box:hover {
    background: rgba(255,255,255,0.28);
    box-shadow: 0 0 8px rgba(255,255,255,0.45);
    transform: translateY(-2px);
    transition: 0.3s ease;
}

.cart i {
    font-size: 18px;
}

.currency {
    margin-left: 20px;
    padding: 5px 12px;
    background: #0D123D;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* ================= MAIN HEADER ================= */
.main-header {
    position: fixed;  /* Changed from sticky to fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-top: 0;  /* Removed the margin-top */
}


.header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 65px;
    margin-right: 200px;
    
}

/* NAVIGATION MENU */
.nav-menu {
    display: flex;
    gap: 38px;
    font-size: 17px;
    font-weight: 600;
}

.nav-menu a,
.nav-menu .dropdown {
    color: #0033A0;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .dropdown:hover {
    color: #B52000; /* Golden brown professional highlight */
}

/* Active Page Style */
.nav-menu .active {
    color: #5D2C0C;
}

/* Underline on hover (professional effect) */
.nav-menu a::after,
.nav-menu .dropdown::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #001AA0;
    transition: 0.3s;wdm-footer-red
}

.nav-menu a:hover::after,
.nav-menu .dropdown:hover::after {
    width: 100%;
}
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3.56 / 1;   /* matches your banner image */
    max-height: 480px;
    overflow: hidden;
    
}


.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 576px) {

   
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.8s ease-in-out;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;     /* VERY IMPORTANT */
        object-position: center;
        margin-top: -26px;
      
    }
}

.banner-content {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 450px;
}

.banner-content h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.banner-content p {
    font-size: 20px;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 14px 18px;
    color: white;
    background: rgba(0,0,0,0.4);
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-nav:hover {
    background: rgba(0,0,0,0.7);
}

/* Dots */
.dots {
    position: absolute;
    bottom: 13px;
    width: 100%;
    text-align: center;
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active-dot {
    background: #fff;
}
@media (max-width: 576px) {
    .dots {
        bottom: 70px;
    }

    .dots span {
        height: 5px;
        width: 5px;
        margin: 0 4px;
    }
}

/* BELOW BANNER SECTION */
.below-banner-section {
    padding: 40px 0;
}

/* SLIDER */
.card-slider {
    display: flex;
    gap: 25px;
    padding: 20px 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.card-slider::-webkit-scrollbar {
    display: none;
}

/* ---------- UNIQUE BRAND-THEMED CARD ---------- */
.brand-card {
    min-width: 330px;
    height: 200px;
    border-radius: 22px;
    padding: 6px;
    overflow: hidden;
    background: #fff;

    /* Brand Gradient Border */
    border: 4px solid transparent;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(
            135deg,
            rgb(202,26,30),
            rgb(238,125,128),
            rgb(158,17,20)
        ) border-box;

    /* Premium depth shadow */
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

/* Hover effect (soft premium lift) */
.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
    width: fit-content;
    margin: 50px auto;
    padding: 18px 45px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #fff;

    background: #0a1a33;
    border-radius: 40px;

    animation: floatBox 3s ease-in-out infinite;
    margin-bottom: -25px;
}

/* Floating Animation */
@keyframes floatBox {
    0% { transform: translateY(0); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
    50% { transform: translateY(-10px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
    100% { transform: translateY(0); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
}

.text-slider-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin: 40px auto;
    padding: 20px 0;
    border-radius: 10px;
    margin-bottom: -25px;
}

/* Super Slow Scroll */
.text-slider {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 120s linear infinite; 
    /* 120s = very slow */
}

.text-slider h3 {
    font-size: 20px;
    color: #000;        /* DARK FONT */
    font-weight: 500;
    display: inline-block;
    line-height: 1.7;
}

.spani {
    color: rgb(202,26,30); /* Brand red numbering */
    font-weight: 700;
    margin-right: 6px;
}

/* Horizontal Sliding */
@keyframes scrollText {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}



/* product-previews section */
.product-previews {
    padding: 90px 0;
    background:
    radial-gradient(circle at 20% 30%, rgba(0,38,255,0.10), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(2,168,244,0.12), transparent 45%);
  animation: aiBgFlow 12s ease-in-out infinite alternate;
  z-index: 0;

    font-family: "Poppins";
    margin-top: -78px;
    margin-bottom: -20px;
}

/* CENTER CONTAINER */
.pp-container {
    width: 80%;
    margin: auto;
    text-align: center;
}

/* TITLE */
.pp-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: #0a2351;
    margin-bottom: 20px;
}

.pp-title span {
    background: linear-gradient(90deg, #0026ff, #02a8f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ANIMATED UNDERLINE */
.pp-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #0026ff, #02a8f4);
    display: block;
    margin: 18px auto 0;
    border-radius: 100px;
    animation: grow 2.5s ease infinite;
}

@keyframes grow {
    0% { width: 50px; }
    50% { width: 110px; }
    100% { width: 50px; }
}

/* SUBTEXT */
.pp-subtext {
    font-size: 20px;
    color: #444;
    width: 100%;
    margin: 15px auto 40px;
    line-height: 1.7;
}

/* BUTTON AREA */
.pp-buttons {
  display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: -16px;
    margin-top: 70px;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #00258c;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #001b63;
    transform: translateY(-3px);
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 2px solid #00258c;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #00258c;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #00258c;
    color: #fff;
    transform: translateY(-3px);
}
/* SERVICE CARDS GRID */
.pp-service-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* CARD */
/* CARD — NORMAL STATE */
.pp-card {
  width: 270px;
  background: linear-gradient(
    135deg,
    #6f85ff,
   
    #55c4f8
  );
  border-radius: 6px;
  padding: 24px 22px 28px;
  border: 1px solid transparent;

  box-shadow:
    0 6px 10px rgba(0, 0, 0, 0.10),
    0 18px 36px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.35s ease,
    color 0.25s ease;
}

/* HOVER — WHITE CARD */
.pp-card:hover {
  background: #ffffff;
  border: 1px solid #e6e6e6;

  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.10),
    0 22px 40px rgba(0, 0, 0, 0.18);
}

/* ---------------- ICON ---------------- */
.pp-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.pp-card:hover .pp-icon {
  color: #0a2cff;
}

/* ---------------- TITLE ---------------- */
.pp-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  transition: color 0.25s ease;
}

.pp-card:hover h3 {
  color: #0a2cff;
}

/* ---------------- DESCRIPTION ---------------- */
.pp-card p {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  font-family: "Poppins", sans-serif;
  color: #eef2ff;
  transition: color 0.25s ease;
}

.pp-card:hover p {
  color: #555;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .pp-title { font-size: 32px; }
    .pp-subtext { width: 90%; }
    .pp-card { width: 90%; }
}
/* ----------------------------------------------------
   FAST ANIMATIONS FOR AI / LLM SECTION
-----------------------------------------------------*/

/* Faster fade-in upward */
@keyframes fadeUpFast {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Faster floating animation */
@keyframes floatCardFast {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Faster icon glow */
@keyframes iconPulseFast {
  0% { text-shadow: 0 0 0px rgba(0, 100, 255, 0.4); }
  50% { text-shadow: 0 0 9px rgba(0, 100, 255, 0.7); transform: scale(1.08); }
  100% { text-shadow: 0 0 0px rgba(0, 100, 255, 0.4); }
}

/* Faster shimmer */
@keyframes shimmerLineFast {
  0% { width: 0; opacity: 0; }
  100% { width: 140px; opacity: 1; }
}

/* ----------------------------------------------------
   APPLY FAST ANIMATIONS
-----------------------------------------------------*/

/* Title fade-in */
.pp-title {
  animation: fadeUpFast 0.45s ease-out forwards;
}

/* Subtext */
.pp-subtext {
  opacity: 0;
  animation: fadeUpFast 0.45s ease-out forwards;
  animation-delay: 0.15s;
}

/* Cards fade + float fast */
.pp-card {
  opacity: 0;
  animation: fadeUpFast 0.45s ease-out forwards,
             floatCardFast 3.5s ease-in-out infinite;
}

/* Staggered fast delays */
.pp-card:nth-child(1) { animation-delay: 0.1s, 0.5s; }
.pp-card:nth-child(2) { animation-delay: 0.18s, 0.5s; }
.pp-card:nth-child(3) { animation-delay: 0.26s, 0.5s; }
.pp-card:nth-child(4) { animation-delay: 0.34s, 0.5s; }

/* Faster glow on hover */
.pp-card:hover .pp-icon {
  animation: iconPulseFast 0.7s ease infinite;
}

/* Faster shimmer line */
.pp-title::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  height: 4px;
  background: linear-gradient(90deg, #003cff, #02afff);
  border-radius: 10px;
  animation: shimmerLineFast 0.45s ease forwards;
}
.pp-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 14px 40px rgba(0, 35, 140, 0.22),
    0 0 0 1px rgba(0, 38, 255, 0.35);
}
.pp-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #0026ff, #02a8f4);
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pp-card:hover::after {
  transform: scaleX(1);
}
/* Idle AI pulse */
@keyframes aiPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pp-icon {
  animation: aiPulse 3.5s ease-in-out infinite;
}
@media (max-width: 576px) {
  .pp-icon {
    font-size: 20px;
    margin-bottom: 8px;
    animation: none;   /* 🔥 stops animation */
  }
}

/* ai-agent-section */
/* AI Agent Section */
.ai-agent-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #eef2ff, #f7f7ff);
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Floating Glow Orbs */
.ai-agent-section::before,
.ai-agent-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
 
  border-radius: 50%;
  z-index: 1;
  animation: floatOrb 6s ease-in-out infinite alternate;
}

.ai-agent-section::before {
  top: -60px;
  left: -40px;
}

.ai-agent-section::after {
  bottom: -60px;
  right: -40px;
  animation-delay: 1.5s;
}

@keyframes floatOrb {
  from { transform: translateY(0px); }
  to { transform: translateY(25px); }
}

/* Titles */
.ai-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #0026ff, #02a8f4);
  -webkit-background-clip: text;
  color: transparent;
  z-index: 2;
  position: relative;
  margin-top: -20px;
}

.ai-subtitle {
  font-size: 18px;
  margin-top: 10px;
  max-width: 100%;
  margin-inline: auto;
  color: #333;
  z-index: 2;
  position: relative;
}

/* Feature Cards */
.ai-features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  z-index: 2;
  position: relative;
}

/* Card Styling */
.ai-card {

 /* soft light red – best match */
background: linear-gradient(135deg, #9dd9fa, #84c9b7);

  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Neon Hover Glow */
.ai-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.16), rgba(0, 195, 255, 0.2));
  opacity: 0;
  transition: opacity 0.25s;
}

.ai-card:hover::after {
  opacity: 1;
}

/* Fast animation hover */
.ai-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 95, 255, 0.18);
}

/* Icons */
.ai-icon {
  font-size: 42px;
  color: #005cff;
  margin-bottom: 16px;
  transition: transform 0.25s ease-out;
}

.ai-card:hover .ai-icon {
  transform: scale(1.18) rotate(6deg);
}

/* Text */
.ai-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ai-card p {
  font-size: 15px;
  color: #444;
}

/* Button */
.ai-btn {
  margin-top: 45px;
  padding: 14px 38px;
  font-size: 18px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  background: linear-gradient(90deg, #0026ff, #02a8f4);
  transition: transform 0.25s ease-out, box-shadow 0.25s;
}

.ai-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 95, 255, 0.3);
}
@keyframes cardFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.ai-card {
  animation: cardFloat 5.5s ease-in-out infinite;
}
@keyframes aiIconPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(0,92,255,0.4));
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
    filter: drop-shadow(0 0 12px rgba(0,92,255,0.6));
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 0 rgba(0,92,255,0.4));
  }
}

.ai-icon {
  animation: aiIconPulse 3.5s ease-in-out infinite;
}



/* unique-domain-section */
.unique-domain-section {
    background: #15003b;
    text-align: center;
    padding: 70px 20px;
    color: #fff;
    font-family: "Poppins";
}

/* Top Buttons */
.unique-top-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.unique-btn {
    background: #2b0d66;
    border: 1px solid #5a32c8;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.unique-btn:hover {
    background: #3c19a8;
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(140, 90, 255, 0.4);
}

.unique-active {
    background: #8f5aff;
}

/* Search Box */
.unique-search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.unique-search-box input {
    width: 55%;
    padding: 18px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    font-size: 18px;
}

.unique-search-btn {
    padding: 18px 40px;
    background: #8f5aff;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.unique-search-btn:hover {
    background: #7a42ff;
    transform: scale(1.05);
}

/* Domain Cards */
.unique-domain-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.unique-card {
    width: 190px;
    background: #7b55e1;
    padding: 25px 0;
    border-radius: 12px;
    transition: 0.35s ease;
}

.unique-card:hover {
    background: #8a66ff;
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(123, 85, 225, 0.4);
}

.unique-card h3 {
    margin: 0;
    font-size: 22px;
}

.unique-old {
    margin-top: 8px;
    text-decoration: line-through;
    color: #ffdede;
}

.unique-new {
    color: #ffce2f;
    font-size: 20px;
    font-weight: 600;
}

/* Footer */
.unique-footer-text {
    margin-top: 35px;
    font-size: 17px;
    color: #ccc;
}


.unique-extra-links {
  margin-top: 35px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.unique-extra-links a {
  font-size: 25px;
  font-weight: 600;
  color: #f7f7fa;
    text-decoration: underline;
  transition: 0.3s ease;

}

.unique-extra-links a:hover {
  color: #e81308;
  text-decoration: underline;
}

/* ================= OFFICE CRM SECTION ================= */
.officecrm-section {
  width: 100%;
  padding: 45px 16px;   /* top-bottom | left-right */
  background:
    radial-gradient(circle at top left, rgba(193, 237, 249, 0.8), transparent 50%),
    radial-gradient(circle at bottom right, rgba(133, 141, 188, 0.25), transparent 50%),
    linear-gradient(135deg, #f3f7ff, #e6efff);
  position: relative;
  overflow: hidden;
}



/* ================= INNER ================= */
.officecrm-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.officecrm-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: -25px;
}
.officecrm-title {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(90deg, #0026ff, #02a8f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}


.officecrm-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: black;
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: -22px;
}

/* ================= LAYOUT ================= */
.officecrm-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= POINTS CARD ================= */
.officecrm-points-card {
  background:
    radial-gradient(circle at top left, rgb(84, 141, 156), transparent 45%),
    radial-gradient(circle at bottom right, rgba(164, 177, 251, 0.2), transparent 45%),
    linear-gradient(135deg, #0b1d4d, #a9bdf9);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow:
    0 20px 45px rgba(11, 29, 77, 0.25);
}
.officecrm-points-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 65px rgba(11, 29, 77, 0.35);
}


/* ================= POINTS ================= */
.officecrm-points {
  list-style: none;
  margin-bottom: 34px;
}

.officecrm-points li {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  font-size: 17px;
  line-height: 1.6;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.officecrm-points li:last-child {
  border-bottom: none;
}

.officecrm-points span {
  font-size: 20px;
  font-weight: 800;
  color: #00e1ff;
  min-width: 34px;
}

/* ================= CTA ================= */
.officecrm-btn {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(90deg, #00e1ff, #4c6fff);
  color: #00144f;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.35s ease;
  margin-left: 35px;
}

.officecrm-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,225,255,0.45);
}

/* ================= VIDEO CARD ================= */
.officecrm-video {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Maintain 16:9 aspect ratio */
.officecrm-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.officecrm-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
    .officecrm-btn {
        margin-left: 0;          /* remove side push */
        margin-top: 18px;        /* add spacing instead */
        padding: 14px 36px;
        font-size: 15px;
    }
}
@media (max-width: 600px) {
    .officecrm-btn {
        width: 100%;             /* full-width CTA */
        padding: 14px 0;
        font-size: 14px;
        border-radius: 30px;
        text-align: center;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .officecrm-layout {
    grid-template-columns: 1fr;
  }

  .officecrm-points-card {
    padding: 32px 26px;
  }

  .officecrm-title {
    font-size: 32px;
  }
}


/* LLM Section Wrapper */
.llm-section {
  padding: 90px 20px;
background: linear-gradient(135deg, #eef2ff, #f7f7ff); /* As you required */
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  animation: fadeIn 0.6s ease-out;
}

/* Title */
.llm-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
      background: linear-gradient(90deg, #0026ff, #02a8f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -2px;
}

/* Subtitle */
.llm-subtitle {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 50px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  color: #333;
}

/* Features Grid */
.llm-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* LLM Cards */
.llm-card {
 background: linear-gradient(90deg, #00c3ff, #e6c8f9);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

/* Neon Border Animation */
.llm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(120deg, #00e5ff, #0084ff, #00e5ff);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: borderMove 2s linear infinite;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.llm-card:hover::after {
  opacity: 1;
}

.llm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

/* Icon Styling */
.llm-icon {
  font-size: 45px;
  margin-bottom: 18px;
  color: #fff;
  animation: pulse 1.2s infinite;
}

/* Card Title */
.llm-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card Description */
.llm-card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.9;
}



/* ===================== Animations ===================== */

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

/* Icon Pulse */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

/* Neon Border Move */
@keyframes borderMove {
  0% { background-position: 0%;}
  100% { background-position: 200%;}
}


/* ==========================
   Ticket Support Section
   Unique Prefix: ts_
   ========================== */

.ts_section {
    
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.ts_container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    margin-top: 75px;
    margin-bottom: 30px;
}

/* Main Heading */
.ts_title {
  font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d1b71;
    z-index: 2;
    position: relative;
}

/* Intro Paragraph */
.ts_intro {
       font-size: 20px;
    color: #444;
    width: 100%;
    margin: 15px auto 40px;
    line-height: 1.7;
     font-family: "Poppins";
    
}

/* Bullet List */
.ts_list {
    list-style: disc;
    margin: 0 auto 40px;
    padding-left: 245px;
    text-align: left;
    max-width: 500px;
    font-size: 18px;
    line-height: 1.8;
       color: #444;
       font-family: "Poppins";
}

.ts_list li {
    margin-bottom: 10px;
}

/* Small grey note text */
.ts_note {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
   color: #444;
       font-family: "Poppins";
}

/* Sub Heading */
.ts_subtitle {
   font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d1b71;
    z-index: 2;
    position: relative;
}

/* Description */
.ts_description {
         font-size: 20px;
    color: #444;
    width: 100%;
    margin: 15px auto 40px;
    line-height: 1.7;
     font-family: "Poppins";
}

/* Button */
.ts_btn {
    background: #00258c;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s 
ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ts_btn:hover {
     background: #001b63;
    transform: translateY(-3px);
}
/**********************************************
  MAIN SECTION
**********************************************/
.service-section {
    width: 100%;
    background: rgb(247,240,240);
    padding: 70px 0;
}

/**********************************************
  HEADING
**********************************************/
.service-main-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
     color: #2d1b71;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

.service-main-heading::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0b2a63;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 5px;
    opacity: 0.8;
}

/**********************************************
  SERVICE ICON ROW
**********************************************/
.service-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto 55px auto;
    padding-top: 10px;
}

.service-icon-box {
    text-align: center;
    transition: .3s ease;
    cursor: pointer;
}

.service-icon-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 8px;
    border: 4px solid #b6d98e;
    background: #fff;
    transition: all .35s ease-in-out;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.service-icon-box:hover img {
    transform: scale(1.08);
    border-color: #7cc121;
}

.service-icon-box.active img {
    border-color: #32cd32;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-icon-box p {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #0c0c0c;
    letter-spacing: .5px;
}

/**********************************************
  CONTENT ROW
**********************************************/
.service-content-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1150px;
    margin: auto;
    padding: 20px 10px;
}

/**********************************************
  LEFT CONTENT (TEXT)
**********************************************/
.service-text-box {
    width: 50%;
}

.service-text-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b2a63;
    margin-bottom: 15px;
     font-family: "Poppins";
}

.service-text-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
     font-family: "Poppins";
}

/**********************************************
  RIGHT (IMAGE)
**********************************************/
.service-image-box {
    width: 50%;
    text-align: right;
}

.service-image-box img {
    width: 95%;
    transition: .6s ease-in-out;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}

.service-image-box img:hover {
    transform: scale(1.03);
}

/**********************************************
  BUTTONS
**********************************************/
.service-btn-group {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.service-btn-know,
.service-btn-chat {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: .3s ease;
}

.service-btn-know {
    background: linear-gradient(135deg, #f03444, #d7162f);
}

.service-btn-chat {
    background: linear-gradient(135deg, #0650dd, #003bb5);
}

.service-btn-know:hover,
.service-btn-chat:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/**********************************************
  FADE ANIMATION
**********************************************/
.fade {
    opacity: 0;
    transform: translateY(15px);
    transition: .5s ease;
}


/*************** product-section ***************/
.product-section {
    background: linear-gradient(135deg, #001a78, #0038c2);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/*************** HEADING ***************/
.product-main-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/*************** TOP TABS ***************/
.product-tab-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 50px;
}

.product-tab {
    font-size: 14px;
    font-weight: 600;
    color: #e6e6e6;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255,255,255,0.25);
    transition: 0.3s ease;
}

.product-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.product-tab.active {
    background: #1dc42f;
    border-color: #1dc42f;
    color: #fff;
}

/*************** CONTENT AREA ***************/
.product-content-area {
    max-width: 1180px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
    animation: fadeUp .8s ease-out;
}

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

/*************** IMAGE ***************/
.product-image-box {
    width: 50%;
}

.product-image-box img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    transition: 0.35s ease;
    margin-top: 25px;
}

.product-image-box img:hover {
    transform: translateY(-10px);
}

/*************** TEXT CONTENT ***************/
.product-text-box {
    width: 50%;
}

.product-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #ffffff;
    margin-left: 20px;
}

.product-text-box p {
    font-size: 16px;
    color: #e5eaff;
    line-height: 1.75;
    margin-bottom: 15px;
    text-align: justify !important;    /* ← PERFECT JUSTIFY */
    text-justify: inter-word;

    max-width: 900px;                  
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
}


/*************** BUTTONS ***************/
.product-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    margin-left: 20px;
}

.btn-know-more {
    background: #ef3a32; 
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
    display: inline-block;
}

.btn-know-more:hover {
    background: #c82822;
}

.btn-chat {
    background: transparent; 
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-chat:hover {
    background: rgba(255,255,255,0.15);
}
/* ================= SECTION ================= */
.dm-section {
    padding: 100px 0;
    background: #ffffff;
    margin-top: -70px;
    margin-bottom: -30px;
}

/* ================= HEADING ================= */
.dm-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 80px;
    background: linear-gradient(90deg, #0026ff, #02a8f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 45px;
    margin-top: 20px;
}

/* ================= GRID ================= */
.dm-grid {
    max-width: 1250px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ================= CARD ================= */
.dm-card {
    display: grid;
    grid-template-columns: 80px 1.3fr 1.4fr auto;
    gap: 30px;
    padding: 22px 40px;
    border-radius: 14px;
   background: linear-gradient(135deg, rgb(193, 236, 248), #314bdf62);

    position: relative;
    transition: 0.35s ease;
    align-items: center;
}

/* Left Accent */
.dm-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0057ff, #00c6ff);
    border-radius: 14px 0 0 14px;
}

/* Hover Effect */
.dm-card:hover {
    background: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0, 30, 120, 0.12);
}

/* ================= IMAGE ================= */
.dm-img-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef3ff;
    transition: 0.4s ease;
}

.dm-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: 0.4s ease;
}

.dm-card:hover img {
    transform: scale(1.15);
}

/* ================= TITLE ================= */
.dm-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #001e6c;
    margin-bottom: 6px;
}

/* ================= DESCRIPTION ================= */
.dm-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 8px 0 0;
    min-height: 72px; /* 🔥 keeps all cards equal */
}

/* ================= BUTTON ================= */
.dm-btn {
    width: 210px;              /* 🔥 FIXED WIDTH FOR ALL */
    height: 44px;              /* 🔥 SAME HEIGHT */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 30px;
    background: transparent;
    border: 2px solid #0057ff;
    color: #0057ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}


.dm-btn:hover {
    background: linear-gradient(90deg, #0026ff, #02a8f4);
    color: #ffffff;
    transform: translateX(4px);
}

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

/* ===== TABLET (≤ 992px) ===== */
@media (max-width: 992px) {
    .dm-section {
        padding: 70px 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .dm-heading {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .dm-card {
        grid-template-columns: 70px 1fr;
        align-items: start;
        gap: 16px;
        padding: 22px 24px;
    }

    .dm-desc {
        min-height: auto; /* allow natural height */
    }

    .dm-btn {
        width: 200px;     /* still uniform */
        height: 42px;
        margin-top: 14px;
    }
}

/* ===== MOBILE (≤ 600px) ===== */
@media (max-width: 600px) {
    .dm-section {
        padding: 60px 0;
    }

    .dm-heading {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .dm-card {
        grid-template-columns: 1fr;
        padding: 22px 20px;
        text-align: left;
    }

    .dm-img-box {
        width: 64px;
        height: 64px;
    }

    .dm-card h3 {
        font-size: 20px;
    }

    .dm-desc {
        font-size: 13.5px;
    }

    .dm-btn {
        width: 100%;          /* 🔥 full-width CTA on mobile */
        height: 44px;
        margin-top: 16px;
    }
}




/* ==========================
   DIGITAL MARKETING SERVICE SECTION - NORMAL CSS
   ========================== */

/* ==========================
   DIGITAL MARKETING SERVICE SECTION - FIXED NORMAL CSS
   ========================== */

/* =====================================================
   DIGITAL MARKETING SERVICE – PROFESSIONAL TIMELINE UI
   ===================================================== */

/* SECTION */
.digital-marketing-service-section {
    background: linear-gradient(135deg, #a0b6f2, #0038c2);
    padding: 45px 0 70px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* SUBTLE BACKGROUND GLOW */
.digital-marketing-service-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,198,255,0.25), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0,87,255,0.25), transparent 40%);
    z-index: 0;
}

/* CONTAINER */
.digital-marketing-service-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* HEADER */
.digital-marketing-service-header {
    text-align: center;
    margin-bottom: 70px;
}

.digital-marketing-service-subtitle {
    font-size: 38px;
    font-weight: 800;
    color: #9ddcff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-top: -2px;
}

.digital-marketing-service-title {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 18px;
}

.digital-marketing-service-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 980px;
    margin: auto;
    line-height: 1.7;
}

/* =====================================================
   TIMELINE GRID (NO CARDS)
   ===================================================== */

.digital-marketing-service-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 90px;
    padding-left: 50px;
    margin-top: 70px;
    margin-top: -25px;
}

/* VERTICAL LINE */
.digital-marketing-service-grid::before {
 
    position: absolute;
    left: 16px;
    top: 0;
    height: 100%;
    width: 4px;
  
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,198,255,0.7);
}

/* ITEM */
.digital-marketing-service-card {
    background: transparent;
    padding-left: 45px;
    position: relative;
    text-align: left;
    transition: 0.35s ease;
}

/* TIMELINE DOT */
.digital-marketing-service-card::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 23px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #00c6ff;
    box-shadow: 0 0 18px rgba(0,198,255,0.8);
}

/* REMOVE ICON VISUALLY */
.digital-marketing-service-icon {
    display: none;
}

/* TITLE */
.digital-marketing-service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

/* TEXT */
.digital-marketing-service-card-text {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 440px;
}

/* HOVER EFFECT */
.digital-marketing-service-card:hover {
    transform: translateX(8px);
}

/* =====================================================
   BUTTON
   ===================================================== */

.digital-marketing-service-btn-box {
    text-align: center;
    margin-top: 50px;
    margin-bottom: -30px;
}

.digital-marketing-service-btn { display: inline-block; padding: 16px 45px; background: transparent; color: #fcfdff; border: 2px solid #fafbfd; border-radius: 30px; font-size: 18px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .digital-marketing-service-btn:hover { background: #0048ff; color: #fff; transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0, 72, 255, 0.3); }
/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .digital-marketing-service-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        padding-left: 40px;
    }

    .digital-marketing-service-grid::before {
        left: 10px;
    }

    .digital-marketing-service-card {
        padding-left: 35px;
    }

    .digital-marketing-service-card::before {
        left: -32px;
    }
}

@media (max-width: 768px) {
    .digital-marketing-service-subtitle {
        font-size: 27px;
    }

    .digital-marketing-service-title {
        font-size: 20px;
    }

    .digital-marketing-service-description {
        font-size: 16px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .digital-marketing-service-grid {
        padding-left: 30px;
    }

    .digital-marketing-service-card-title {
        font-size: 20px;
    }

    .digital-marketing-service-card-text {
        font-size: 15px;
    }

    .digital-marketing-service-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* --- Global Reset & Container Styles --- */
.testimonial-section {
    padding: 80px 20px;
    background-color: #f4f7f9; /* Soft light grey background */
    font-family: 'Inter', sans-serif; /* Modern, clean font */
    text-align: center;
}

.testimonial-heading {
    font-size: 36px;
   background: linear-gradient(90deg, #0026ff, #02a8f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;/* Very dark blue for professionalism */
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Grid Layout --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 40px; 
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Individual Testimonial Card Styles (The unique part) --- */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(11, 26, 61, 0.05); /* Soft, deep shadow */
    padding: 30px;
    transition: transform 0.3s ease;
    text-align: left;
    position: relative; /* Essential for the angled accent */
    overflow: hidden; /* Important to contain the accent triangle */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

/* --- Angled Accent (Using a Pseudo-element) --- */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    /* Creating a triangle using borders */
    border-top: 50px solid rgb(236, 139, 143); /* Bright accent color */
    border-right: 50px solid transparent; 
    z-index: 5;
    transition: border-top-color 0.3s ease;
}

.testimonial-card:hover::before {
    border-top-color: rgb(163,23,26); /* Subtle color shift on hover */
}

/* --- Quote Icon (Large and prominent) --- */
.testimonial-quote {
    display: block;
    font-size: 4em;
    color: rgb(236, 139, 143); /* Accent color */
    line-height: 0.5;
    margin-bottom: 15px;
    opacity: 0.7;
    font-family: serif;
}

/* --- Testimonial Text --- */
.testimonial-text {
    margin-top: 10px;
    margin-bottom: 25px;
    color: #3f4e6e;
    line-height: 1.7;
    font-size: 1.05em;
    font-weight: 400;
}

/* --- Customer Image and Details Styling --- */
.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #e0e0e0;
}

.testimonial-author-group {
    display: flex;
    align-items: center;
    margin-top: auto; /* Pushes the author block to the bottom */
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author {
    font-size: 1.2em;
    color: #0b1a3d;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.testimonial-role {
    font-size: 0.9em;
    color: #6b7a99;
    font-weight: 500;
    margin: 0;
}

/* Hide unused elements from your HTML for this design */
.testimonial-name-top {
    display: none; 
}

/* ============================
   PORTFOLIO SECTION
============================ */
.portfolio-section {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
    font-family: 'Poppins';
}

.portfolio-heading {
    font-size: 36px;
    font-weight: 800;
  background: linear-gradient(90deg, #0026ff, #02a8f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    margin-top: -15px;
}

/* ============================
   GRID LAYOUT
============================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    max-width: 1250px;
    margin: auto;
    padding: 0 10px;
}

/* ============================
   PORTFOLIO ITEM (Single Card)
============================ */
.portfolio-item {
    text-align: center;
    background: #ffffff;
    padding: 10px 0;
}

/* ============================
   TITLE
============================ */
.portfolio-title {
    font-size: 25px;
    font-weight: 700;
    color: #0b3c8c;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

/* ============================
   IMAGE BOX
============================ */
.portfolio-image-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.portfolio-image {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.35s ease-in-out;
}

.portfolio-image-box:hover .portfolio-image {
    transform: scale(1.06);
}

/* ============================
   BUTTON ROW
============================ */
.portfolio-btn-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

/* ============================
   BUTTONS
============================ */
.portfolio-btn {
    padding: 12px 30px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.25s ease;
}

/* Green Button */
.visit-btn {
    background: #0ba22a;
}
.visit-btn:hover {
    background: #07841f;
}

/* Red Button */
.details-btn {
    background: #c92a2a;
}
.details-btn:hover {
    background: #a22020;
}

/* ============================
   RESPONSIVE FIXES
============================ */
@media (max-width: 768px) {
    .portfolio-btn-row {
        flex-direction: column;
        gap: 15px;
    }

    .portfolio-btn {
        width: 80%;
        margin: auto;
    }
}


/* Career Section */
.career-section {
    background: linear-gradient(145deg, #00818f, #7286fa, #4cff91);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.career-title {
    font-size: 33px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Subtitle Text */
.career-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Button */
.career-btn {
    background: #060fc1; /* green */
    padding: 12px 28px;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

/* Hover Effect */
.career-btn:hover {
    background: #049a51;
}
/* Grid Layout */
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

/* Card */
.career-card {
    background: rgba(255, 255, 255, 0.204);
    padding: 30px 30px;
    border-radius: 14px;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: 0.35s ease;
}

/* Card Hover */
.career-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
}

/* Card Heading */
.career-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Card Text */
.career-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e8e8ff;
}

/* Button Center */
.career-card .career-btn {
    display: inline-block;
}

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

    .career-card {
        text-align: center;
    }
}


/* ================================
   Review Section Wrapper
================================ */
.review-section {
    padding: 70px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}

.review-heading {
    font-size: 36px;
    font-weight: 800;
background: linear-gradient(90deg, #0026ff, #02a8f4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 45px;
    margin-top: -2px;
}

/* ================================
   Review Grid Layout
================================ */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: auto;
}

/* ================================
   Individual Review Card
================================ */
.review-card {
   background: linear-gradient(
    135deg,
    #2a2e42,
    #434d9c
  );
  padding: 20px 25px;
  border-radius: 12px;
  color: #ffffff;
  min-height: 260px;

  /* ✅ Flex column for bottom alignment */
  display: flex;
  flex-direction: column;

  /* ✅ Bottom-heavy shadow */
   box-shadow:
    0 8px 22px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.05);


  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}


/* Hover Lift Effect */
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Gold Stars */
/* Position badge properly */
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #0a84ff;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 30px;

    position: absolute;
    top: 12px;
    right: 12px;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Badge Icon (small square) */
.review-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    display: inline-block;
}

/* Stars below the badge */
.review-stars {
    font-size: 22px;
    margin-top: 38px; /* Pushes stars down to create clean spacing */
    margin-bottom: 12px;
    color: #ffcc00;
    display: flex;
    justify-content: flex-start;
}


/* Badge Colors */
.justdial {
    background: #007bff;
}
.facebook {
    background: #1877f2;
}
.google {
    background: #1a73e8;
}

/* Quote Icon */
.quote-icon {
    font-size: 30px;
    margin-top: 4px;
    opacity: 0.8;
}

/* Review Text */
.review-text {
    font-size: 15px;
    line-height: 1.6;
    margin-top: -27px;
    margin-bottom: 18px;
}

/* Author Name */
.review-author {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-top: auto;     /* pushes to bottom */
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}


/* ================================
   Video Card Design
================================ */
.video-card {
    padding: 12px !important;
}

.video-card iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

/* ================================
   Responsive Fixes
================================ */
@media (max-width: 768px) {
    .review-section {
        padding: 50px 15px;
    }
    
    .review-heading {
        font-size: 26px;
    }
}



.map-section {
    padding: 70px 20px;
    text-align: center;
}

.map-heading {
       font-size: 37px;
    font-weight: 800;
    margin-bottom: 45px;
    color: #0b3c8c;
    margin-top: -30px;

}

.map-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

iframe, amp-iframe {
    border: none;
}


/* 🔵 Section Background with Soft Modern Blue Gradient */
.contact-cta-pro {
    background: linear-gradient(135deg, #a5bcfc, #b1c5fa);
    padding: 55px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* 🔵 Soft floating blur circles */
.contact-cta-pro::before,
.contact-cta-pro::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(120px);
    border-radius: 50%;
}

.contact-cta-pro::before { top: -50px; left: -60px; }
.contact-cta-pro::after { bottom: -40px; right: -60px; }

/* Center Wrapper */
.cta-pro-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

/* Title */
.cta-pro-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: capitalize;
}

/* Subtitle */
.cta-pro-subtext {
    font-size: 20px;
    opacity: 0.92;
    max-width: 780px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
}

/* Actions Row */
.cta-pro-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Premium Glow Button */
.cta-pro-btn {
    background: linear-gradient(90deg, #06c1ff, #007bff);
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 18px rgba(0, 119, 255, 0.45);
    transition: 0.3s ease;
}

.cta-pro-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.7);
}

/* OR Text */
.cta-pro-or {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Glassmorphism Phone Box */
.cta-pro-callbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(90deg, #06c1ff, #007bff);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.22);
}

/* Circular Icon with Pulse Animation */
.cta-pro-phone-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #003fcb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    animation: pulseIcon 1.7s infinite ease-in-out;
}

/* Phone Icon Animation */
@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* Text inside Call Box */
.cta-pro-call-details {
    text-align: left;
}

.cta-pro-call-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.cta-pro-phone-number {
    font-size: 17px;
    font-weight: 700;
}


/* Footer Base */
.wdm-footer-red {
    background: linear-gradient(180deg, #4f7fc8 0%, #5f94db 50%, #6aa3e8 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: "Poppins", sans-serif;
}


.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Headings */
.wdm-footer-red h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text Links */
/* Remove bullets */
.wdm-footer-red ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List item */
.wdm-footer-red ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

/* Vertical accent line */
.wdm-footer-red ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 18px;
  background: #cfe2ff;
  border-radius: 2px;
  opacity: 0.7;
  transition: 0.3s ease;
}

/* Link text (your base style kept) */
.wdm-footer-red ul li a {
  color: #fff;
  text-decoration: none;
  line-height: 32px;
  display: inline-block;
  transition: 0.3s ease;
}

/* Hover effects */
.wdm-footer-red ul li:hover::before {
  height: 24px;
  opacity: 1;
}

.wdm-footer-red ul li a:hover {
  color: #e8f1ff;        /* soft white-blue hover */
  transform: translateX(4px);
}



/* Logo */
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* Social Icons */
/* ================= BASE ================= */
.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* ================= NORMAL STATE (BG = APP COLOR) ================= */

/* Facebook */
.social-icons a.fb {
  background: #1877F2;
}

/* X (Twitter) */
.social-icons a.x {
  background: #000000;
}

/* Instagram */
.social-icons a.insta {
  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}

/* YouTube */
.social-icons a.yt {
  background: #FF0000;
}

/* LinkedIn */
.social-icons a.linked {
  background: #0A66C2;
}

/* ================= HOVER STATE ================= */
.social-icons a:hover {
  background: #ffffff;
  color: #E60000; /* Brand red */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(230, 0, 0, 0.25);
}

/* Quick Contact Form Wrapper */
.form-col {
    background: linear-gradient(145deg, #00188f, #1d3fd1, #4c6fff); /* unique blue background (modify if needed) */
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

/* Heading */
.form-col h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-left: 60px;
    margin-top: 6px;
}

/* All input + textarea styling */
.form-col input,
.form-col select,
.form-col textarea {
    width: 100%;
    background: #ffffff;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    outline: none;
}

/* Unique input focus effect */
.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus {
    border: 2px solid #ff4a4a;
    box-shadow: 0 0 5px rgba(255, 74, 74, 0.5);
}

/* Phone group styling */
.phone-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.phone-group select,
.phone-group input {
    width: 100%;
    height: 48px;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
}

/* Textarea unique style */
.form-col textarea {
    height: 140px;
    resize: none;
    border-radius: 10px;
}

/* reCAPTCHA box spacing */
.recaptcha-wrap {
    margin: 15px 0;
}

/* Submit Button */
.quote-btn {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    margin-left: 68px;
}

.quote-btn:hover {
    background: #af0808; /* darker red */
}


/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    font-size: 14px;
    color: #ffffff; /* pure white for clarity */
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    background: inherit; /* subtle overlay */
}


.footer-links a {
    color: #eaf1ff;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}


.payments h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.payment-banner {
    width: 220px;      /* adjust size */
    max-width: 100%;
    margin-top: 5px;
}



/* HAMBURGER */
.mobile-menu-btn {
  width: 35px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  height: 4px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  transition: 0.4s ease;
}

/* ANIMATION X */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #ffffff;
    display: block;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-menu .dropdown {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid #eee;
  }
}



/* ==========================
   SAMSUNG GALAXY + ALL MOBILES
   (576px and below)
   ========================== */
@media screen and (max-width: 576px) {

    /* GENERAL MOBILE FIX */
    body {
        font-size: 14px;
        line-height: 1.45;
    }

    /* HEADER / NAV */
    .logo img {
        height: 42px;
    }

    .hamburger {
        width: 28px;
        height: 22px;
    }

    /* NAV MENU */
    .nav-menu {
        width: 85%;
        padding: 70px 18px 20px;
    }

    .nav-menu a,
    .nav-menu .dropdown {
        font-size: 15px;
        padding: 12px 0;
    }

    /* HERO */
    .hero-slider {
        aspect-ratio: 16 / 9;
        max-height: none;
        margin-top: 90px;
    }

    /* PRODUCT PREVIEW BUTTONS */
    .pp-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        margin-top: 30px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 100%;
        padding: 14px;
    }

    /* CARD WIDTH CONTROL */
    .pp-card,
    .ai-card,
    .llm-card,
    .dm-card,
    .review-card {
        max-width: 100%;
    }

    /* DOMAIN CARDS */
    .unique-domain-cards {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-container {
        gap: 25px;
    }

    .form-col {
        padding: 18px;
    }
}

/* ====================== */
/* COMPLETE MOBILE RESPONSIVE CSS */
/* ====================== */

/* ==========================
   GLOBAL RESETS & FOUNDATION
   ========================== */
* {
    box-sizing: border-box;
}



/* ==========================
   TABLET & MOBILE (768px and below)
   ========================== */
@media (max-width: 768px) {
    /* GLOBAL ADJUSTMENTS */
    body {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
        margin: 0 auto;
    }
    
    /* TOP STRIP */
    .top-strip {
        padding: 8px 0;
        background: #001AA0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .top-strip .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .top-strip p {
        font-size: 13px;
        margin: 0;
        padding: 0;
        animation: none;
    }
    
    .top-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .top-right a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .currency-box {
        font-size: 12px;
        padding: 4px 10px;
        margin-top: 5px;
    }
    
    /* HEADER & NAVIGATION */
    .main-header {
        padding: 10px 0;
        position: sticky;
        top: -9px;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        margin-top: -10px;
    }
    
    .header-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo img {
        height: 45px;
        margin-right: 0;
    }
    
    /* HAMBURGER MENU */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #0033A0;
        border-radius: 3px;
        transition: 0.3s;
    }
    
    /* NAV MENU MOBILE */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
        transition: 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a,
    .nav-menu .dropdown {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* HERO SLIDER */
   
    .slider-nav {
        padding: 10px;
        font-size: 18px;
        background: rgba(0,0,0,0.5);
         margin-top: -24px;
    }
    
    
    /* PRODUCT PREVIEWS */
    .product-previews {
        padding: 40px 15px;
    }
    
    .pp-container {
        width: 100%;
        padding: 0;
        margin-top: 35px;
    }
    
    .pp-title {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
    }
    
    .pp-subtext {
        font-size: 15px;
        width: 100%;
        text-align: center;
        margin: 15px 0 30px;
    }
    
    .pp-service-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .pp-card {
        width: 100%;
        max-width: 350px;
        padding: 20px;
    }
    
    .pp-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 40px;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 14px;
        text-align: center;
    }
    
    /* AI AGENT SECTION */
    .ai-agent-section {
        padding: 40px 15px;
    }
    
    .ai-title {
        font-size: 26px;
        text-align: center;
    }
    
    .ai-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .ai-card {
        padding: 20px;
        text-align: center;
    }
    
    .ai-btn {
        width: 100%;
        max-width: 300px;
        margin: 30px auto 0;
        display: block;
    }
    
    /* UNIQUE DOMAIN SECTION */
    .unique-domain-section {
        padding: 40px 15px;
    }
    
    .unique-top-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .unique-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .unique-search-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .unique-search-box input {
        width: 100%;
        border-radius: 8px;
        padding: 15px;
    }
    
    .unique-search-btn {
        width: 100%;
        border-radius: 8px;
        padding: 15px;
    }
    
    .unique-domain-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .unique-card {
        width: 100%;
        padding: 15px;
    }
    
    .unique-extra-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* LLM SECTION */
    .llm-section {
        padding: 40px 15px;
    }
    
    .llm-title {
        font-size: 26px;
        text-align: center;
    }
    
    .llm-subtitle {
        font-size: 15px;
        text-align: center;
        padding: 0 10px;
    }
    
    .llm-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .llm-card {
        padding: 20px;
        text-align: center;
    }
    
    /* PRODUCT SECTION */
    .product-section {
        padding: 40px 15px;
    }
    
    .product-main-heading {
        font-size: 24px;
        text-align: center;
        padding: 0 10px;
    }
    
    .product-tab-row {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-tab {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-content-area {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-image-box,
    .product-text-box {
        width: 100%;
    }
    
    .product-title {
        font-size: 22px;
        text-align: center;
    }
    
    .product-buttons {
        flex-direction: column;
        gap: 15px;
        margin-left: 1px;
    }

    
    .btn-know-more,
    .btn-chat {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* DIGITAL MARKETING SECTION */
    .dm-section {
        padding: 40px 15px;
    }
    
    .dm-heading {
        font-size: 24px;
        text-align: center;
        padding: 0 15px;
    }
    
    .dm-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .dm-card {
        padding: 20px;
    }
    
    /* PORTFOLIO SECTION */
    .portfolio-section {
        padding: 40px 15px;
    }
    
    .portfolio-heading {
        font-size: 24px;
        text-align: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .portfolio-title {
        font-size: 20px;
        text-align: center;
    }
    
    .portfolio-btn-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .portfolio-btn {
        width: 100%;
        text-align: center;
    }
    
    /* CAREER SECTION */
    .career-section {
        padding: 40px 15px;
        text-align: center;
    }
    
    .career-title {
        font-size: 24px;
    }
    
    .career-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .career-btn {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        display: block;
    }
    
    /* REVIEW SECTION */
    .review-section {
        padding: 40px 15px;
    }
    
    .review-heading {
        font-size: 24px;
        text-align: center;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .review-card {
        padding: 20px;
        text-align: center;
    }
    
    /* CONTACT CTA */
    .contact-cta-pro {
        padding: 40px 15px;
        text-align: center;
    }
    
    .cta-pro-title {
        font-size: 24px;
    }
    
    .cta-pro-subtext {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .cta-pro-actions {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .cta-pro-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-pro-callbox {
        width: 100%;
        max-width: 300px;
    }
    
    /* BELOW BANNER SECTION */
    .below-banner-section {
        padding: 30px 15px;
    }
    
    .card-slider {
        gap: 15px;
        padding: 15px 10px;
    }
    
    .brand-card {
        min-width: 280px;
        height: 160px;
    }
    
    .highlight-box {
        font-size: 16px;
        padding: 12px 20px;
        width: 90%;
        margin: 25px auto;
    }
    
    .text-slider-container {
        padding: 15px 0;
    }
    
    .text-slider h3 {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* FOOTER */
    .wdm-footer-red {
        padding: 40px 15px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        width: 150px;
        margin: 0 auto 20px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    .form-col {
        max-width: 350px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .form-col input,
    .form-col textarea,
    .form-col select {
        width: 100%;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .quote-btn {
        width: 100%;
        margin-top: 15px;
        margin-left: -2px;
    }
    
    .payment-banner {
        width: 200px;
        margin: 10px auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
}

/* ==========================
   SMALL MOBILE (480px and below)
   ========================== */
@media (max-width: 480px) {
    /* Further size reductions */
    .container {
        padding: 0 10px;
    }
    
    .top-strip p {
        font-size: 11px;
    }
    
    .top-right a {
        font-size: 11px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-slider {
        height: 200px;
        margin-top: -20px;
    }
    
    /* Font size reductions */
    .pp-title,
    .ai-title,
    .llm-title,
    .product-main-heading,
    .dm-heading,
    .portfolio-heading,
    .review-heading,
    .cta-pro-title,
    .career-title {
        font-size: 22px;
        margin-top: 54px;
        margin-bottom: 20px;
    }
    
    /* Card adjustments */
    .pp-card,
    .ai-card,
    .llm-card,
    .dm-card
    .review-card {
        padding: 15px;
    }
    
    /* Single column layouts */
    .unique-domain-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Button adjustments */
    .btn-primary,
    .btn-outline,
    .ai-btn,
    .unique-search-btn,
    .dm-btn,
    .portfolio-btn,
    .career-btn,
    .cta-pro-btn,
    .btn-know-more,
    .btn-chat {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Brand cards */
    .brand-card {
        min-width: 250px;
        height: 140px;
    }
    
    .highlight-box {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .text-slider h3 {
        font-size: 12px;
    }
    
    /* Section padding reduction */
    .product-previews,
    .ai-agent-section,
    .llm-section,
    .product-section,
    .dm-section,
    .portfolio-section,
    .career-section,
    .review-section,
    .contact-cta-pro,
    .below-banner-section,
    .unique-domain-section {
        padding: 30px 10px;
        margin-bottom: 0px;
    }
    
    .payment-banner {
        width: 180px;
    }
}

/* ==========================
   EXTRA SMALL MOBILE (320px and below)
   ========================== */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .top-strip p {
        font-size: 10px;
    }
    
    .top-right {
        gap: 5px;
    }
    
    .top-right a {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-slider {
        height: 180px;
    }
    
    /* Force single column for all grids */
    .dm-grid,
    .portfolio-grid,
    
    .ai-features,
    .llm-features,
    .unique-domain-cards {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    
    .brand-card {
        min-width: 220px;
        height: 120px;
    }
    
    .highlight-box {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .text-slider h3 {
        font-size: 11px;
    }
    
    /* Hide non-essential line breaks */
    .top-strip p br,
    .pp-title br {
        display: none;
    }
}

/* ==========================
   TABLET LANDSCAPE (769px to 1024px)
   ========================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 95%;
    }
    
  
    .hero-slider {
        height: 350px;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 15px;
    }
    
    .pp-title {
        font-size: 32px;
    }
    
    .pp-service-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-features,
    .llm-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dm-grid,
    .digital-marketing-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .hamburger {
        display: none;
    }
}

/* ==========================
   MOBILE LANDSCAPE OPTIMIZATION
   ========================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 200px;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
    }
    
    .brand-card {
        height: 120px;
    }
    
    /* Reduce vertical padding */
    section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    /* Compact cards */
    .pp-card,
    .ai-card,
    .llm-card {
        padding: 15px;
        min-height: auto;
    }
}

/* ==========================
   TOUCH DEVICE OPTIMIZATIONS
   ========================== */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets */
    .nav-menu a,
    .nav-menu .dropdown,
    .btn-primary,
    .btn-outline,
    .ai-btn,
    .dm-btn,
    .portfolio-btn,
    .career-btn,
    .cta-pro-btn,
    
    .product-tab,
    .unique-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    
    }
    
    /* Touch scrolling */
    .product-tab-row,
    .card-slider {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Touch feedback */
    .btn-primary:active,
    .btn-outline:active,
    .ai-btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Remove hover effects */
    .pp-card:hover,
    .ai-card:hover,
    .llm-card:hover,
    .dm-card:hover {
        transform: none;
    }
    
    .pp-card:active,
    .ai-card:active,
    .llm-card:active {
        transform: scale(0.98);
    }
}

/* ==========================
   HIGH DPI SCREENS (Retina)
   ========================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ==========================
   DARK MODE SUPPORT (Optional)
   ========================== */
@media (prefers-color-scheme: dark) {
    body {
        background: #121212;
        color: #ffffff;
    }
    
    .main-header {
        background: #1e1e1e;
    }
    
    .nav-menu {
        background: #1e1e1e;
    }
}

/* ==========================
   PRINT STYLES
   ========================== */
@media print {
    .top-strip,
    .main-header,
    .hamburger,
    .slider-nav,
    .dots,
    .footer-bottom,
    .social-icons,
    .quote-btn,
    .card-slider,
    .highlight-box,
    .text-slider-container,
    .nav-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    /* Page breaks */
    section {
        page-break-inside: avoid;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ==========================
   ANIMATION REDUCTION FOR PREFERS-REDUCED-MOTION
   ========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================
   UTILITY CLASSES FOR MOBILE
   ========================== */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Hide scrollbar but keep functionality */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ==========================
   FIX FOR IOS SAFARI 100VH BUG
   ========================== */
@supports (-webkit-touch-callout: none) {
    .nav-menu {
        height: -webkit-fill-available;
    }
}
/* ==========================
   PRODUCT SECTION TEXT ALIGNMENT
   ========================== */

/* Tablet & Mobile (768px and below) */
@media (max-width: 768px) {
    .product-text-box {
        text-align: center;
    }
    
    .product-text-box p {
        font-size: 15px;
        color: #e5eaff;
        line-height: 1.6;
        margin-bottom: 15px;
        /* Changed from justify for better readability */
        text-align: justify; /* Optional: Use if you want justified text */
        padding: 0 5px;
    }
    
    .product-title {
        text-align: center;
        margin-bottom: 20px;
        color: #ffffff;
        font-size: 22px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .product-text-box p {
        font-size: 14px;
        line-height: 1.5;
       /* Better for small screens than justified */
        padding: 0;
        margin-bottom: 12px;
    }
    
    .product-title {
        font-size: 20px;
        line-height: 1.3;
        padding: 0 10px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .product-text-box p {
        font-size: 13px;
        line-height: 1.4;
        hyphens: auto; /* Enable hyphenation for better text flow */
        word-break: break-word; /* Prevent long words from breaking layout */
    }
    
    .product-title {
        font-size: 18px;
        hyphens: auto;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .product-text-box p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .product-text-box {
        max-height: 300px;
        overflow-y: auto;
        padding-right: 5px;
    }
}

/* Touch Device Text Optimization */
@media (hover: none) and (pointer: coarse) {
    .product-text-box p {
        font-size: 15px; /* Slightly larger for touch readability */
        line-height: 1.7; /* More spacing for touch */
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-text-box p {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .product-text-box p {
        color: #f0f0f0; /* Lighter text for dark mode */
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .product-text-box {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .product-text-box p {
        color: #000000; /* Black for printing */
        font-size: 12pt;
        line-height: 1.5;
        text-align: justify;
    }
    
    .product-title {
        color: #000000;
    }
}
/* Home page css end - index page */


.product-content {
    display: none;
}

.product-content.active {
    display: flex; /* or block */
}

.wdm-footer-red {
    margin-bottom: 0;
    padding-bottom: 0;
}

.wdm-footer-red .contact-col p,
.wdm-footer-red .contact-col p a,
.wdm-footer-red .contact-col p i {
    color: #ffffff;
}

/* Footer Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Individual Brand Colors */
.social-icons a:nth-child(1) { /* Facebook */
    background-color: #1877f2;
}

.social-icons a:nth-child(2) { /* X / Twitter */
    background-color: #000000;
}

.social-icons a:nth-child(3) { /* Instagram */
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icons a:nth-child(4) { /* YouTube */
    background-color: #ff0000;
}

.social-icons a:nth-child(5) { /* LinkedIn */
    background-color: #0a66c2;
}

/* Hover Effect */
.social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    opacity: 0.95;
}

/* Space between Quick Contact section and Footer Bottom */
.wdm-footer-red {
    padding-bottom: 40px; /* creates gap above footer-bottom */
}

/* Footer bottom spacing */
.footer-bottom {
    margin-top: 30px; /* pushes footer-bottom down */
}

