    /* Section Background and Title */
.our-clients {
  background-image: url('assets/img/code.gif'); /* image ka path */
  text-align: center;
  padding: 20px 10px;
 
}

.our-clients h2 {
  font-size: 35px;
  line-height: 47px;

  font-weight: 600;
  color: #081c59; /* dark navy */
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* Client Grid Layout */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;

  
}

/* Client Box */
.client {
  background: #fff;
  border: 2px solid #d6eaff; /* light blue border */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 10px;
  width: 167px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  
  
}

.client:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Logo Styling */
.client img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .client-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
      max-width: 800px;
       padding-left: 5px;
  padding-right: 5px;
  }
  .client {
    width: 80px;
    height: 60px;
  }
}



    
 





        /* Parallax background */
    .clients-section {
      background-image: url('https://picsum.photos/1920/1080?blur=3'); /* apni img daalna */
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      padding: 80px 0;
      color: #fff;
    }

    .clients-section h2 {
      font-weight: bold;
      margin-bottom: 30px;
      font-size: 40px;
       color: #fff;
      
    }

    .filter-btns {
      margin-bottom: 40px;
    }

    .filter-btns .btn {
      margin: 3px;
    }

    .client-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      padding: 20px;
      margin-bottom: 30px;
      overflow: hidden;
    }

    .client-card img {
      max-width: 100%;
      max-height: 100px;
      object-fit: contain;
      display: block;
      margin: auto;
      z-index: 1;
      position: relative;
    }

    /* Hover Overlay */
    .overlay {
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 140, 0, 0.9); /* Orange */
      display: flex;
      justify-content: center;
      align-items: center;
      transition: left 1s ease;
      z-index: 2;
    }

    .overlay a {
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      text-decoration: none;
      background: rgba(0,0,0,0.3);
      padding: 8px 15px;
      border-radius: 5px;
    }

    .client-card:hover .overlay {
      left: 0;
    }
    


/* ✅ 768px tak (tablet & mobile) ke liye */
@media (max-width: 768px) {
  .client-card{
    height: 60px;
    width: 150px;
    /* thoda chhota box */
  }
  .logo-box img {
    max-height: 50px;
    width: 140px;
    
    /* logo size control */
  }
  
}
.tgmenu__navbar-wrap > ul > li.active a {
    display: none;
}








/* ---------- ABOUR AREA ---------- */
    
          .about-hero{
  background:linear-gradient(135deg,#f6f9ff,#eef3ff);
  padding:80px 20px;
  font-family:'Segoe UI',sans-serif;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}

/* Left */
.about-content h1{
  font-size:44px;
  color:#0b0b45;
  margin-bottom:20px;
}

.about-content h1 span{
  color:#ff2f6d;
}

.about-content p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:30px;
}

.about-content h3{
  font-size:22px;
  color:#0b0b45;
  margin-bottom:20px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 30px;
  border-radius:50px;
  background:linear-gradient(135deg,#ff2f6d,#ff7a18);
  color:#fff;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(255,47,109,0.4);
}

/* Right Stats */
.about-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

.stat-card{
  background:#fff;
  padding:30px 20px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.35s;
}

.stat-card:hover{
  transform:translateY(-6px);
}

.stat-card i{
  font-size:36px;
  color:#ff2f6d;
  margin-bottom:15px;
}

.stat-card h2{
  font-size:32px;
  color:#0b0b45;
  margin-bottom:6px;
}

.stat-card span{
  font-size:14px;
  color:#666;
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .about-content h1{
    font-size:30px;
  }

  .about-stats{
    grid-template-columns:1fr;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 68px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-8px);}
  60% {transform: translateY(-4px);}
}

/* Optional Tooltip */
.whatsapp-float::after {
  content: "WhatsApp Now";
  position: absolute;
  right: 70px;
  background: #25D366;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.whatsapp-float:hover::after {
  opacity: 1;
}


/* --- Portfolio Section CSS --- */

.portfolio-section {
    padding: 60px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;  
    background-color: #fff;
    overflow-x: hidden;
}

/* Background Decoration Circle */
.portfolio-section::before {
    content: '';
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #eef2ff; /* Light Blue Circle */
    z-index: 0;
    pointer-events: none;
}

.portfolio-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.portfolio-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.portfolio-sub-heading {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Wrapper */
.portfolio-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.portfolio-slider-window {
    overflow: hidden;
    width: 100%;
}

.portfolio-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Card Styling */
.portfolio-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 15px;
    flex: 0 0 calc(33.333% - 14px); /* Desktop: 3 items */
    text-align: center;
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
}

.portfolio-card-image {
    width: 100%;
    height: 220px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.05);
}

.portfolio-link {
    display: block;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.portfolio-visit-btn {
    color: #0056b3;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.portfolio-visit-btn:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.portfolio-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #555;
    font-size: 1.2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-nav-btn:hover {
    background-color: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

.portfolio-nav-btn.prev-btn { left: 0; }
.portfolio-nav-btn.next-btn { right: 0; }

/* Main Bottom Button */
.portfolio-explore-btn {
    background-color: #2b59d6;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.portfolio-explore-btn:hover {
    background-color: #1a3fb0;
}

/* --- Mobile CSS Fix --- */
@media (max-width: 600px) {
    .portfolio-card {
        flex: 0 0 100%; 
    }
    
    .portfolio-slider-wrapper {
        padding: 0 10px;
    }

    .portfolio-nav-btn {
        display: flex;
        width: 35px;  
        height: 35px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .portfolio-nav-btn.prev-btn { left: 5px; }
    .portfolio-nav-btn.next-btn { right: 5px; }
}  




/* --- 1. Overlay & Fonts --- */
   /* --- 1. THE SMOOTH OVERLAY --- */
    .gp-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 5, 20, 0.85); /* Deep Black-Blue */
        backdrop-filter: blur(15px); /* Strong Blur */
        z-index: 9999999;
        display: flex; justify-content: center; align-items: center;
        
        /* Animation Setup */
        opacity: 0; 
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    /* Active State (Open) */
    .gp-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    /* --- 2. THE CARD DESIGN --- */
    .gp-card {
        width: 100%; max-width: 450px;
        background: #ffffff;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        
        /* Initial State for Animation */
        transform: scale(0.9) translateY(30px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy Premium Feel */
    }

    /* When Open */
    .gp-overlay.open .gp-card {
        transform: scale(1) translateY(0);
        opacity: 1;
    }

    /* --- 3. DECORATION & HEADER --- */
    /* Glowing Top Bar */
    .gp-glow-effect {
        position: absolute; top: 0; left: 0; width: 100%; height: 6px;
        background: linear-gradient(90deg, #001870 0%, #ff6b35 100%);
        z-index: 2;
    }

    /* Subtle Background Pattern inside Card */
    .gp-content {
        padding: 40px;
        background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
        background-size: 20px 20px; /* Dot Pattern */
        background-color: #fff;
    }

    .gp-header h3 {
        margin: 0; font-family: 'Space Grotesk', sans-serif;
        font-size: 28px; font-weight: 700; color: #001870;
        letter-spacing: -1px;
    }
    .gp-header p {
        margin: 5px 0 20px; color: #666; font-size: 14px; font-weight: 500;
    }
    
    .gp-line {
        width: 40px; height: 3px; background: #ff6b35; margin-bottom: 30px;
    }

    /* --- 4. FORM ELEMENTS --- */
    .gp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; } /* Name & Mobile Side-by-Side */
    
    .gp-group { margin-bottom: 20px; position: relative; }
    
    .gp-group label {
        display: block; font-size: 10px; font-weight: 700; color: #001870;
        margin-bottom: 8px; letter-spacing: 1px;
    }

    .gp-input {
        width: 100%; padding: 12px 0;
        border: none; border-bottom: 2px solid #ddd;
        background: transparent;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px; color: #333; font-weight: 600;
        transition: 0.3s; outline: none; border-radius: 0;
    }

    .gp-input:focus {
        border-color: #ff6b35; /* Orange on Focus */
    }

    .gp-select-wrapper { position: relative; }
    .gp-arrow { position: absolute; right: 0; top: 15px; font-size: 12px; color: #aaa; pointer-events: none; }

    /* --- 5. BUTTON --- */
    .gp-btn {
        width: 100%; padding: 18px; border: none;
        background: #001870; color: white;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px; font-weight: 700; cursor: pointer;
        display: flex; justify-content: space-between; align-items: center;
        margin-top: 10px; transition: 0.4s;
    }

    .gp-btn:hover {
        background: #ff6b35; /* Orange Hover */
        padding-right: 25px; /* Arrow movement */
    }

    /* --- 6. CLOSE BUTTON --- */
    .gp-close-btn {
        position: absolute; top: 20px; right: 20px;
        width: 35px; height: 35px;
        background: #f0f0f0; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #333; cursor: pointer; transition: 0.3s; z-index: 10;
    }
    .gp-close-btn:hover { background: #ff6b35; color: white; transform: rotate(90deg); }

    /* Mobile Adjustment */
    @media (max-width: 480px) {
        .gp-grid { grid-template-columns: 1fr; } /* Stack on mobile */
        .gp-card { width: 90%; }
        .gp-content { padding: 30px 20px; }
    }
    
    
   /* HEADER CODE END */
   
   
     /* MOBILE DEVELOPMENT START */
     
     .app-features-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 Boxes per row */
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        /* --- Updated Class Name: service-card -> app-feature-box --- */
        .app-feature-box {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid transparent;
            background-clip: padding-box;
        }

        /* Gradient Border on Top */
        .app-feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--primary-gradient);
        }

        .app-feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .icon-box i {
            color: white;
            font-size: 28px;
        }

        /* Heading inside the new class */
        .app-feature-box h3 {
            color: var(--text-dark);
            font-size: 1.25rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Paragraph inside the new class */
        .app-feature-box p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            border-top: 1px dashed #e5e7eb;
            padding-top: 20px;
        }

        .tag {
            background: var(--primary-gradient);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Responsive Design Updated */
        @media (max-width: 992px) {
            .app-features-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .app-features-wrapper {
                grid-template-columns: 1fr;
            }
        }
     
     
        /* MOBILE DEVELOPMENT END */
   
   
   /* --- 2. MAIN CONTAINER --- */
        .dd-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex; /* Flexbox: Ring Left, Slider Right */
            align-items: center;
            justify-content: center;
            padding: 20px;
            gap: 0; /* No Gap between Ring and Cards */
        }

        /* --- 3. LEFT SIDE: RING --- */
        .dd-visual {
            position: relative;
            width: 400px;
            height: 400px;
            flex-shrink: 0;
            z-index: 10; /* Ring cards ke upar rahegi */
            margin-right: -50px; /* Card ke upar overlap karane ke liye */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dd-ring-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Gol Ghumne wali Animation */
            animation: rotateRing 30s linear infinite;
        }

        .dd-logo-center {
            position: absolute;
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            z-index: 11;
        }
        .dd-logo-center img { width: 80%; }

        @keyframes rotateRing {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* --- 4. RIGHT SIDE: SLIDER --- */
        .dd-slider-section {
            width: 100%; /* Bachi hui jagah lega */
            overflow: hidden; /* Extra cards hide karega */
            padding: 40px 0 40px 60px; /* Left padding taaki ring ke neeche se card nikle */
        }

        .dd-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease-in-out; /* Smooth Slide */
        }

        /* --- 5. CARDS DESIGN --- */
        .dd-card {
            /* Desktop par 3 cards dikhane ka formula */
            min-width: 280px; 
            max-width: 300px;
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            opacity: 0.6; /* Inactive cards thode dhundhle */
            transform: scale(0.9); /* Inactive cards thode chote */
            transition: all 0.4s ease;
            border: 1px solid #eee;
        }

        /* Icon Style */
        .dd-card i { font-size: 24px; color: #555; margin-bottom: 10px; display: block; }
        .dd-card h3 { margin-bottom: 5px; color: #333; font-size: 18px; }
        .dd-card p { font-size: 14px; color: #666; line-height: 1.4; }

        /* --- ACTIVE STATE (BLUE) --- */
        .dd-card.active-card {
            opacity: 1;
            transform: scale(1.05); /* Active card bada hoga */
            background: linear-gradient(135deg, #007bff, #0056b3); /* Blue Background */
            color: white;
            box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
            border: none;
        }

        /* Active hone par text color white */
        .dd-card.active-card h3,
        .dd-card.active-card p,
        .dd-card.active-card i {
            color: white;
        }

        /* --- 6. RESPONSIVE (MOBILE) --- */
        @media (max-width: 768px) {
            .dd-wrapper {
                flex-direction: row; /* Mobile pe bhi side-by-side */
                align-items: flex-start;
                padding: 10px;
                overflow: hidden;
            }

            .dd-visual {
                width: 120px; /* Ring choti ho gayi */
                height: 120px;
                margin-right: -20px; /* Gap kam */
                margin-top: 20px;
            }

            .dd-logo-center { width: 40px; height: 40px; }

            .dd-slider-section {
                padding-left: 25px; /* Thoda adjust */
                width: calc(100% - 100px);
            }

            .dd-card {
                min-width: 220px; /* Card size chota */
                padding: 15px;
            }
        }


 