/* ==========================================================
   Search Engine Visibility & Organic Growth
   Premium Responsive CSS
   Part 1 - Section, Container, Heading & Grid
   Designed for RajatAdhikari.in
========================================================== */


/*=========================================
  Root Section
=========================================*/

.seo-growth-section{
    position:relative;
    width:100%;
    padding:120px 20px;
    background:#ffffff;
    overflow:hidden;
    z-index:1;
}


/*=========================================
  Decorative Background
=========================================*/

.seo-growth-section::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(37,99,235,.05) 0%,
    rgba(255,255,255,0) 75%);
    pointer-events:none;
}

.seo-growth-section::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(6,182,212,.05) 0%,
    rgba(255,255,255,0) 75%);
    pointer-events:none;
}


/*=========================================
  Container
=========================================*/

.seo-container{
    position:relative;
    width:100%;
    max-width:1400px;
    margin:auto;
    z-index:2;
}


/*=========================================
  Heading Wrapper
=========================================*/

.seo-heading{
    width:100%;
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}


/*=========================================
  Small Tag
=========================================*/

.seo-tag{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 22px;

    margin-bottom:25px;

    border-radius:50px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    color:#2563eb;

    font-size:15px;

    font-weight:600;

    letter-spacing:.6px;

    text-transform:uppercase;

}


/*=========================================
  Main Heading
=========================================*/

.seo-heading h2{

    margin:0;

    color:#111111;

    font-size:clamp(2.5rem,4vw,4rem);

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

}


.seo-heading h2 span{

    display:block;

    margin-top:8px;

    background:linear-gradient(
    90deg,
    #2563eb,
    #06b6d4);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;

}


/*=========================================
  Intro Paragraph
=========================================*/

.seo-heading p{

    margin:30px auto 0;

    max-width:760px;

    color:#6b7280;

    font-size:18px;

    line-height:1.9;

    font-weight:400;

}


/*=========================================
  Grid Layout
=========================================*/

.seo-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}


/*=========================================
  Card Base
=========================================*/

.seo-card{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:45px 35px;

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:26px;

    overflow:hidden;

    transition:.45s ease;

    min-height:320px;

}


/*=========================================
  Premium Gradient Top Border
=========================================*/

.seo-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
    90deg,
    #2563eb,
    #06b6d4);

}


/*=========================================
  Soft Glow
=========================================*/

.seo-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    180deg,
    rgba(37,99,235,.03),
    rgba(6,182,212,.02));

    opacity:0;

    transition:.4s;

    pointer-events:none;

}


/*=========================================
  Icon Wrapper
=========================================*/

.seo-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    background:linear-gradient(
    135deg,
    #eff6ff,
    #ecfeff);

    border:1px solid #dbeafe;

}


/*=========================================
  Icon
=========================================*/

.seo-icon i{

    font-size:34px;

    color:#2563eb;

}


/*=========================================
  Card Heading
=========================================*/

.seo-card h3{

    margin:0 0 18px;

    color:#111827;

    font-size:24px;

    font-weight:700;

    line-height:1.35;

}


/*=========================================
  Card Description
=========================================*/

.seo-card p{

    margin:0;

    color:#6b7280;

    font-size:16px;

    line-height:1.85;

    font-weight:400;

}


/*=========================================
  CTA Wrapper
=========================================*/

.seo-cta{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:80px;

}

/* ==========================================================
   Search Engine Visibility & Organic Growth
   Premium Responsive CSS
   Part 2 - Hover Effects, Button & Animations
   Designed for RajatAdhikari.in
==========================================================*/


/*=========================================
  Premium Card Hover
=========================================*/

.seo-card:hover{

    transform:translateY(-12px);

    border-color:rgba(37,99,235,.18);

    box-shadow:
        0 15px 40px rgba(0,0,0,.08),
        0 6px 18px rgba(37,99,235,.08);

}

.seo-card:hover::after{

    opacity:1;

}


/*=========================================
  Floating Gradient Circle
=========================================*/

.seo-card .seo-floating-circle{

    position:absolute;

    top:-80px;

    right:-80px;

    width:180px;

    height:180px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(37,99,235,.10),
    transparent 72%);

    opacity:0;

    transition:.45s ease;

    pointer-events:none;

}

.seo-card:hover .seo-floating-circle{

    opacity:1;

    transform:scale(1.15);

}


/*=========================================
  Icon Hover
=========================================*/

.seo-icon{

    transition:
        transform .45s ease,
        background .45s ease,
        box-shadow .45s ease;

}

.seo-card:hover .seo-icon{

    transform:
        rotate(-8deg)
        scale(1.08);

    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4);

    box-shadow:
        0 15px 30px rgba(37,99,235,.20);

}

.seo-card:hover .seo-icon i{

    color:#ffffff;

}


/*=========================================
  Card Heading Hover
=========================================*/

.seo-card h3{

    transition:.35s ease;

}

.seo-card:hover h3{

    color:#2563eb;

}


/*=========================================
  Card Paragraph Hover
=========================================*/

.seo-card p{

    transition:.35s ease;

}

.seo-card:hover p{

    color:#4b5563;

}


/*=========================================
  Premium Button
=========================================*/

.seo-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:18px 42px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #06b6d4);

    color:#ffffff;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
        0 12px 28px rgba(37,99,235,.22);

}


/*=========================================
  Button Shine
=========================================*/

.seo-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.55),

        transparent

    );

    transform:skewX(-25deg);

    transition:.7s;

}

.seo-btn:hover::before{

    left:150%;

}


/*=========================================
  Button Hover
=========================================*/

.seo-btn:hover{

    transform:translateY(-4px);

    box-shadow:
        0 20px 40px rgba(37,99,235,.28);

}


/*=========================================
  Arrow Animation
=========================================*/

.seo-btn span{

    font-size:20px;

    transition:.35s ease;

}

.seo-btn:hover span{

    transform:translateX(8px);

}


/*=========================================
  Focus Accessibility
=========================================*/

.seo-btn:focus{

    outline:none;

}

.seo-btn:focus-visible{

    outline:3px solid rgba(37,99,235,.30);

    outline-offset:6px;

}


/*=========================================
  Card Transition Optimization
=========================================*/

.seo-card,
.seo-icon,
.seo-btn,
.seo-card h3,
.seo-card p{

    will-change:transform;

}


/*=========================================
  Subtle Fade Animation
=========================================*/

@keyframes seoFadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.seo-card{

    animation:seoFadeUp .8s ease both;

}


/*=========================================
  Stagger Delay
=========================================*/

.seo-card:nth-child(1){animation-delay:.05s;}
.seo-card:nth-child(2){animation-delay:.10s;}
.seo-card:nth-child(3){animation-delay:.15s;}
.seo-card:nth-child(4){animation-delay:.20s;}
.seo-card:nth-child(5){animation-delay:.25s;}
.seo-card:nth-child(6){animation-delay:.30s;}
.seo-card:nth-child(7){animation-delay:.35s;}
.seo-card:nth-child(8){animation-delay:.40s;}
.seo-card:nth-child(9){animation-delay:.45s;}
.seo-card:nth-child(10){animation-delay:.50s;}
.seo-card:nth-child(11){animation-delay:.55s;}


/*=========================================
  Smooth Rendering
=========================================*/

.seo-growth-section *{

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

}


/*=========================================
  Reduced Motion Support
=========================================*/

@media (prefers-reduced-motion: reduce){

    .seo-card,
    .seo-btn,
    .seo-icon{

        animation:none;

        transition:none;

    }

}

/* ==========================================================
   Search Engine Visibility & Organic Growth
   Premium Responsive CSS
   Part 3 - Responsive Design
   Desktop • Laptop • Tablet • Mobile
   Designed for RajatAdhikari.in
==========================================================*/


/*=========================================
  Large Desktop
=========================================*/

@media (max-width:1600px){

    .seo-container{

        max-width:1320px;

    }

    .seo-grid{

        gap:32px;

    }

}


/*=========================================
  Standard Desktop
=========================================*/

@media (max-width:1400px){

    .seo-container{

        max-width:1200px;

    }

    .seo-growth-section{

        padding:110px 25px;

    }

    .seo-card{

        min-height:300px;

        padding:40px 30px;

    }

}


/*=========================================
  Laptop
=========================================*/

@media (max-width:1200px){

    .seo-heading{

        margin-bottom:70px;

    }

    .seo-grid{

        grid-template-columns:repeat(3,1fr);

        gap:25px;

    }

    .seo-card{

        padding:35px 28px;

        min-height:290px;

    }

    .seo-card h3{

        font-size:22px;

    }

    .seo-card p{

        font-size:15px;

    }

}


/*=========================================
  1024px Landscape
=========================================*/

@media (max-width:1024px){

    .seo-growth-section{

        padding:90px 20px;

    }

    .seo-heading{

        margin-bottom:60px;

    }

    .seo-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

    .seo-card{

        min-height:280px;

        padding:35px 25px;

    }

}


/*=========================================
  Special Fix
  1024 × 768
=========================================*/

@media screen and (width:1024px) and (height:768px){

    .seo-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .seo-card{

        min-height:270px;

    }

}


/*=========================================
  Special Fix
  1024 × 600
=========================================*/

@media screen and (width:1024px) and (height:600px){

    .seo-growth-section{

        padding:70px 18px;

    }

    .seo-heading{

        margin-bottom:45px;

    }

    .seo-grid{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    .seo-card{

        min-height:260px;

        padding:30px 22px;

    }

    .seo-icon{

        width:70px;

        height:70px;

    }

    .seo-icon i{

        font-size:28px;

    }

}


/*=========================================
  Tablet Landscape
=========================================*/

@media (max-width:991px){

    .seo-heading h2{

        font-size:44px;

    }

    .seo-heading p{

        font-size:17px;

    }

    .seo-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

}


/*=========================================
  Tablet Portrait
=========================================*/

@media (max-width:768px){

    .seo-growth-section{

        padding:80px 18px;

    }

    .seo-heading{

        margin-bottom:50px;

    }

    .seo-heading h2{

        font-size:38px;

    }

    .seo-heading p{

        font-size:16px;

        line-height:1.8;

    }

    .seo-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .seo-card{

        min-height:auto;

        padding:35px 28px;

    }

    .seo-icon{

        width:75px;

        height:75px;

    }

    .seo-icon i{

        font-size:30px;

    }

    .seo-cta{

        margin-top:60px;

    }

}


/*=========================================
  Mobile Large
=========================================*/

@media (max-width:576px){

    .seo-growth-section{

        padding:70px 16px;

    }

    .seo-tag{

        font-size:13px;

        padding:9px 18px;

    }

    .seo-heading h2{

        font-size:32px;

    }

    .seo-heading p{

        font-size:15px;

    }

    .seo-card{

        padding:30px 24px;

        border-radius:22px;

    }

    .seo-card h3{

        font-size:21px;

    }

    .seo-card p{

        font-size:15px;

    }

    .seo-btn{

        width:100%;

        justify-content:center;

        padding:16px 24px;

        font-size:16px;

    }

}


/*=========================================
  Small Mobile
=========================================*/

@media (max-width:480px){

    .seo-heading h2{

        font-size:28px;

    }

    .seo-icon{

        width:68px;

        height:68px;

    }

    .seo-icon i{

        font-size:26px;

    }

    .seo-card{

        padding:28px 20px;

    }

    .seo-card h3{

        font-size:20px;

    }

}


/*=========================================
  Extra Small Devices
=========================================*/

@media (max-width:360px){

    .seo-growth-section{

        padding:60px 14px;

    }

    .seo-heading h2{

        font-size:26px;

    }

    .seo-heading p{

        font-size:14px;

    }

    .seo-card{

        padding:24px 18px;

    }

    .seo-card h3{

        font-size:19px;

    }

    .seo-card p{

        font-size:14px;

        line-height:1.7;

    }

    .seo-btn{

        font-size:15px;

        padding:15px 20px;

    }

}


/*=========================================
  Touch Devices
=========================================*/

@media (hover:none){

    .seo-card:hover{

        transform:none;

        box-shadow:none;

    }

    .seo-card:hover .seo-icon{

        transform:none;

    }

    .seo-btn:hover{

        transform:none;

    }

}


/*=========================================
  High Resolution Displays
=========================================*/

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi){

    .seo-card{

        border-width:.5px;

    }

}

/* ==========================================================
   Search Engine Visibility & Organic Growth
   Premium Responsive CSS
   Part 4 - Premium Finishing, Animations & Performance
   Designed for RajatAdhikari.in
==========================================================*/


/*=========================================
  Smooth Scrolling
=========================================*/

html{

    scroll-behavior:smooth;

}


/*=========================================
  Selection Color
=========================================*/

.seo-growth-section ::selection{

    background:#2563eb;

    color:#ffffff;

}


/*=========================================
  Improve Rendering
=========================================*/

.seo-growth-section,
.seo-container,
.seo-grid,
.seo-card{

    backface-visibility:hidden;

    -webkit-backface-visibility:hidden;

    transform:translateZ(0);

}


/*=========================================
  Premium Card Shine
=========================================*/

.seo-card{

    isolation:isolate;

}

.seo-card::before{

    transition:.45s ease;

}

.seo-card:hover::before{

    height:7px;

}

.seo-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:26px;

    background:linear-gradient(
        135deg,
        rgba(37,99,235,.04),
        rgba(6,182,212,.03));

    opacity:0;

    transition:.45s ease;

    z-index:-1;

}

.seo-card:hover::after{

    opacity:1;

}


/*=========================================
  Animated Border Glow
=========================================*/

.seo-card{

    overflow:hidden;

}

.seo-card span.card-glow{

    position:absolute;

    inset:0;

    border-radius:26px;

    pointer-events:none;

}

.seo-card span.card-glow::before{

    content:"";

    position:absolute;

    inset:-2px;

    border-radius:inherit;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(37,99,235,.35),
        transparent);

    transform:translateX(-100%);

    opacity:0;

    transition:.6s;

}

.seo-card:hover span.card-glow::before{

    transform:translateX(100%);

    opacity:1;

}


/*=========================================
  Icon Floating Animation
=========================================*/

@keyframes seoFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

.seo-icon{

    animation:seoFloat 4s ease-in-out infinite;

}


/*=========================================
  Card Hover Lift
=========================================*/

@keyframes seoLift{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(-10px);

    }

}

.seo-card:hover{

    animation:seoLift .35s ease forwards;

}


/*=========================================
  Button Pulse
=========================================*/

@keyframes seoPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,99,235,.35);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,99,235,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,99,235,0);

    }

}

.seo-btn:hover{

    animation:seoPulse 1.3s infinite;

}


/*=========================================
  Heading Reveal
=========================================*/

@keyframes seoHeading{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.seo-heading{

    animation:seoHeading .8s ease both;

}


/*=========================================
  Card Reveal Delay
=========================================*/

.seo-card:nth-child(1){transition-delay:.05s;}
.seo-card:nth-child(2){transition-delay:.10s;}
.seo-card:nth-child(3){transition-delay:.15s;}
.seo-card:nth-child(4){transition-delay:.20s;}
.seo-card:nth-child(5){transition-delay:.25s;}
.seo-card:nth-child(6){transition-delay:.30s;}
.seo-card:nth-child(7){transition-delay:.35s;}
.seo-card:nth-child(8){transition-delay:.40s;}
.seo-card:nth-child(9){transition-delay:.45s;}
.seo-card:nth-child(10){transition-delay:.50s;}
.seo-card:nth-child(11){transition-delay:.55s;}


/*=========================================
  CTA Alignment
=========================================*/

.seo-cta{

    text-align:center;

}

.seo-btn{

    min-width:280px;

}


/*=========================================
  Better Image Rendering
=========================================*/

.seo-growth-section img{

    max-width:100%;

    height:auto;

    display:block;

}


/*=========================================
  Link Reset
=========================================*/

.seo-growth-section a{

    text-decoration:none;

}


/*=========================================
  Keyboard Navigation
=========================================*/

.seo-card:focus-within{

    outline:2px solid rgba(37,99,235,.25);

    outline-offset:5px;

}


/*=========================================
  Performance
=========================================*/

.seo-card,
.seo-btn,
.seo-icon{

    will-change:transform,box-shadow;

}


/*=========================================
  Reduced Motion
=========================================*/

@media (prefers-reduced-motion:reduce){

    html{

        scroll-behavior:auto;

    }

    .seo-card,
    .seo-icon,
    .seo-heading,
    .seo-btn{

        animation:none !important;

        transition:none !important;

    }

}


/*=========================================
  Print
=========================================*/

@media print{

    .seo-growth-section{

        padding:40px 0;

        background:#ffffff;

    }

    .seo-card{

        box-shadow:none;

        border:1px solid #cccccc;

        break-inside:avoid;

    }

    .seo-btn{

        display:none;

    }

}


/*=========================================
  End of CSS
==========================================================*/