/* ===============================
   THE RIC DIRECTORATE
   Premium Corporate Theme
================================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#ffffff;

color:#222;

line-height:1.7;

overflow-x:hidden;

}

/* NAVIGATION */
/* ==========================
   PREMIUM NAVIGATION
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(0,0,0,.90);
    backdrop-filter:blur(10px);
    z-index:1000;
    box-sizing:border-box;
}

.navbar .logo img{
    height:65px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
    margin:0;
    padding:0;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.navbar ul li a:hover,
.navbar ul li a.active{
    color:#d9232d;
}

.navbar ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#d9232d;
    transition:.3s;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after{
    width:100%;
}

.btn-nav{

background:#d9232d;

padding:12px 28px;

border-radius:40px;

font-weight:600;

}

.btn-nav:hover{

background:white;

color:#111;

}

/* HERO */

.hero{

min-height:100vh;

display:flex;

align-items:center;

justify-content:space-between;

padding:120px 8%;

background:linear-gradient(135deg,#111,#222);

color:white;

}

.hero-text{

max-width:600px;

}

.hero h1{

font-family:'Playfair Display',serif;

font-size:62px;

line-height:1.1;

margin-bottom:30px;

}

.hero p{

font-size:19px;

opacity:.9;

margin-bottom:40px;

}

.hero-btn{

display:inline-block;

background:#d9232d;

color:white;

padding:18px 42px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.hero-btn:hover{

background:white;

color:#111;

}

.hero-image img{

width:430px;

border-radius:20px;

box-shadow:0 25px 50px rgba(0,0,0,.35);

}

/* SECTION TITLES */

section{

padding:90px 8%;

}

section h2{

font-family:'Playfair Display',serif;

font-size:42px;

margin-bottom:50px;

text-align:center;

}

/* SERVICE CARDS */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

text-align:center;

}

.card:hover{

transform:translateY(-10px);

}

.card i{

font-size:46px;

color:#d9232d;

margin-bottom:25px;

}

.card h3{

margin-bottom:15px;

}

/* LEADERS */

.leaders{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

text-align:center;

}

.leaders img{

width:260px;

height:320px;

object-fit:cover;

object-position:center top;

border-radius:18px;

border:5px solid #d9232d;

box-shadow:0 20px 40px rgba(0,0,0,.25);

transition:.4s;

}

.leaders img:hover{

transform:scale(1.03);

}

.leaders h3{

font-size:24px;

margin-bottom:10px;

}

/* CTA */

.cta{

background:#111;

color:white;

text-align:center;

}

.cta p{

max-width:700px;

margin:auto;

margin-bottom:40px;

font-size:18px;

}

/* FOOTER */

footer{

background:#0d0d0d;

color:white;

padding:60px 8%;

text-align:center;

}

footer h3{

font-size:30px;

margin-bottom:20px;

font-family:'Playfair Display',serif;

}

footer p{

margin:8px 0;

}

/* WHATSAPP */

.whatsapp{

position:fixed;

right:30px;

bottom:30px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:32px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.12);

}

/* RESPONSIVE */

@media(max-width:992px){

.hero{

flex-direction:column;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero-image{

margin-top:60px;

}

.hero-image img{

width:320px;

}

.navbar{

flex-direction:column;

gap:20px;

padding:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

}

}

@media(max-width:600px){

.hero{

padding-top:180px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:16px;

}

section h2{

font-size:32px;

}

.logo img{

height:55px;

}

}
/* ABOUT PAGE */

.page-header{

padding:150px 8% 70px;

text-align:center;

background:#111;

color:white;

}

.page-header h1{

font-size:54px;

margin-bottom:20px;

}

.page-header p{

font-size:20px;

color:#bbb;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

padding:90px 8%;

align-items:center;

}

.about-grid img{

width:100%;

border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,.3);

}

.mission{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:80px 8%;

background:#f8f8f8;

}

.mission div{

background:white;

padding:35px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.why-us{

padding:90px 8%;

text-align:center;

}

.why-us h2{

margin-bottom:50px;

font-size:42px;

}

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}
.founder-profile{
    text-align:center;
}

.founder-profile img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    border:6px solid #d9232d;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.founder-profile h3{
    margin-top:18px;
    font-size:28px;
    color:#222;
}

.founder-profile p{
    color:#d9232d;
    font-size:18px;
    font-weight:600;
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:80px 8%;
}

.service-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    border-top:5px solid #d9232d;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h2{
    margin-bottom:18px;
    color:#d9232d;
    font-size:24px;
}

.service-card p{
    color:#555;
    line-height:1.7;
}
.leaders{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
    padding:80px 8%;
}

.leader-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.leader-card:hover{
    transform:translateY(-10px);
}

.leader-card img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    border:6px solid #d9232d;
    margin-bottom:20px;
}

.leader-card h2{
    margin-bottom:8px;
}

.leader-card h4{
    color:#d9232d;
    margin-bottom:15px;
}
.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

padding:80px 8%;

}

.contact-info{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-info p{

margin-bottom:25px;

line-height:1.8;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:16px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

}

.contact-form button{

background:#d9232d;

color:white;

padding:16px 40px;

border:none;

border-radius:10px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#b71c1c;

}
body{
    margin:0;
    padding-top:90px;
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f8f8;
    color:#222;
}
section{
    padding:90px 8%;
}

h1{
    font-size:52px;
    margin-bottom:20px;
}

h2{
    font-size:36px;
}

p{
    line-height:1.8;
}
.service-card,
.leader-card,
.mission div,
.contact-info,
.contact-form{
    transition:.35s ease;
}

.service-card:hover,
.leader-card:hover,
.mission div:hover,
.contact-info:hover,
.contact-form:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}
/* PREMIUM HERO */

.hero{

display:flex;

justify-content:space-between;

align-items:center;

gap:70px;

min-height:80vh;

}

.hero-text{

flex:1;

}

.hero-text h1{

font-size:58px;

line-height:1.2;

margin-bottom:25px;

}

.hero-text p{

font-size:20px;

color:#555;

margin-bottom:35px;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn{

background:#d9232d;

color:white;

padding:15px 35px;

border-radius:8px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn:hover{

background:#b71c1c;

}

.btn-outline{

padding:15px 35px;

border:2px solid #d9232d;

color:#d9232d;

text-decoration:none;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.btn-outline:hover{

background:#d9232d;

color:white;

}

.founder-profile{

width:320px;

text-align:center;

}

.founder-profile img{

width:220px;

height:220px;

border-radius:50%;

object-fit:cover;

object-position:center top;

border:6px solid #d9232d;

box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.founder-profile h3{

margin-top:20px;

font-size:28px;

}

.founder-profile p{

color:#d9232d;

font-weight:600;

font-size:18px;

}
.stats{

display:grid;

grid-template-columns:repeat(4,1fr);

text-align:center;

padding:80px 8%;

background:#111;

color:white;

}

.stats h2{

font-size:50px;

color:#d9232d;

margin-bottom:10px;

}

.stats p{

color:#ddd;

font-size:18px;

}
.service-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.service-icon{
    font-size:55px;
    margin-bottom:20px;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#d9232d;
}
.footer{
    background:#111;
    color:white;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    padding:70px 8%;
}

.footer img{
    width:90px;
    margin-bottom:15px;
}

.footer h4{
    margin-bottom:15px;
    color:#d9232d;
}

.footer p{
    color:#ddd;
    margin:10px 0;
}

.footer a{
    color:#ddd;
    text-decoration:none;
}

.footer a:hover{
    color:#d9232d;
}