p{
    font-size:15px;
    line-height:1.8;
    color:#666;
}
/* ===========================
   GLOBAL STYLES
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}
/* ===========================
   NAVBAR
=========================== */

.navbar{

    position:sticky;
    top:0;
    z-index:1000;

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

    padding:18px 8%;

    background:#ffffff;

    border-bottom:1px solid #e5e7eb;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.logo img{

    width:180px;

}

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-links a{

    text-decoration:none;

    color:#0f172a;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#2563EB;

}

.book-btn{

    background:#2563EB;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.book-btn:hover{

    background:#1D4ED8;

    transform:translateY(-2px);

}

@media(max-width:950px){

.navbar{

flex-direction:column;

gap:20px;

}

.nav-links{

flex-wrap:wrap;

justify-content:center;

}

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

.hero{

    min-height:85vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:100px 8%;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f8fafc
    );

}

.hero-content{

    max-width:850px;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:30px;

    background:#ecfeff;

    color:#2563EB;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:30px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    color:#0f172a;

    margin-bottom:30px;

}

.hero p{

    font-size: 1.15rem;

    color:#555;

    line-height:1.8;

    max-width:720px;

    margin:20px auto 0;

    text-align: center;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}

.primary-btn{

    background:#2563EB;

    color:white;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#1D4ED8;

    transform:translateY(-3px);

}

.secondary-btn{

    border:2px solid #2563EB;

    color:#2563EB;

    padding:16px 32px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#2563EB;

    color:white;

}

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:120px 20px;

    background:#f8f6f1;

}

.hero-content{

    max-width:800px;

}

.hero-tag{

    color:#2563EB;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    color:#1d1d1d;

    margin-bottom:25px;

}

.hero-description{

    font-size:1.2rem;

    color:#666;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#2563EB;

    color:white;

    padding:16px 40px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

.btn-primary:hover{

    background:#24483d;

}

.btn-secondary{

    border:2px solid #2563EB;

    color:#2563EB;

    padding:16px 40px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

}

.btn-secondary:hover{

    background:#2563EB;

    color:white;

}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
}

header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}


.about-text h2{
    margin-bottom:20px;
}

.about-text p{
    line-height:1.9;
}


.btn{
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}


nav a{
    transition:.3s;
}

nav a:hover{
    color:#3c7f72;
}


.primary-btn,
.secondary-btn{
    display:inline-block;
    padding:16px 34px;
    border-radius:40px;
    transition:.3s ease;
    font-weight:600;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-4px);
}


section{
    animation: fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}


.services{
    padding:100px 8%;
    background:#f8faf9;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#2563EB;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

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

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}


.team{

    padding:120px 8%;

    background:#ffffff;

}

.team-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;

}

.team-card{

    background:#ffffff;

    border-radius:22px;

    padding:45px;

    text-align:center;

    border:1px solid #E5E7EB;

    transition:.35s ease;

}

.team-card:hover{

    transform:translateY(-10px);

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

}

.team-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#DBEAFE;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:30px;

}

.team-icon i{

    font-size:38px;

    color:#2563EB;

}

.team-card h3{

    margin-bottom:18px;

    color:#0F172A;

}

.team-card p{

    line-height:1.8;

    color:#64748B;

}


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

.about{

    padding:120px 8%;

    background:#ffffff;

}

.about-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:60px;

}

.about-card{

    background:#F8FAFC;

    padding:45px;

    border-radius:22px;

    text-align:center;

    border:1px solid #E2E8F0;

    transition:.35s ease;

}

.about-card:hover{

    transform:translateY(-10px);

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

}

.about-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#DBEAFE;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 30px;

}

.about-icon i{

    font-size:36px;

    color:#2563EB;

}

.about-card h3{

    margin-bottom:20px;

    color:#0F172A;

}

.about-card p{

    color:#64748B;

    line-height:1.8;

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{

    padding:120px 8%;

    background:#F8FAFC;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:60px;

}

.why-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    transition:.35s;

    border:1px solid #E5E7EB;

}

.why-card:hover{

    transform:translateY(-10px);

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

}

.why-icon{

    width:85px;

    height:85px;

    background:#DBEAFE;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 25px;

}

.why-icon i{

    font-size:34px;

    color:#2563EB;

}

.why-card h3{

    margin-bottom:18px;

    color:#0F172A;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

}


/* ===========================
   OUR PROCESS
=========================== */

.process{

    padding:120px 8%;

    background:#ffffff;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    margin-top:60px;

}

.process-card{

    background:#F8FAFC;

    border-radius:22px;

    padding:40px;

    text-align:center;

    border:1px solid #E2E8F0;

    transition:.35s ease;

}

.process-card:hover{

    transform:translateY(-10px);

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

}

.process-number{

    width:75px;

    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#2563EB;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    font-weight:700;

}

.process-card h3{

    margin-bottom:18px;

    color:#0F172A;

}

.process-card p{

    color:#64748B;

    line-height:1.8;

}



.contact{

    padding:120px 8%;

    background:#F8FAFC;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin:60px 0;

}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    overflow-wrap:break-word;
    word-wrap:break-word;
    word-break:break-word;
}
.contact-card a,
.contact-card p{
    font-size:15px;
    line-height:1.8;
    overflow-wrap:break-word;
    word-break:break-word;
}
.contact-card:hover{

    transform:translateY(-10px);

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

}

.contact-card i{

    font-size:38px;

    color:#2563EB;

    margin-bottom:20px;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.faq{
    padding:100px 8%;
    background:#f8faf8;
}

.section-title{
    text-align:center;
    font-size:42px;
    color:#2563EB;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
    font-size:18px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-question{
    width:100%;
    background:white;
    border:none;
    padding:24px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    color:#2563EB;
}

.faq-question span{
    font-size:28px;
    transition:.3s;
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
    color:#555;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active span{
    transform:rotate(45deg);
}
/* ===========================
   REFERRALS PAGE
=========================== */

.content-box{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.page-tag{
    display:inline-block;
    background:#EFF6FF;
    color:#2563EB;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.content-box h1{
    font-size:52px;
    color:#1f2937;
    margin-bottom:20px;
}

.intro{
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
    max-width:850px;
    margin-bottom:50px;
}

.referral-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:60px;
}

.referral-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.referral-card h3{
    color:#2563EB;
    margin-bottom:15px;
}

.referral-card p{
    color:#666;
    line-height:1.8;
}

.steps{
    margin-top:40px;
}

.steps h2{
    text-align:center;
    color:#2563EB;
    margin-bottom:30px;
}

.step{
    background:#F8FAFC;
    border-left:5px solid #2563EB;
    padding:20px 25px;
    border-radius:12px;
    margin-bottom:18px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.back-btn{
    display:inline-block;
    margin-top:40px;
    background:#2563EB;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.back-btn:hover{
    background:#1D4ED8;
}
