/* ==================================================
   AZLY BASARIAN
   Premium Landing Page
   Version 1.0
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#222;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1140px,92%);

    margin:auto;

}

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

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

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

    backdrop-filter:blur(16px);

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

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    font-size:1.2rem;

    font-weight:800;

    letter-spacing:2px;

}

nav ul{

    display:flex;

    gap:40px;

}

nav a{

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#2563eb;

}

.mobile-menu{

    display:none;

    font-size:2rem;

    cursor:pointer;

}

/* ==========================
HERO
========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

    background:
    radial-gradient(circle at top right,
    #dbeafe 0%,
    transparent 35%),

    radial-gradient(circle at bottom left,
    #f5f3ff 0%,
    transparent 40%),

    #ffffff;

}

.hero-content{

    width:min(1140px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:100px;

    background:#eef4ff;

    color:#2563eb;

    font-weight:600;

    margin-bottom:25px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.hero p{

    font-size:1.15rem;

    color:#666;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-primary{

    background:#2563eb;

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-3px);

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

}

.btn-secondary{

    border:2px solid #2563eb;

    color:#2563eb;

}

.btn-secondary:hover{

    background:#2563eb;

    color:#fff;

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:520px;

    border-radius:28px;

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

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.02);

}

/* ==========================
SECTION
========================== */

section{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#2563eb;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:2.8rem;

    margin-top:15px;

}

.section-title p{

    width:min(700px,90%);

    margin:25px auto 0;

    color:#666;

}

/* ==========================
ABOUT
========================== */

.about-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:70px;

    align-items:start;

}

.about-grid p{

    margin-bottom:25px;

    color:#555;

}

.stats{

    display:grid;

    gap:20px;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:

    0 15px 40px rgba(0,0,0,.05);

}

.stat-card h3{

    color:#2563eb;

    margin-bottom:12px;

}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.delay-1{

    animation-delay:.2s;

}

.delay-2{

    animation-delay:.4s;

}

.delay-3{

    animation-delay:.6s;

}

/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* ==================================================
   FOCUS STATES
================================================== */

a:focus-visible,
button:focus-visible{

    outline:3px solid #2563eb;

    outline-offset:4px;

}

/* ==================================================
   SELECTION
================================================== */

::selection{

    background:#2563eb;

    color:#fff;

}

/* ==================================================
   SCROLLBAR
================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f5f9;

}

::-webkit-scrollbar-thumb{

    background:#2563eb;

    border-radius:100px;

}

::-webkit-scrollbar-thumb:hover{

    background:#1d4ed8;

}

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

@media (max-width:992px){

.hero-content{

grid-template-columns:1fr;

text-align:center;

}

.hero-image{

order:-1;

}

.hero-image img{

width:320px;

}

.about-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:3rem;

}

.section-title h2{

font-size:2.3rem;

}

.timeline::before{

display:none;

}

.timeline-item{

flex-direction:column;

align-items:flex-start;

}

.timeline-year{

margin-bottom:15px;

}

}

/* ==================================================
   SMALL DEVICES
================================================== */

@media (max-width:768px){
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

header .container{

height:72px;

}

nav{

display:none;

}

.mobile-menu{

display:block;

}

.hero{

padding-top:120px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.hero h1{

font-size:2.4rem;

}

.section-title h2{

font-size:2rem;

}

.services-grid{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

.social-links{

flex-direction:column;

align-items:center;

}

.social-links a{

width:250px;

text-align:center;

}

#backToTop{

right:18px;

bottom:18px;

}

}

/* ==================================================
   EXTRA SMALL DEVICES
================================================== */

@media (max-width:480px){

.container{

width:94%;

}

.hero-image img{

width:260px;

}

.hero h1{

font-size:2rem;

}

.hero p{

font-size:1rem;

}

.badge{

font-size:.85rem;

}

.section-title h2{

font-size:1.75rem;

}

.service-card,
.contact-card,
.timeline-content,
.stat-card{

padding:25px;

}

}

/* ==================================================
   PRINT
================================================== */

@media print{

header,
.mobile-menu,
.hero-buttons,
.social-links,
#backToTop{

display:none;

}

body{

background:#fff;

color:#000;

}

section{

padding:30px 0;

}

}

/* ==================================================
   REDUCED MOTION
================================================== */

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

*{

animation:none !important;

transition:none !important;

scroll-behavior:auto !important;

}

}

/* ==================================================
   END
================================================== */


/* CONTACT V1.1 */

.contact-modern{

max-width:700px;

margin:70px auto 0;

}

.contact-item{

display:flex;

align-items:flex-start;

gap:25px;

margin-bottom:35px;

}

.contact-icon{

width:70px;

height:70px;

border-radius:50%;

background:#eef4ff;

display:flex;

justify-content:center;

align-items:center;

font-size:1.7rem;

color:#2563eb;

flex-shrink:0;

}

.contact-item h3{

font-size:1.6rem;

margin-bottom:8px;

}

.contact-item p{

font-size:1.1rem;

color:#555;

}

.contact-item a{

color:#2563eb;

text-decoration:none;

transition:.3s;

}

.contact-item a:hover{

text-decoration:underline;

}

.social-modern{

display:flex;

flex-wrap:wrap;

gap:18px;

margin-top:12px;

}

.social-modern a{

display:flex;

align-items:center;

gap:8px;

font-weight:600;

font-size:1.05rem;

color:#2563eb;

}

.social-modern a i{

font-size:1.35rem;

}


.logo{
    color:#222;
    text-decoration:none;
    font-size:1.2rem;
    font-weight:800;
    letter-spacing:2px;
    transition:.3s;
}

.logo:hover{
    color:#2563eb;
}


.hero-social{

display:flex;

gap:18px;

margin-top:35px;

}

.hero-social a{

width:50px;

height:50px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#2563eb;

color:white;

font-size:1.2rem;

transition:.3s;

}

.hero-social a:hover{

transform:translateY(-6px);

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

}

.numbers{

background:#2563eb;

color:white;

}

.numbers-grid{

display:grid;

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

text-align:center;

gap:40px;

}

.counter{

font-size:4rem;

font-weight:800;

}

.footer-links{

display:flex;

justify-content:center;

gap:25px;

margin:25px 0;

}

.footer-links a{

color:white;

}

footer{

background:#111827;

color:white;

text-align:center;

padding:70px 0;

}

.dark{

background:#111827;

color:white;

}

.dark section{

background:#111827;

color:white;

}

#themeToggle{

border:none;

background:none;

font-size:1.3rem;

cursor:pointer;

}


.whatsapp{

position:fixed;

bottom:25px;

left:25px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:30px;

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

z-index:999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.1);

}