        .main-slider {
            position: relative;
width: 100%;
min-height: 80vh;
display: flex;
align-items: center;
overflow: hidden;
background: #000; /* Black Background */
}

.slider-wrapper { width: 100%; }

.slide {
    display: none;
    width: 100%;
    padding: 100px 8%;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active { display: block; }

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ===== Green Gradient Heading ===== */
.text-area h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #00ff88, #00aa55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-area p {
    font-size: 1.1rem;
    color: #b5ffda; /* Soft Green Text */
    margin-bottom: 25px;
}

.slide-features { list-style: none; margin-bottom: 30px; }
.slide-features li { margin-bottom: 10px; font-size: 14px; color: #eafff5; }

.slide-features i {
    color: #00ff88; /* Bright Green Icon */
    margin-right: 10px;
}

/* ===== Button Green + Black ===== */
.btn-quote {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00ff88, #00aa55);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-quote:hover {
    background: #000;
    color: #00ff88;
    border: 1px solid #00ff88;
    transform: scale(1.05);
}

/* ===== Image Glow Green ===== */
.image-area img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-20px); } 
}

/* ===== Mobile Responsive ===== */
@media (max-width: 992px) {
    .slide-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .text-area h1 { font-size: 2.2rem; }
    .image-area { order: -1; }
    .image-area img { max-width: 300px; }
}
        /* Section Styling */
.about-section {
    padding: 100px 8%;
    background: transparent; /* डॉट्स दिखने के लिए पारदर्शी */
    color: #70cac3;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: linear-gradient(135deg, #00d2ff, #0072ff);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.experience-badge span { font-size: 28px; font-weight: 800; display: block; }
.experience-badge p { font-size: 12px; margin: 0; }

/* Content Styling */
.sub-title {
    color: #00d2ff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: #70cac3;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item i { color: #00d2ff; }

.about-btn {
    padding: 15px 35px;
    background: #00d2ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.about-btn:hover {
    background: #fff;
    color: #0072ff;
    transform: translateY(-5px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .main-title { font-size: 2rem; }
    
    .about-features { justify-content: center; }

    .experience-badge {
        right: 20px;
        bottom: -10px;
    }
}

@media (max-width: 600px) {
    .about-section { padding: 60px 5%; }
    .about-features { flex-direction: column; align-items: center; }
    .feature-item { width: 100%; justify-content: center; }
}

.stats-section {
        padding: 80px 8%;
        background: transparent;
        position: relative;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    /* Glassmorphism Stat Cards */
    .stat-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 40px 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 210, 255, 0.1);
        backdrop-filter: blur(10px);
        transition: 0.4s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        border-color: #00d2ff;
        background: rgba(0, 210, 255, 0.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .stat-icon {
        font-size: 40px;
        color: #00d2ff;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .stat-card p {
        color: #aaa;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* --- Responsive Magic --- */
    @media (max-width: 1024px) {
        .stats-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .stats-section {
            padding: 50px 5%;
        }
        .stats-container {
            grid-template-columns: 1fr; /* मोबाइल पर सिंगल कॉलम */
        }
        .stat-card {
            padding: 30px 15px;
        }
    }

    .why-choose-us {
        padding: 100px 8%;
        background: transparent;
        color: #fff;
    }

    .section-header {
        text-align: left;
        margin-bottom: 60px;
    }

    .main-title {
        font-size: 3rem;
        font-weight: 800;
        color: #00d2ff;
        margin-bottom: 10px;
    }

    .sub-title {
        color: #aaa;
        font-size: 1.2rem;
    }

    /* Grid Setup */
    .choose-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* Card Styling */
    .choose-card {
        background: rgba(255, 255, 255, 0.03);
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .choose-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.07);
        border-color: #00d2ff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    /* Icons */
    .card-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 193, 7, 0.1);
        color: #ffc107;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        border-radius: 50%;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .blue-icon { background: rgba(0, 210, 255, 0.1); color: #00d2ff; border-color: rgba(0, 210, 255, 0.3); }
    .purple-icon { background: rgba(163, 51, 255, 0.1); color: #a333ff; border-color: rgba(163, 51, 255, 0.3); }

    .choose-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .choose-card p {
        color: #aaa;
        font-size: 14px;
        line-height: 1.6;
    }

    /* --- Responsive Magic --- */
    @media (max-width: 1024px) {
        .choose-grid { grid-template-columns: repeat(2, 1fr); }
        .main-title { font-size: 2.5rem; }
    }

    @media (max-width: 768px) {
        .choose-grid { grid-template-columns: 1fr; }
        .why-choose-us { padding: 60px 5%; }
        .section-header { text-align: center; }
        .main-title { font-size: 2rem; }
    }


    .speciality-section {
        padding: 80px 8%;
        text-align: center;
    }

    .speciality-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
        color: #222;
    }

    .header-line {
        width: 80px;
        height: 3px;
        background: #fbc02d;
        margin: 0 auto 50px;
        border-radius: 2px;
    }

    /* Grid Layout */
    .speciality-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Box Styling */
    .spec-box {
        padding: 40px 20px;
        border-radius: 15px;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 250px;
        cursor: pointer;
    }

    .spec-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .spec-img img {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
    }

    .spec-box h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin: 0;
    }

    /* Background Colors from Image */
    .bg-orange { background-color: #ffcc80; color: #e65100; }
    .bg-teal { background-color: #80cbc4; color: #004d40; }
    .bg-black { background-color: #1a1a1a; }
    .bg-blue { background-color: #42a5f5; }

    .text-white { color: #fff !important; }

    /* --- Responsive Queries --- */
    @media (max-width: 1024px) {
        .speciality-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .speciality-grid { grid-template-columns: 1fr; }
        .speciality-section { padding: 50px 5%; }
        .speciality-header h2 { font-size: 2rem; }
    }

    .client-slider-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .slider-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .logo-track {
        display: flex;
        gap: 20px;
        /* ऑटोमैटिक स्क्रॉल एनीमेशन */
        animation: scroll 20s linear infinite;
        width: calc(250px * 8); /* लोगो की संख्या के अनुसार */
    }

    .logo-item {
        flex: 0 0 250px;
    }

    .logo-card {
        background: #fff;
        border: 2px solid #70cac3; /* इमेज की तरह ऑरेंज बॉर्डर */
        border-radius: 15px;
        padding: 20px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .logo-card img {
        max-width: 100%;
        max-height: 80px;
        filter: grayscale(100%); /* प्रोफेशनल लुक के लिए */
        transition: 0.3s;
    }

    .logo-card:hover {
        transform: scale(1.05);
        border-color: #ff3300;
        box-shadow: 0 10px 25px rgba(255,102,0,0.2);
    }

    .logo-card:hover img {
        filter: grayscale(0%);
    }

    /* Navigation Buttons Styling */
    .slider-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ff6600;
        color: #fff;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .prev-btn { left: 0; }
    .next-btn { right: 0; }

    /* Infinite Scroll Animation */
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 4)); }
    }

    /* Stop animation on hover */
    .logo-track:hover {
        animation-play-state: paused;
    }

    /* --- Responsive Queries --- */
    @media (max-width: 768px) {
        .logo-item { flex: 0 0 180px; }
        .logo-card { height: 100px; }
        .slider-container { padding: 0 20px; }
        .slider-nav { display: none; } /* मोबाइल पर बटन छुपा दें */
    }


    .faq-section{
    padding:60px 20px;
}

.faq-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#1e2f97;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    overflow:hidden;
    transition:0.4s ease;
}

.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.faq-question{
    padding:20px;
    cursor:pointer;
    font-weight:600;
    font-size:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#1e2f97;
}

.faq-question span{
    font-size:22px;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    padding:0 20px;
    background:#f9fbff;
}

.faq-answer p{
    padding:15px 0;
    font-size:15px;
    line-height:1.6;
    color:#444;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* Responsive */
@media(max-width:768px){
    .faq-title{
        font-size:24px;
    }
    .faq-question{
        font-size:16px;
    }
}

/* ===== Impact Section ===== */

.impact-section{
    padding:80px 20px;
    color:#fff;
    text-align:center;
}

.impact-container{
    max-width:1100px;
    margin:auto;
}

.impact-heading{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.impact-subheading{
    font-size:16px;
    margin-bottom:50px;
    opacity:0.9;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.impact-box{
    background:rgba(255,255,255,0.1);
    padding:40px 20px;
    border-radius:15px;
    transition:0.4s;
    backdrop-filter:blur(6px);
}

.impact-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.2);
}

.impact-icon{
    font-size:40px;
    margin-bottom:15px;
}

.impact-box h3{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.impact-box p{
    font-size:15px;
    opacity:0.9;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .impact-grid{
        grid-template-columns:1fr;
    }

    .impact-heading{
        font-size:24px;
    }
}

/* ===== Google Testimonial Section ===== */

.google-testimonial-section{
    padding:80px 20px;
}

.testimonial-container{
    max-width:1200px;
    margin:auto;
}

.testimonial-heading{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:50px;
    color:#1e2f97;
}

.google-icon{
    width:90px;
    vertical-align:middle;
    margin-right:10px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border: 2px solid #70cac3;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.client-img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-stars{
    color:#FFD700;
    font-size:18px;
    margin-bottom:10px;
}

.testimonial-text{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-heading{
        font-size:24px;
    }
}

/* ===== Digital Marketing Growth Section ===== */

.dm-growth-section{
    padding:90px 20px;
    text-align:center;
}

.dm-container{
    max-width:1200px;
    margin:auto;
}

.dm-heading{
    font-size:36px;
    font-weight:700;
    color: white;
    margin-bottom:15px;
}

.dm-subheading{
    font-size:16px;
    color:#70cac3;
    margin-bottom:60px;
}

.dm-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.dm-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.07);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.dm-card::before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#1e2f97,#ff9800);
}

.dm-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.dm-icon{
    font-size:45px;
    margin-bottom:20px;
}

.dm-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#70cac3;
}

.dm-card p{
    font-size:14px;
    color: white;
    line-height:1.6;
}

.dm-cta{
    margin-top:60px;
}

.dm-btn{
    padding:14px 35px;
    background: #70cac3;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
}

.dm-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .dm-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .dm-grid{
        grid-template-columns:1fr;
    }

    .dm-heading{
        font-size:26px;
    }

    .dm-subheading{
        font-size:14px;
    }
}

/* ===== Case Study Section ===== */

.case-study-section{
    padding:90px 20px;
    background:#ffffff;
    text-align:center;
}

.case-container{
    max-width:1200px;
    margin:auto;
}

.case-heading{
    font-size:36px;
    font-weight:700;
    color:#1e2f97;
    margin-bottom:15px;
}

.case-subheading{
    font-size:16px;
    color:#555;
    margin-bottom:60px;
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.case-card{
    background:#f4f7fc;
    padding:40px 25px;
    border-radius:20px;
    position:relative;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.case-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.case-badge{
    position:absolute;
    top:-15px;
    left:20px;
    background:linear-gradient(135deg,#1e2f97,#ff9800);
    color:#fff;
    padding:6px 15px;
    font-size:13px;
    border-radius:30px;
    font-weight:600;
}

.case-card h3{
    margin-top:20px;
    font-size:20px;
    color:#1e2f97;
    margin-bottom:15px;
}

.case-card p{
    font-size:14px;
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

.case-stats{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.case-stats span{
    background:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.case-cta{
    margin-top:60px;
}

.case-btn{
    padding:14px 35px;
    background:linear-gradient(135deg,#1e2f97,#ff9800);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
}

.case-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .case-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .case-grid{
        grid-template-columns:1fr;
    }

    .case-heading{
        font-size:26px;
    }

    .case-subheading{
        font-size:14px;
    }
   }


  .about-hero{
    background:linear-gradient(135deg,black,#70cac3);
    color:#fff;
    text-align:center;
    padding:120px 20px;
  }

.about-hero h1{
    font-size:48px;
    margin-bottom:15px;
}

.about-hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* ===== ABOUT DYNAMIC SECTION ===== */

.about-section{
    padding:80px 20px;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:300px;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.about-content{
    flex:1;
    min-width:300px;
}

.about-content h2{
    font-size:32px;
    margin-bottom:20px;
    color:#70cac3;
}

.about-content p{
    font-size:15px;
    color:#70cac3;
    line-height:1.7;
}

/* ===== Mission Vision ===== */

.mv-section{
    padding:80px 20px;
}

.mv-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mv-box{
    background:#f4f7fc;
    border: 2px solid #70cac3;
    padding:40px;
    border-radius:20px;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.mv-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.mv-box h3{
    font-size:24px;
    margin-bottom:15px;
    color:#1e2f97;
}

.mv-box p{
    font-size:15px;
    color:#555;
    line-height:1.7;
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .about-container{
        flex-direction:column;
    }

    .mv-container{
        grid-template-columns:1fr;
    }

    .about-hero h1{
        font-size:32px;
    }

    .about-hero p{
        font-size:14px;
    }
}


/* ===== Why Choose Us Section ===== */

.why-section{
    padding:90px 20px;
    background:#f4f7fc;
    text-align:center;
}

.why-container{
    max-width:1200px;
    margin:auto;
}

.why-heading{
    font-size:36px;
    font-weight:700;
    color:#1e2f97;
    margin-bottom:15px;
}

.why-subheading{
    font-size:16px;
    color:#555;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.07);
    transition:0.4s ease;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.why-icon{
    font-size:45px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#1e2f97;
}

.why-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

.why-cta{
    margin-top:60px;
}

.why-btn{
    padding:14px 35px;
    background:linear-gradient(135deg,#1e2f97,#ff9800);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
}

.why-btn:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */

@media(max-width:992px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-heading{
        font-size:26px;
    }

    .why-subheading{
        font-size:14px;
    }
}

/* ===== Common Section Styling ===== */
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #70cac3;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 50px;
}

/* ===== Process Section ===== */
.process-section {
    padding: 80px 20px;
    background: #0f172a;
}

.process-container {
    max-width: 1200px;
    margin: auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-card {
    background: #111827;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(112, 202, 195, 0.2);
    position: absolute;
    top: 15px;
    right: 20px;
}

.process-card h3 {
    color: #fff;
    margin-bottom: 15px;
}

.process-card p {
    color: #ccc;
    font-size: 14px;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #0072ff, #00d2ff);
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-box h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-box p {
    color: #f1f1f1;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 80px 20px;
    background: #0a0e17;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    color: #70cac3;
    margin-bottom: 15px;
}

.final-cta p {
    color: #ccc;
    margin-bottom: 30px;
}

.cta-btn {
    background: linear-gradient(45deg, #00d2ff, #0072ff);
    padding: 14px 35px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 210, 255, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .process-grid,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}


.seo-services-section .section-header{
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}
.seo-services-section .section-header h2{
    font-size: 36px;
    color: #111827;
    margin-bottom: 15px;
}
.seo-services-section .section-header p{
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Grid */
.seo-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.seo-card{
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.seo-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(112,202,195,0.2);
}

.seo-image img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.seo-content{
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seo-content h3{
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
}

.seo-content p{
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.seo-btn{
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: #70cac3;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

.seo-btn:hover{
    background: #00d2ff;
    color: #000;
}
@media(max-width:768px){
    .seo-services-section{padding: 50px 5%;}
    .seo-card img{height:180px;}
}

