/* =========================================
   GOOGLE FONT + RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F7FAFD;
    color:#2C3E50;
    overflow-x:hidden;
}

/* =========================================
   COLOR PALETTE
========================================= */

:root{

--navy:#0A3D91;
--navy-dark:#062A63;
--blue:#2F80ED;
--light-blue:#EAF4FF;

--gold:#F4B400;
--gold-dark:#D89B00;

--white:#ffffff;

--heading:#0B2341;
--text:#6B7280;

--border:#E8EEF6;

--shadow:0 18px 45px rgba(0,0,0,.08);

}

/* =========================================
   COMMON
========================================= */

.container{

    width:min(1200px,92%);
    margin:auto;

}

section{

    position:relative;

}

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;

}

/* =========================================
   HERO
========================================= */

.hero{

    background:
    linear-gradient(135deg,
    var(--navy-dark),
    var(--navy));

    color:white;

    padding:120px 0;

    overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:500px;
height:500px;

right:-180px;
top:-180px;

border-radius:50%;

background:rgba(255,255,255,.05);

}

.hero::after{

content:"";

position:absolute;

width:320px;
height:320px;

left:-100px;
bottom:-120px;

border-radius:50%;

background:rgba(255,255,255,.04);

}

.tagline{

display:inline-block;

color:var(--gold);

font-size:15px;

font-weight:700;

letter-spacing:3px;

margin-bottom:18px;

text-transform:uppercase;

}

.hero h1{

font-size:60px;

font-weight:700;

line-height:1.15;

max-width:720px;

}

.line{

width:90px;

height:4px;


background:var(--gold);

border-radius:20px;

margin:28px 0;

}



.hero p{

max-width:660px;

font-size:17px;

line-height:1.9;

color:#E5EEF9;

}

.hero-btn{

display:inline-flex;

align-items:center;

justify-content:center;

margin-top:40px;

padding:16px 38px;

border-radius:50px;

background:var(--gold);

color:#111;

font-weight:600;

transition:.35s;

}

.hero-btn:hover{

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(244,180,0,.35);

}

/* =========================================
   ABOUT
========================================= */

.about{

padding:100px 0;

background:white;

}

.about-grid{

display:grid;

grid-template-columns:380px 1fr;

gap:70px;

align-items:center;

}

.founder-card{

background:white;

border-radius:24px;

padding:20px;

box-shadow:var(--shadow);

border:1px solid var(--border);

transition:.35s;

}

.founder-card:hover{

transform:translateY(-8px);

}

.founder-card img{

border-radius:18px;

width:100%;

}

.founder-info{

padding:25px 10px 10px;

text-align:center;

}

.founder-info h2{

font-size:28px;

color:var(--heading);

margin-bottom:6px;

}

.founder-info span{

color:var(--blue);

font-weight:600;

}

.section-tag{

display:inline-block;

color:var(--blue);

font-size:15px;

font-weight:700;

letter-spacing:2px;

margin-bottom:18px;

}

.about-content h2{

font-size:46px;

color:var(--heading);

line-height:1.2;

margin-bottom:18px;

}

.title-line{

width:150px;


display: inline-block;

height:4px;

background:var(--gold);

border-radius:20px;

margin-bottom:28px;

}

.about-content p{

font-size:16px;

text-align: justify;

hyphens: auto;

line-height:1.6;

color:var(--text);

margin-bottom:22px;

}

.highlight-box{

background:#F8FBFF;

border-left:5px solid var(--gold);

padding:28px;

border-radius:16px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.highlight-box p{

margin:0;

font-weight:500;

color:var(--heading);

font-style:italic;

}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

.hero{

padding:90px 0;

}

.hero h1{

font-size:48px;

}

.about-grid{

grid-template-columns:1fr;

gap:45px;

}

.founder-card{

max-width:420px;

margin:auto;

}

.about-content{

text-align:center;

}

.title-line{

margin:25px auto;

}

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

.hero{

padding:80px 0;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:15px;

}

.hero-btn{

width:100%;

}

.about{

padding:70px 0;

}

.about-content h2{

font-size:32px;

}

.highlight-box{

padding:22px;

}

}

@media(max-width:480px){

.hero h1{

font-size:30px;

}

.about-content h2{

font-size:28px;

}

}



/* =========================================
   SECTION HEADING
========================================= */

.section-heading{

text-align:center;
margin-bottom:70px;

}

.section-heading span{

display:inline-block;
color:var(--blue);
font-weight:700;
letter-spacing:2px;
margin-bottom:15px;

}

.section-heading h2{

font-size:42px;
color:var(--heading);
margin-bottom:18px;

}

.section-heading p{

max-width:700px;
margin:auto;
line-height:1.9;
color:var(--text);

}

/* =========================================
   FEATURES
========================================= */

.features{

padding:100px 0;
background:#F8FBFF;

}

.feature-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;

}

.feature-card{
text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
background:#fff;
padding:35px;
border-radius:22px;
box-shadow:var(--shadow);
border:1px solid var(--border);
transition:.35s;

}

.feature-card:hover{

transform:translateY(-10px);

}

.feature-icon{

width:70px;
height:70px;

border-radius:18px;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

background:linear-gradient(135deg,var(--navy),var(--blue));

margin-bottom:25px;

}

.feature-card h3{

color:var(--heading);
margin-bottom:15px;
font-size:24px;

}

.feature-card p{

line-height:1.9;
color:var(--text);

}

/* =========================================
   STATS
========================================= */

.stats{

padding:90px 0;

background:
linear-gradient(135deg,
var(--navy-dark),
var(--navy));

color:white;

}

.stats-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.stat-box{

text-align:center;

}

.stat-box h2{

font-size:52px;
color:var(--gold);
margin-bottom:10px;

}

.stat-box p{

font-size:18px;
opacity:.9;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.section-heading h2{

font-size:32px;

}

.feature-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;
gap:40px;

}

.stat-box h2{

font-size:42px;

}

}



/* =========================================
   CONTACT
========================================= */

.contact{

padding:100px 0;

background:white;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.contact-card{

background:#fff;

padding:40px 30px;

border-radius:22px;

box-shadow:var(--shadow);

border:1px solid var(--border);

text-align:center;

transition:.35s;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

background:linear-gradient(135deg,var(--navy),var(--blue));

}

.contact-card h3{

font-size:24px;

margin-bottom:20px;

color:var(--heading);

}

.contact-card a{

color:var(--black);

font-weight:600;

text-decoration:none;

word-break:break-word;

}

.contact-card p{

line-height:2;

font-weight:600;

color:var(--black);

}

/* =========================================
   BUTTONS
========================================= */

.contact-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:60px;

flex-wrap:wrap;

}

.btn{

padding:16px 34px;

border-radius:50px;

font-weight:600;

transition:.35s;

display:inline-block;

}

.btn-call{

background:var(--navy);

color:white;

}

.btn-whatsapp{

background:#25D366;

color:white;

}

.btn-map{

background:var(--gold);

color:#111;

}

.btn:hover{

transform:translateY(-5px);

}

/* =========================================
   FOOTER
========================================= */

footer{

background:linear-gradient(135deg,var(--navy-dark),var(--navy));

padding:70px 0;

text-align:center;

color:white;

}

footer h2{

font-size:38px;

margin-bottom:15px;

}

footer p{

opacity:.9;

line-height:1.8;

}

.copyright{

margin-top:30px;

font-size:14px;

opacity:.7;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact{

padding:70px 0;

}

.contact-card{

padding:30px 22px;

}

.contact-buttons{

flex-direction:column;

}

.btn{

width:100%;

text-align:center;

}

footer h2{

font-size:30px;

}

}