      /* --- Root Variables & Reset --- */
:root {
    --primary: #0f172a;      /* Navy Blue */
    --secondary: #1e293b;    /* Slate */
    --accent: #af0808;       /* Action Orange */
    --light: #f8fafc;
    --text-dark: #334155;
    --text-light: #94a3b8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- Layout Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--primary); }
.bg-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

img.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded { border-radius: 12px; }

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-white h1, .text-white h2, .text-white h3 { color: var(--white); }

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; }
.subtitle {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.hero-content p{
    color: #262626;
    margin-bottom:20px;
}
.text-gradient {
  background: linear-gradient(to right, #1144b7,#052d89);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #1144b7;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #af0808;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* --- Header / Nav --- */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.9rem;
    font-weight: 700;
    color:#af0808;
    text-transform: uppercase;
}

.logo span { color: #1144b7; }

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    margin: 0 15px;
    text-decoration: none;
    color: #3c3c3c;
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links li a:hover { color: #af0808; }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
       background: radial-gradient(circle at top right, rgb(207 235 255), #ffffff00), radial-gradient(circle at bottom left, rgb(212 225 255), transparent);
    padding-top: 80px;
}
.hero img{
    width: 70%;;
}
.hero-grid{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}
.hero-visual{
    display: flex;
    justify-content: end;
}
.abstract-shape {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 10s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* --- About --- */
.about-image { position: relative; }
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
.experience-badge h3{
    font-size: 33px;
    margin-bottom:8px;
    color: white;
}
.feat-item {
    margin-top: 15px;
    font-weight: 600;
}

.feat-item i {
    color: var(--accent);
    margin-right: 10px;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: 0px 0px 13px -6px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* --- Details Lists --- */
.detail-list { list-style: none; margin-top: 20px; }
.detail-list li { margin-bottom: 15px; font-size: 1.1rem; }
.detail-list li i { color: var(--accent); margin-right: 15px; }

.focus-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}
.focus-box h4{
    color: white;
    font-size: 19px;
}
/* --- Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    padding: 30px;
    border: 1px solid #bdbdbd;
    border-radius: 12px;
    transition: var(--transition);
}

.why-card:hover { background: var(--light); }
.why-card h4{
    color: #444444;
}
.why-icon {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(68 68 68);
    margin-bottom: 10px;
}

/* --- Stats --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* --- Footer --- */
.footer {
    background: #0a0f1d;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }

.social-links a {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 20px;
    transition: var(--transition);
}

.social-links a:hover { background: var(--accent); }

.footer-bottom { padding-top: 30px; font-size: 0.9rem; color: var(--text-light); }

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.cta p{
    margin-bottom: 19px;
}
/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .grid-2, .services-grid, .why-grid, .stats-grid, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 { font-size: 2.8rem; }
    .hero-grid{
        grid-template-columns: 1fr;
    }
    .hero-visual{
            justify-content: center;
            margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu logic in JS */
    }
    .menu-toggle { display: block; }
    .grid-2, .services-grid, .why-grid, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
    .hero { height: auto; padding: 120px 0 60px; text-align: center; }
}