:root {
    /* Brand Colors (based on CMYK conversion) */
    --color-navy: #081335;
    --color-royal: #0045A5;
    --color-grey: #707070;
    --color-white: #ffffff;
    --color-light-grey: #f4f7fa;
    --color-accent: #00b4d8;
    /* Soft blue for highlights */

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Outfit', sans-serif;

    /* Spacing & Shadows */
    --section-padding: 100px 5%;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-navy);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-secondary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-royal);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 69, 165, 0.3);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-royal);
    border-radius: 2px;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Utilities */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.bg-light {
    background-color: var(--color-light-grey);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.w-full {
    width: 100%;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--color-navy);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    margin-left: 15px;
    font-size: 1.1rem;
}

.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-navy);
}

.nav-menu a:hover {
    color: var(--color-royal);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-navy);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 69, 165, 0.05) 0%, transparent 70%);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 69, 165, 0.1);
    color: var(--color-royal);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--color-navy), var(--color-royal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-grey);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 70%;
    /* Reduced 30% */
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* About Us Image Styling */
.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    /* Increased from 85% */
    max-height: 585px;
    /* Increased 30% from 450px */
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

/* Methodology Section */
.methodology {
    background: white;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.method-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.method-img {
    height: 250px;
    overflow: hidden;
}

.method-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.method-card:hover .method-img img {
    transform: scale(1.1);
}

.method-info {
    padding: 30px;
    text-align: left;
}

.method-info h3 {
    margin-bottom: 15px;
    color: var(--color-royal);
}

/* Team Banner Section */
.team-banner {
    padding: 100px 5%;
}

.banner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-grey);
}

.banner-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Brief About */
.brief-about {
    padding: 80px 5%;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.4;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-royal);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--color-navy);
}

/* Resources */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.blog-info {
    padding: 30px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-royal);
    font-weight: 600;
}

.download-box {
    background: var(--color-navy);
    color: white;
    padding: 60px;
    border-radius: 20px;
    margin-top: 40px;
}

.download-box h3 {
    margin-bottom: 15px;
}

.download-box p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--color-royal);
}

.info-card {
    background: var(--color-light-grey);
    padding: 40px;
    border-radius: 20px;
}

.info-card h3 {
    margin-bottom: 25px;
}

.info-card p {
    margin-bottom: 15px;
}

.map-embed {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--color-navy);
    color: white;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        padding-top: 150px;
    }

    .hero p {
        margin: 0 auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    /* Add JS for mobile menu */
    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-royal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-navy);
    transform: translateY(-5px);
}
