*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f6fb;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */
.site-header{
    background:#ffffff;
    padding:18px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    position:sticky;
    top:0;
    z-index:999;
}

.header-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */
.logo-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none !important;
}

.site-logo{
    height:420px;
    max-height:90px;
    width:auto;
}

.logo-text{
    font-size:22px;
    font-weight:700;
    color:#222;
    text-decoration:none !important;
    border-bottom:none !important;
}

/* Nav */
.main-nav a{
    margin-left:28px;
    text-decoration:none;
    color:#444;
    font-weight:600;
    transition:0.3s;
}

.main-nav a:hover{
    color:#7c3aed;
}

/* Hero */
.hero-section{
    min-height:85vh;
    background:url('images/hero.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(27,18,68,0.86), rgba(57,35,120,0.64));
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    color:#fff;
    padding:40px 20px;
}

.hero-content h1{
    font-size:50px;
    margin-bottom:10px;
    font-weight:800;
}

.hero-content h2{
    font-size:24px;
    margin-bottom:18px;
    color:#ddd6fe;
    font-weight:700;
}

.hero-content p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
    color:#f3f3f3;
}

/* Buttons */
.btn{
    display:inline-block;
    padding:12px 26px;
    margin:6px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:#7c3aed;
    color:#fff;
}

.btn-primary:hover{
    background:#6d28d9;
}

.btn-secondary{
    color:#fff;
    border:1px solid #fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111;
}

/* Purple Section */
.stylish-bg-area{
    background: linear-gradient(135deg, #2b0a3d, #4b1d6b, #6a11cb);
    padding:60px 0;
}

/* White text */
.stylish-bg-area h2,
.stylish-bg-area h3,
.stylish-bg-area p,
.stylish-bg-area li{
    color:#fff;
}

/* Sections */
.section-block{
    padding:70px 0;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.mini-line{
    width:36px;
    height:3px;
    background:#fff;
    display:inline-block;
    margin-bottom:14px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
}

/* Grid */
.card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

/* Cards */
.service-card,
.why-card{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius:10px;
    transition:0.3s;
}

.service-card:hover,
.why-card:hover{
    transform:translateY(-6px);
}

.service-card-inner,
.why-card-inner{
    padding:30px;
    text-align:center;
}

.service-card p,
.why-list li{
    color:#e5e5e5;
}

.read-more-btn{
    color:#fff;
    font-weight:700;
}

/* Footer */
.bottom-info-section{
    background: linear-gradient(135deg, #1f2128, #2a2d36);
    color:#fff;
    padding:70px 0;
}

.bottom-info-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.bottom-info-left a{
    color:#d1d5db;
    text-decoration:none;
}

.bottom-info-left a:hover{
    color:#a78bfa;
}

.bottom-info-right a{
    color:#a78bfa;
    text-decoration:none;
}

/* Responsive */
@media (max-width:768px){
    .main-nav{
        display:none;
    }

    .card-grid{
        grid-template-columns:1fr;
    }

    .bottom-info-wrap{
        grid-template-columns:1fr;
    }

 .site-logo{
    height:250px;
    transform: scale(1.6);   /* 🔥 logo visually boro */
    transform-origin: left center;
}
}