html{
scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* HEADER */
header{
    position:sticky;
    top:0;
    z-index:999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 50px;

    background:rgba(0,0,0,.85);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.08);
}

/* LOGO */
.logo{
    font-size:34px;
    font-weight:800;
    color:#fff;
}

/* NAVIGATION */
nav{
    display:flex;
    align-items:center;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#ff6b6b;
}

/* RIGHT SIDE */
.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}
/* CART */
.cart{
    width:55px;
    height:55px;
    border-radius:50%;
    background:white;
    color:black;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    cursor:pointer;
    box-shadow:
    0 10px 25px rgba(0,0,0,.25);
}

.header-icons{

display:flex;
align-items:center;
gap:15px;

}

.wishlist,
.cart{

display:flex;
align-items:center;
justify-content:center;
gap:6px;

min-width:60px;
height:50px;

background:white;
color:black;

padding:0 14px;

border-radius:12px;

cursor:pointer;

font-weight:700;

box-shadow:0 5px 15px rgba(0,0,0,.08);

transition:.3s;

white-space:nowrap;

}

.wishlist:hover,
.cart:hover{

transform:translateY(-2px);

}

#wishlist-count,
#cart-count{

font-size:15px;
font-weight:700;
color:black;

}

/* HERO SECTION */

.hero{
    min-height:100vh;

    background:
    radial-gradient(
    circle at top left,
    rgba(255,77,77,.15),
    transparent 30%
    ),

    radial-gradient(
    circle at bottom right,
    rgba(79,172,254,.15),
    transparent 30%
    ),

    linear-gradient(
    135deg,
    #050816,
    #0b1120,
    #111827
    );

    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;

    padding-top:0;
}

/* SPLIT HERO */

.split-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    max-width:1400px;
    width:100%;
    padding:20px 60px 80px;
}

/* LEFT SIDE */

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

.left-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:30px;
    width:100%;
}

/* HEADLINE */

.hero-title{
    font-size:58px;
    line-height:1.05;
    font-weight:800;

    text-align:center;

    max-width:520px;

    margin:0;
}

/* LOGO CIRCLE */

.hero-card{
    width:340px;
    height:340px;

    border-radius:50%;

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

    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.05),
    rgba(255,255,255,.01));

    box-shadow:
    0 15px 40px rgba(0,0,0,.35);
}

.hero-left img{
    width:290px;
    height:290px;

    object-fit:contain;

    border-radius:50%;
}

/* GLOW EFFECT */

.hero-left::before{
    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(255,77,77,.20),
    transparent 70%);

    filter:blur(35px);

    z-index:-1;
}

/* RIGHT CARD */

.hero-right{

    width:100%;
    max-width:720px;
    justify-self:center;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:24px;
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
}

/* BADGE */

.hero-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:
    rgba(255,255,255,.08);

    border:
    1px solid rgba(255,255,255,.15);

    font-size:14px;

    margin-bottom:20px;
}

/* TEXT */

.tagline{
    font-size:17px;
    line-height:1.7;
    color:#d8d8d8;

    margin-bottom:20px;
}

/* FEATURES */

.features{
    display:grid;

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

    gap:14px;

    margin-bottom:25px;

    font-size:16px;
}

/* BUTTONS */

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;

    margin-bottom:25px;
}

/* PRIMARY */

.btn-primary{
    background:
    linear-gradient(
    135deg,
    #ff4d4d,
    #ff6b6b);

    color:white;

    border:none;

    padding:16px 34px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    box-shadow:
    0 12px 30px rgba(255,77,77,.35);
}

/* SECONDARY */

.btn-secondary{
    background:
    rgba(255,255,255,.05);

    color:white;

    border:
    1px solid rgba(255,255,255,.25);

    padding:16px 34px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;
}

/* TRUST BAR */

.trust-bar{
    display:flex;
    flex-wrap:wrap;

    gap:18px;

    font-size:14px;

    color:#d0d0d0;
}

.btn-whatsapp{

    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    box-shadow:
    0 12px 30px rgba(37,211,102,.35);
}

.btn-whatsapp:hover{
    transform:translateY(-4px);
    box-shadow:
    0 18px 40px rgba(37,211,102,.45);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* PRODUCT GRID */
.product-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

/* CARD */
.card {
    width: 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

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

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: orange;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.card h3 {
    margin: 10px 0;
}

.price {
    font-weight: bold;
}

.card ul {
    padding-left: 18px;
    font-size: 14px;
}

/* CART POPUP */
.cart-popup {
    position: fixed;
    top: 20%;
    right: 20px;
    width: 300px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 1000;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 5px 8px;
    cursor: pointer;
}

/* STEPS */
.steps {
    background: #222;
    color: white;
    text-align: center;
    padding: 50px;
}

.step-box {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
}

/* UPLOAD */
.upload-box {
    text-align: center;
    margin-top: 20px;
}

#file-name {
    margin-top: 10px;
    color: white;
}

/* CHECKOUT */
#checkout-form input,
#checkout-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        text-align: center;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }

    .hero {
        height: auto;
        padding: 50px 20px;
    }

    .split-hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        margin-bottom: 20px;
    }

    .hero-right h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .features {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin: 10px 0;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .cart-popup {
        width: 90%;
        right: 5%;
        top: 10%;
    }

    .step-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* =====================================
   PREMIUM CATALOG SECTION
===================================== */

.catalog{
    padding:90px 8%;
    background:linear-gradient(180deg,#f8f9fb,#eef2f7);
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:18px;
}

.section-subtitle{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.catalog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
    justify-content:center;
    align-items:stretch;
    max-width:1300px;
    margin:0 auto;
}

.catalog-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    transition:.45s;

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);
}

.catalog-card:hover{

    transform:
    translateY(-12px)
    scale(1.03);

    box-shadow:
    0 25px 55px rgba(0,0,0,.18);
}

.catalog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.6s;
}

.catalog-card:hover img{

    transform:scale(1.08);
}

.catalog-content{

    padding:25px;
}

.catalog-content h3{

    font-size:28px;

    margin-bottom:15px;

    color:#111;

    font-weight:700;

    transition:.3s;
}

.catalog-card:hover h3{

    color:#e63946;
}

.catalog-content p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    min-height:65px;

    margin-bottom:22px;
}

.explore-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#111;

    font-weight:700;

    transition:.35s;
}

.catalog-card:hover .explore-btn{

    color:#e63946;

    transform:translateX(8px);
}

/* Top Shine Effect */

.catalog-card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-60%;

    width:60%;

    height:220%;

    background:
    rgba(255,255,255,.35);

    transform:rotate(25deg);

    transition:.7s;
}

.catalog-card:hover::before{

    left:130%;
}

/* Mobile */

@media(max-width:768px){

.section-title{

font-size:34px;

}

.catalog{

padding:70px 20px;

}

.catalog-grid{

grid-template-columns:1fr;

}

.catalog-card img{

height:220px;

}

}

/* ==============================
   CATALOG TAG
============================== */

.catalog-tag{

    display:inline-block;

    background:#111;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;

    transition:.3s;
}

.catalog-card:hover .catalog-tag{

    background:#e63946;

}

/* FOOTER */

.catalog-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

    border-top:1px solid #eee;

    padding-top:18px;
}

/* PRODUCT COUNT */

.product-count{

    color:#777;

    font-size:14px;

    font-weight:600;
}

/* EXPLORE */

.explore-btn{

    font-weight:700;

    transition:.35s;
}

.catalog-card:hover .explore-btn{

    letter-spacing:.5px;

}
/* UPDATED CUSTOM SECTION */
#custom{
    background: linear-gradient(135deg,#f5f7fa,#e4ecf7);
    padding: 80px 8%;
}

.custom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding: 50px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.custom-left {
    flex: 1;
    animation: fadeUp 1s ease;
}

.custom-right {
    flex: 1;
    text-align: center;
    animation:
        fadeUp 1s ease,
        floatCard 4s ease-in-out infinite;
}

.option-group {
    margin-bottom: 20px;
}

/* UPDATED OPTION BUTTONS */
.option-group button {
    padding: 12px 22px;
    margin: 5px;
    border: none;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.option-group button:hover {
    transform: translateY(-4px);
    background: #ff3b3b;
    color: white;
    box-shadow: 0 10px 25px rgba(255,59,59,0.35);
}

/* ACTIVE BUTTON */
.option-group button.active {
    background: #ff3b3b;
    color: white;
    transform: scale(1.05);
}


/* LIVE PRODUCT TITLE */
.live-product{
    margin-top:20px;
    font-size:24px;
    font-weight:700;
}

.live-product span{
    color:#ff3b3b;
}

/* FADE UP */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* FLOAT EFFECT */
@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* ============================= */
/* LIVE TSHIRT MOCKUP SYSTEM */

.mockup-container{
    position: relative;
    width: 350px;
    margin: auto;
    animation: floatMockup 3s ease-in-out infinite;
}

.tshirt-base{
    width: 100%;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
    transition: 0.4s ease;
}

/* USER DESIGN */
.design-preview{
    position: absolute;

    width: 90px;
    height: 90px;

    object-fit: contain;

    top: 125px;
    left: 115px;

    z-index: 2;

    display: none;
}

/* FLOAT EFFECT */
@keyframes floatMockup{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* DESIGN APPEAR */
@keyframes fadeZoom{
    from{
        opacity:0;
        transform: translateX(-50%) scale(0.5);
    }
    to{
        opacity:1;
        transform: translateX(-50%) scale(1);
    }
}

/* MOBILE */
@media(max-width:768px){

    .mockup-container{
        width: 260px;
    }

    .design-preview{
        width: 90px;
        top: 70px;
    }
}

/* ================= MOCKUP SYSTEM ================= */

.mockup-container{
    position: relative;
    width: 320px;
    height: 380px;
    margin: auto;
}

/* TSHIRT IMAGE */
.tshirt-base{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* USER DESIGN */
.design-preview{
    position: absolute;

    width: 120px;
    height: 120px;

    object-fit: contain;

    top: 110px;
    left: 100px;

    z-index: 2;

    display: none;
}

/* BETTER CUSTOM SECTION */
.custom-right{
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FILE NAME */
#file-name{
    margin-top: 15px;
    font-weight: bold;
    color: #444;
}

/* =========================================
   FINAL PREMIUM CUSTOMIZATION UI
========================================= */

.custom-section{
    padding:80px 5%;
    background:
    linear-gradient(
        135deg,
        #f4f6f9 0%,
        #eef1f5 100%
    );
}

/* HEADING */
.custom-heading{
    text-align:center;
    margin-bottom:50px;
}

.custom-heading h2{
    font-size:48px;
    color:#111;
    margin-bottom:15px;
    font-weight:800;
}

.custom-heading p{
    color:#666;
    font-size:18px;
}

/* MAIN LAYOUT */
.designer-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
    justify-content:center;
    flex-wrap:wrap;
}

/* =========================================
   LEFT PANEL
========================================= */

.designer-panel{
    width:340px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* GLASS CARD */
.glass-card{
    background:white;
    border-radius:24px;
    padding:28px;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.08);

    border:1px solid rgba(0,0,0,0.05);
}

/* CARD TITLES */
.glass-card h3{
    font-size:26px;
    margin-bottom:20px;
    color:#111;
    font-weight:700;
}

/* OPTION GROUP */
.modern-options{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

/* BUTTONS */
.modern-options button{
    border:none;
    padding:14px 22px;
    border-radius:14px;

    background:#f2f2f2;
    color:#111;

    font-size:15px;
    font-weight:600;

    cursor:pointer;
    transition:0.3s;
}

/* HOVER */
.modern-options button:hover{
    background:#111;
    color:white;
    transform:translateY(-2px);
}

/* ACTIVE */
.modern-options button.active{
    background:#27ae60;
    color:white;

    box-shadow:
    0 5px 15px rgba(39,174,96,0.4);
}

/* =========================================
   RIGHT PREVIEW
========================================= */

.designer-preview{
    flex:1;
    min-width:500px;
}

/* MOCKUP STAGE */
.preview-stage{

    position:relative;

    width:100%;

    height:700px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #1f1f1f,
        #111
    );

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

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.15);
}

/* LIGHT EFFECT */
.preview-stage::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
        rgba(255,255,255,0.08),
        transparent 70%
    );

    top:-100px;
    right:-100px;
}

/* TSHIRT */
.tshirt-base{
    width:420px;
    position:relative;
    z-index:2;

    filter:
    drop-shadow(0 15px 20px rgba(0,0,0,0.35));
}

/* DESIGN PREVIEW */
.design-preview{

    position:absolute;

    width:140px;
    height:auto;

    top:50%;
    left:50%;

    transform:
    translate(-50%, -10%);

    z-index:3;

    display:none;

    object-fit:contain;

    cursor:grab;

    touch-action:none;

    user-select:none;

    -webkit-user-drag:none;
}

.design-preview:active{
    cursor:grabbing;
}

/* FILE NAME */
#file-name{
    text-align:center;
    margin-top:20px;
    color:#555;
    font-size:15px;
    font-weight:600;
}

/* BUTTON AREA */
.custom-actions{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:25px;
    flex-wrap:wrap;
}

/* BUTTONS */
.upload-btn,
.checkout-btn{

    border:none;
    padding:16px 32px;
    border-radius:14px;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
    transition:0.3s;
}

/* UPLOAD */
.upload-btn{
    background:#27ae60;
    color:white;
}

/* CHECKOUT */
.checkout-btn{
    background:#111;
    color:white;
}

/* HOVER */
.upload-btn:hover,
.checkout-btn:hover{
    transform:
    translateY(-3px)
    scale(1.03);
}

/* PRODUCT TEXT */
.selected-product-text{
    text-align:center;
    margin-top:20px;
    color:#333;
    font-weight:600;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:900px){

    .designer-layout{
        flex-direction:column;
    }

    .designer-panel{
        width:100%;
    }

    .designer-preview{
        width:100%;
        min-width:100%;
    }

    .preview-stage{
        height:520px;
    }

    .tshirt-base{
        width:300px;
    }

    .design-preview{
    width:100px;
    height:auto;
    }

    .custom-heading h2{
        font-size:34px;
    }
}

/* =========================================
   HEADER RIGHT
========================================= */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

/* LOGIN BUTTON */
.login-btn{
    border:none;
    background:#111;
    color:white;

    padding:12px 22px;

    border-radius:12px;

    font-weight:700;

    cursor:pointer;
}

/* =========================================
   AUTH POPUP
========================================= */

.auth-popup{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.6);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* BOX */
.auth-box{

    width:400px;

    background:white;

    border-radius:24px;

    padding:40px;

    position:relative;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

/* CLOSE */
.close-auth{

    position:absolute;

    top:20px;
    right:20px;

    cursor:pointer;

    font-size:20px;
}

/* TITLE */
.auth-box h2{
    margin-bottom:10px;
    color:#111;
}

.auth-subtitle{
    color:#666;
    margin-bottom:30px;
}

/* INPUTS */
.auth-box input{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border-radius:12px;

    border:1px solid #ddd;

    font-size:15px;
}

/* BUTTONS */
.auth-main-btn,
.auth-secondary-btn,
.google-btn{

    width:100%;

    border:none;

    padding:15px;

    border-radius:12px;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    margin-top:10px;
}

/* REGISTER */
.auth-main-btn{
    background:#27ae60;
    color:white;
}

/* LOGIN */
.auth-secondary-btn{
    background:#111;
    color:white;
}

/* GOOGLE */
.google-btn{
    background:#f2f2f2;
    color:#111;
}

/* DIVIDER */
.auth-divider{
    text-align:center;
    margin:20px 0;
    color:#888;
}

/*custom part in index*/
.modern-options button.active{

background:black;

color:white;

border:2px solid black;

}

.design-preview{

position:absolute;

width:120px;

top:80px;

left:50%;

transform:translate(-50%,-50%);

cursor:move;

user-select:none;

z-index:10;

display:none;

}

/* Prevent horizontal collapse */
*{
    box-sizing:border-box;
}

html,body{
    overflow-x:hidden;
}

.why-vrudhams{

padding:80px 8% 70px;

background:#f8fafc;

text-align:center;

}

.why-vrudhams h2{

font-size:48px;

font-weight:800;

margin-bottom:15px;

color:#111;

}

.why-vrudhams p{

color:#666;

font-size:18px;

margin-bottom:60px;

}

.why-grid{

display:grid;

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

gap:30px;

}

.why-card{

background:#fff;

padding:30px;

border-radius:22px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-icon{

font-size:55px;

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

}

.why-card p{

margin:0;

font-size:16px;

line-height:1.6;

}

@media(max-width:992px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}

.how-section{

padding:80px 8% 70px;

background:#ffffff;

text-align:center;

}

.section-title h2{

font-size:48px;

font-weight:800;

margin-bottom:15px;

}

.section-title p{

font-size:18px;

color:#666;

margin-bottom:45px;

}

.timeline{

display:flex;

justify-content:space-between;

align-items:flex-start;

position:relative;

}

.timeline::before{

content:"";

position:absolute;

top:40px;

left:8%;

right:8%;

height:4px;

background:linear-gradient(
90deg,
#27ae60,
#4CAF50,
#81C784
);

z-index:0;

}

.timeline-item{

position:relative;

width:23%;

z-index:1;

}

.circle{

width:95px;
height:95px;

background:linear-gradient(135deg,#111,#2c3e50);

color:#fff;

font-size:42px;

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

border-radius:50%;

margin:auto;

box-shadow:0 18px 40px rgba(0,0,0,.18);

transition:all .35s ease;

position:relative;

}

.timeline-item:hover .circle{

transform:translateY(-10px) scale(1.08);

background:linear-gradient(135deg,#27ae60,#2ecc71);

box-shadow:0 20px 45px rgba(39,174,96,.35);

}

.timeline-item h3{

margin-top:18px;

margin-bottom:15px;

font-size:24px;

}

.timeline-item p{

color:#666;

line-height:1.7;

font-size:16px;

}

@media(max-width:900px){

.timeline{

flex-direction:column;

gap:50px;

}

.timeline::before{

display:none;

}

.timeline-item{

width:100%;

}

}

.step-number{

display:block;

margin-bottom:15px;

font-size:14px;

letter-spacing:4px;

font-weight:700;

color:#27ae60;

}

.perfect-for{

   padding:85px 8%;

    background:#f8fafc;

}

.perfect-title{

    text-align:center;

   margin-bottom:50px;

}

.perfect-title h2{

    font-size:48px;

    font-weight:800;

    color:#111;

    margin-bottom:15px;

}

.perfect-title p{

    font-size:18px;

    color:#666;

    max-width:800px;

    margin:auto;

}

.perfect-grid{

    display:grid;

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

    gap:35px;

}

.perfect-card{

    background:#fff;

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.perfect-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.perfect-icon{

    font-size:55px;

    margin-bottom:25px;

}

.perfect-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111;

}

.perfect-card p{

    color:#666;

    line-height:1.7;

    font-size:16px;

}

@media(max-width:992px){

.perfect-grid{

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

}

}

@media(max-width:768px){

.perfect-grid{

grid-template-columns:1fr;

}

}

.faq-section{

padding:75px 8% 70px;

background:#fff;

}

.faq-title{

text-align:center;

margin-bottom:40px;

}

.faq-title h2{

font-size:48px;

font-weight:800;

margin-bottom:15px;

color:#111;

}

.faq-title p{

font-size:18px;

color:#666;

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

margin-bottom:15px;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-question{

width:100%;

padding:22px 30px;

font-size:18px;

font-weight:600;

background:#fff;

border:none;

cursor:pointer;

display:flex;

justify-content:space-between;

align-items:center;

}

.faq-question span{

font-size:28px;

color:#27ae60;

}

.faq-answer{

display:none;

padding:0 30px 25px;

background:#fff;

}

.faq-answer p{

line-height:1.8;

color:#666;

}

/* ================= CONTACT ================= */

.contact-section{

padding:90px 8%;

background:#111827;

color:#fff;

}

.contact-header{

text-align:center;

margin-bottom:50px;

}

.contact-header h2{

font-size:50px;

font-weight:800;

margin-bottom:15px;

}

.contact-header p{

font-size:18px;

color:#d1d5db;

max-width:700px;

margin:auto;

line-height:1.8;

}

.contact-grid{

display:grid;

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

gap:30px;

}

.contact-card{

background:#1f2937;

padding:32px 22px;

border-radius:22px;

text-align:center;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.contact-card:hover{

transform:translateY(-10px);

background:#27ae60;

}

.contact-icon{

font-size:52px;

margin-bottom:20px;

}

.contact-card h3{

font-size:24px;

margin-bottom:12px;

}

.contact-card p{

color:#d1d5db;

line-height:1.8;

margin-bottom:20px;

}

.contact-card a{

text-decoration:none;

color:#fff;

font-weight:700;

}

.contact-card:hover a{

color:#fff;

}

@media(max-width:992px){

.contact-grid{

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

}

}

@media(max-width:768px){

.contact-grid{

grid-template-columns:1fr;

}

}
/* ================= FOOTER ================= */

.footer{

background:#0f172a;

color:#fff;

padding:70px 8% 25px;

}

.footer-container{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:50px;

}

.footer-logo{

font-size:34px;

font-weight:800;

margin-bottom:20px;

color:#fff;

letter-spacing:1px;

}

.footer-about{

line-height:1.8;

color:#cbd5e1;

margin-bottom:30px;

}

.footer-column h3{

font-size:22px;

margin-bottom:25px;

color:#fff;

}

.footer-column ul{

list-style:none;

padding:0;

margin:0;

}

.footer-column ul li{

margin-bottom:15px;

color:#cbd5e1;

}

.footer-column ul li a{

text-decoration:none;

color:#cbd5e1;

transition:.3s;

}

.footer-column ul li a:hover{

color:#27ae60;

padding-left:6px;

}

.social-icons{

display:flex;

gap:18px;

margin-top:15px;

}

.social-icons a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:#1e293b;

border-radius:50%;

color:#fff;

font-size:18px;

transition:.35s;

text-decoration:none;

}

.social-icons a:hover{

background:#27ae60;

transform:translateY(-5px);

}

.footer-bottom{

margin-top:60px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.1);

text-align:center;

color:#94a3b8;

font-size:15px;

line-height:1.8;

}

@media(max-width:992px){

.footer-container{

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

}

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

}

#scrollTopBtn{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#27ae60;

color:#fff;

font-size:20px;

cursor:pointer;

display:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.3s;

z-index:999;

}

#scrollTopBtn:hover{

transform:translateY(-5px);

background:#111;

}