/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#1f2937;
    overflow-x:hidden;
    line-height:1.6;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

@media(max-width:1200px){

.container{

width:92%;

}

}

@media(max-width:992px){

.container{

width:94%;

}

}

@media(max-width:768px){

.container{

width:95%;

}

}

@media(max-width:480px){

.container{

width:92%;

}

}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    background:#ffffff;

    box-shadow:0 3px 20px rgba(0,0,0,.08);

    z-index:999;

}

nav{

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ==========================================
   LOGO
========================================== */

.logo-wrapper{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo{

    width:65px;
    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    border:4px solid #0d6efd;

    background:#ffffff;

    overflow:hidden;

    box-shadow:0 0 12px rgba(255,122,0,.25);

}

.logo-img{

    width:90%;
    height:90%;

    object-fit:contain;

    transition:.3s;

}

.logo:hover .logo-img{

    transform:scale(1.08);

}

.logo-text{

    font-size:24px;

    font-weight:700;

}

.blue{

    color:#0d6efd;

}

.orange{

    color:#ff6b00;

}

/* ==========================================
   NAVIGATION
========================================== */

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links a{

    font-size:16px;

    font-weight:500;

    color:#374151;

    transition:.3s;

}

.nav-links a:hover{

    color:#ff6b00;

}

/* ==========================================
   BUTTON
========================================== */

.nav-btn{

    display:inline-block;

    padding:12px 25px;

    background:#ff6b00;

    color:#ffffff;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    background:#e85f00;

}

.mobile-btn{

    display:none;

}

/* ==========================================
   MENU ICON
========================================== */

.menu-toggle{

    display:none;

    font-size:32px;

    cursor:pointer;

    color:#111827;

    font-weight:bold;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

nav{

height:80px;

}

.logo{

width:55px;

height:55px;

}

.logo-text{

font-size:20px;

}

.desktop-btn{

display:none;

}

.menu-toggle{

display:block;

}

.nav-links{

position:absolute;

top:80px;

left:0;

width:100%;

background:#ffffff;

display:none;

flex-direction:column;

align-items:center;

gap:25px;

padding:30px 0;

box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.nav-links.active{

display:flex;

}

.mobile-btn{

display:block;

}

}

@media(max-width:480px){

.logo{

width:50px;

height:50px;

}

.logo-text{

font-size:18px;

}

.nav-links{

padding:25px 0;

}

}
/* ==========================================
   HERO SECTION
========================================== */

.hero{

    padding-top:140px;
    padding-bottom:90px;

    background:linear-gradient(
        180deg,
        #fff7ed,
        #ffffff
    );

}

.hero .container{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    align-items:center;

    gap:60px;

}

.hero-content h1{

    font-size:60px;

    line-height:1.15;

    font-weight:800;

    color:#111827;

    margin-bottom:25px;

}

.hero-content p{

    font-size:21px;

    line-height:1.8;

    color:#6b7280;

    margin-bottom:35px;

}

/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    display:inline-block;

    background:#ff6b00;

    color:#ffffff;

    padding:15px 32px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#e85f00;

    transform:translateY(-2px);

}

.secondary-btn{

    display:inline-block;

    padding:15px 32px;

    border:2px solid #ff6b00;

    color:#ff6b00;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#ff6b00;

    color:#ffffff;

}

/* ==========================================
   HERO IMAGE
========================================== */

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* ==========================================
   TRUST SECTION
========================================== */

.trust{

    padding:50px 0;

    text-align:center;

    background:#ffffff;

}

.trust h2{

    font-size:42px;

    margin-bottom:18px;

    color:#111827;

}

.trust p{

    max-width:900px;

    margin:auto;

    color:#6b7280;

    font-size:20px;

    line-height:1.9;

}

/* ==========================================
   WHATSAPP BUTTON
========================================== */

whatsapp-float{
    position:fixed;
    width:60px;
    height: 60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.3);
    z-index:9999;
    transition:all 0.3s ease;
    text-decoration:none;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float svg{
    width:32px;
    height:30 px;
}
/* Social + WhatsApp Fixed Right Side */

.social-share{
    position:fixed;
    right:25px;
    bottom:105px; /* WhatsApp ke upar */
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:9999;
}

.share-btn{
    width:58px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.share-btn:hover{
    transform:scale(1.1);
}

.share-btn svg{
    width:26px;
    height:26px;
}

.facebook-btn{
    background:#1877F2;
}

.instagram-btn{
    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.linkedin-btn{
    background:#0077B5;
}

/* WhatsApp */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    right:25px;
    bottom:25px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.3);
    z-index:9999;
}

.trust{
padding:3px 0;
text-align:center;
background:#fff;
}

.trust h2{
    font-size:42px;
    margin-bottom:10px;
}

.trust p{
    max-width:800px;
    margin:0 auto;
    padding:0;
    font-size:25px;
    line-height:1.9;
    color:#6b7280;
}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.hero{

padding-top:120px;

padding-bottom:70px;

}

.hero .container{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.hero-content h1{

font-size:34px;

line-height:1.25;

}

.hero-content p{

font-size:17px;

line-height:1.8;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.primary-btn,
.secondary-btn{

width:230px;

text-align:center;

}

.hero-image{

order:-1;

}

.hero-image img{

max-width:330px;

}

.trust h2{

font-size:30px;

}

.trust p{

font-size:17px;

}

.social-share{

right:15px;

bottom:90px;

}

.share-btn{

width:48px;

height:48px;

}

.whatsapp-float{

width:58px;

height:58px;

right:15px;

bottom:15px;

}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

.hero-content h1{

font-size:28px;

}

.hero-content p{

font-size:16px;

}

.trust h2{

font-size:26px;

}

.trust p{

font-size:15px;

}

}
/* ==========================================
   SECTION HEADING
========================================== */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h2{

    font-size:42px;
    color:#111827;
    margin-bottom:18px;
    font-weight:700;

}

.section-heading p{

    max-width:720px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;

}

/* ==========================================
   TRUSTED BRANDS
========================================== */

.trusted-brands{

    padding:90px 0;
    background:#ded8d5;

}

.brands-heading{

    text-align:center;
    margin-bottom:50px;

}

.brands-heading h2{

    font-size:38px;
    color:#111827;

}

.brands-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:30px;

}

.brand-card{

    background:#ffffff;
    border-radius:18px;
    padding:px;
  
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.brand-card:hover{

    transform:translateY(-8px);

}

.brand-card img{

    width:100%;
    max-width:400px;
    object-fit:contain;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    padding:100px 0;
    background:#ffffff;

}

.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.service-card{

    background:#ffffff;
    border-radius:18px;
    padding:40px 30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card h3{

    font-size:26px;
    margin-bottom:18px;
    color:#111827;

}

.service-card p{

    color:#6b7280;
    line-height:1.8;
    font-size:17px;

}

/* ==========================================
   FEATURES
========================================== */

.features{

    padding:100px 0;
    background:#f8fafc;

}

.feature-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.feature-card{

    background:#ffffff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    font-weight:600;
    transition:.3s;

}

.feature-card:hover{

    background:#ff6b00;
    color:#ffffff;
    transform:translateY(-6px);

}

/* ==========================================
   WHY SCALEHOST
========================================== */

.why-scalehost{

    padding:100px 0;
    background:#ffffff;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 50px;
    
    
}

.why-card{

    background:#ffffff;
    border-radius:18px;
    
    padding:40px 30px;
    text-align: center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);
    background:#ff6b00;
    color:#ffffff;

}

.why-card h3{

    font-size:26px;
    margin-bottom:18px;
    color:#000000;

}

.why-card p{
    text-align: left;      /* Center ki jagah left */
    line-height: 1.8;
    font-size: 20px;
    color: #000000;
    margin-top: 15px;
}



/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.section-heading{

margin-bottom:40px;

}

.section-heading h2{

font-size:32px;

}

.section-heading p{

font-size:16px;

}

.brands-heading h2{

font-size:30px;

}

.services-grid,
.feature-grid,
.why-grid{

grid-template-columns:1fr;

gap:25px;

}

.service-card,
.feature-card,
.why-card{

padding:30px 25px;

}

.service-card h3,
.why-card h3{

font-size:24px;

}

.service-card p,
.why-card p{

font-size:16px;

}

.brand-card{

padding:25px;

}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

.section-heading h2{

font-size:28px;

}

.section-heading p{

font-size:15px;

}

.brands-heading h2{

font-size:26px;

}

.service-card h3,
.why-card h3{

font-size:22px;

}

}
/* ==========================================
   PRICING SECTION
========================================== */

.sh-pricing{
    padding:100px 0;
    background:#f8fafc;
}

.sh-pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
    gap:30px;
    margin-top:60px;
}
.sh-pricing-card{
    position:relative;
    background:#ffffff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.sh-pricing-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.sh-pricing-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#111827;
}

.sh-price{
    font-size:38px;
    font-weight:700;
    color:#ff6b00;
    margin-bottom:30px;
}

.sh-price span{
    display:block;
    font-size:16px;
    color:#6b7280;
    margin-top:8px;
}

.sh-feature-list{
    text-align:left;
    margin-bottom:35px;
}

.sh-feature-list li{
    margin-bottom:15px;
    color:#374151;
    padding-left:20px;
    position:relative;
}

.sh-feature-list li::before{
    content:">";
    position:absolute;
    left:0;
    color:#16a34a;
}

.sh-plan-btn{
    display:inline-block;
    width:100%;
    padding:15px;
    border-radius:10px;
    background:#ff6b00;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.sh-plan-btn:hover{
    background:#e85f00;
}

.sh-popular-card{
    border:3px solid #ff6b00;
}

.sh-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card h3{
    margin-bottom:15px;
    color:#111827;
}

.testimonial-card p{
    color:#6b7280;
    line-height:1.8;
}
/* ================= Development Section ================= */

.development-section{

    padding:100px 8%;
    background:#ffffff;
}
.section-title{

    text-align:center;
    margin-bottom:60px;
}
.section-title h2{
    font-size:50px;
    color:#111827;
    margin-bottom:18px;
}
.section-title p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
    font-size:18px;
}
/* Grid */
.development-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
/* Card */
.development-card{
    background:#0b0b0b;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.development-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}
/* Icon */
.icon{
    width:80px;

    height:80px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
}
.development-card h3{
    margin-bottom:15px;
    color:#ffffff;
    font-size:24px;
}
.development-card p{
    color:#ffffff;
    line-height:1.8;
}
/* ================= CTA ================= */
.development-contact{
    text-align:center;
    margin-top:65px;
}
.development-contact h3{
    font-size:34px;
    color:#000000;

    margin-bottom:15px;

}

.development-contact p{

    color:#000000;

    margin-bottom:15px;

    font-size:18px;

}

/* Premium Button */
.contact-btn{
    display:inline-flex;
    align-items:center;

    justify-content:center;

    gap:1px;

    padding:18px 42px;

    border-radius:60px;

    text-decoration:none;

    font-size:20px;

    font-weight:600;
    margin-bottom: 1px;
    color:#fff;

    background:linear-gradient(135deg,#2563eb,#3b82f6,#06b6d4);

    background-size:250%;

    transition:.4s;

    box-shadow:0 15px 35px rgba(37,99,235,.30);

}

.contact-btn:hover{

    background-position:right;

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(37,99,235,.40);

}

.contact-btn:active{

    transform:scale(.97);

}

/* Responsive */

@media(max-width:768px){

    .development-section{

        padding:70px 6%;

    }

    .section-title h2{

        font-size:32px;

    }

    .development-contact h3{

        font-size:28px;

    }

    .contact-btn{

        width:100%;

        max-width:300px;

    }

}

/* ==========================================
   CASE STUDY
========================================== */

.case-study{
    padding:100px 0;
    background:#f8fafc;
}

.section-banner{
    text-align:center;
    margin-bottom:60px;
    margin-left: 1px;
}

.section-banner h2{
    color:#ff6b00;
    font-size:30px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-banner h1{
    font-size:46px;
    color:#111827;
    margin-top:10px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-right:30px;
    margin-left: 30px;
}

.card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
}

.card-image{
    height:250px;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.empty-image{
    background:#edf2f7;
}

.card-content{
    padding:30px;
}

.card-content h2{
    color:#ff6b00;
    font-size:14px;
    margin-bottom:12px;
}

.card-content h3{
    font-size:24px;
    margin-bottom:18px;
    color:#111827;
}

.card-content p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.card-content a{
    color:#ff6b00;
    font-weight:600;
}
.case-study-btn{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:50px;
}

.case-study-btn a{
    width:100%;
    max-width:2000px;
    background:#ff6b00;
    color:#fff;
    text-decoration:none;
    text-align:center;
    padding:19px 30px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.3s;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.case-study-btn a:hover{
    background:#0d6efd;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.cards{
    grid-template-columns:repeat(2,1fr);
}

.testimonial-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.sh-pricing{
    padding:70px 0;
}

.sh-pricing-grid,
.cards,
.testimonial-grid{

    grid-template-columns:1fr;

}

.section-banner h1{
    font-size:34px;
}

.sh-price{
    font-size:34px;
}

.card-image{
    height:220px;
}

}

@media(max-width:480px){

.sh-pricing-card{
    padding:30px 20px;
}

.card-content{
    padding:25px;
}

.card-content h3{
    font-size:20px;
}

.section-banner h1{
    font-size:28px;
}

}
/* ==========================================
   CUSTOM PLAN
========================================== */

.custom-plan{
    padding:100px 0;
    background:linear-gradient(135deg,#0d6efd,#2563eb);
    color:#fff;
    text-align:center;
}

.custom-container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.custom-plan h2{
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
}

.custom-plan p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;
    opacity:.95;
}

.custom-btn{
    display:inline-block;
    padding:16px 40px;
    background:#ff6b00;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.custom-btn:hover{
    background:#e85f00;
    transform:translateY(-3px);
}

/* ==========================================
   FOUNDERS
========================================== */

/*==========================
FOUNDER SECTION
==========================*/

.founders-section{

    padding:100px 0;

    background:#f8fafc;

}

.section-tag{

    display:inline-block;

    background:#ff6b00;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

    font-size:25px;

    margin-bottom:15px;

    font-weight:600;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h2{

    font-size:46px;

    color:#111827;

}

.section-heading h2 span{

    color:#ff6b00;

}

.section-heading p{

    max-width:700px;

    margin:20px auto 0;

    color:#6b7280;

    line-height:1.8;

}

.founders-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.founder-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    transition:.35s;

    border-top:6px solid #ff6b00;

}

.founder-card:hover{

    transform:translateY(-10px);

}

.founder-image{

    text-align:center;

    padding:40px 20px 20px;

}

.founder-image img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    border:6px solid #ff6b00;

}

.founder-content{

    padding:30px 35px 40px;

}

.founder-content h3{

    text-align:center;

    font-size:30px;

    margin-bottom:10px;

}

.designation{

    display:block;

    text-align:center;

    color:#ff6b00;

    font-weight:600;

    margin-bottom:20px;

}

.founder-content p{

    color:#4b5563;

    line-height:1.9;

    text-align:left;

    font-size:17px;

}

.skills{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;

}

.skills span{

    background:#eef4ff;

    color:#0d6efd;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-links a{

    flex:1;

    text-align:center;

    background:#ff6b00;

    color:#fff;

    padding:12px;

    border-radius:10px;

    transition:.3s;

}

.social-links a:hover{

    background:#e55f00;

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.founders-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.founders-section{

padding:70px 0;

}

.section-heading h2{

font-size:34px;

}

.founder-image img{

width:140px;

height:140px;

}

.founder-content{

padding:25px;

}

.founder-content h3{

font-size:26px;

}

.founder-content p{

font-size:16px;

text-align:left;

line-height:1.8;

}

.social-links{

flex-direction:column;

}

}

@media(max-width:480px){

.section-heading h2{

font-size:28px;

}

.section-heading p{

font-size:15px;

}

.skills{

justify-content:center;

}

.skills span{

font-size:13px;

padding:7px 12px;

}

}

/* ==========================================
   FAQ
========================================== */

.faq{
    padding:100px 0;
    background:#f8fafc;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    padding:22px;
    border:none;
    background:#fff;
    cursor:pointer;
    text-align:left;
    font-size:18px;
    font-weight:600;
}

.faq-answer{
    padding:0 22px 22px;
    color:#6b7280;
    line-height:1.8;
}

/* ==========================================
   CONTACT
========================================== */

.contact{
    padding:100px 0;
    background:#ffffff;
    text-align:center;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#111827;
    color:#d1d5db;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-bottom:40px;
}

.footer-grid h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid p{
    line-height:1.8;
}

footer hr{
    border:none;
    height:1px;
    background:#374151;
    margin:30px 0;
}

.copyright{
    text-align:center;
    color:#9ca3af;
    font-size:15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.founders-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.custom-plan{
    padding:70px 0;
}

.custom-plan h2{
    font-size:32px;
}

.custom-plan p{
    font-size:16px;
}

.founders-section,
.faq,
.contact{
    padding:70px 0;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.founder-image img{
    width:150px;
    height:150px;
}

.founder-image h3{
    font-size:24px;
}

.faq-question{
    font-size:17px;
    padding:18px;
}

.faq-answer{
    padding:0 18px 18px;
}

}

@media(max-width:480px){

.custom-plan h2{
    font-size:28px;
}

.custom-btn{
    width:100%;
    max-width:260px;
}

.founder-content{
    padding:20px;
}

.founder-image img{
    width:130px;
    height:130px;
}

.footer-grid{
    gap:25px;
}

.copyright{
    font-size:14px;
}

}