:root {
    --primary: #1a2a6c;
    --secondary: #f09819;
    --light: #f4f4f4;
    --dark: #333;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
header {
    background: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary);
    margin: 0 1.5rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

/* Site logo image */
.site-logo {
    height: 64px;
    width: auto;
    display: block;
}

/* Responsive adjustments for navbar/logo */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 4%;
    }

    .site-logo {
        height: 56px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 48px;
    }

    header {
        padding: 0.6rem 3%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 42, 108, 0.7), rgba(26, 42, 108, 0.7)),
        url('/images/skr_cover_pic.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0 auto 2rem auto;
    max-width: 700px;
}

.btn-main {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-outline {
    border: 2px solid var(--white);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 1rem;
    transition: 0.3s;
}

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

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 4rem 10%;
    background: var(--primary);
    color: white;
    text-align: center;
}

/* Services */
.services {
    padding: 5rem 10%;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 10px auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid var(--secondary);
}

/* About Section */
.about-container {
    display: flex;
    padding: 5rem 10%;
    align-items: center;
    gap: 4rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    margin: 10px 0;
    font-weight: 600;
}

.about-text i {
    color: #2ecc71;
    margin-right: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--secondary);
}

/* Contact */
.contact {
    padding: 5rem 10%;
    background: #222;
    color: white;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

footer {
    padding: 3rem 10%;
    background: #111;
    color: #999;
    text-align: center;
}

.socials a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
}

.burger {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px;
    transition: all 0.3s ease;
}

/* MOBILE RESPONSIVE LOGIC */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
        /* Prevent side scrolling */
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        /* Sidebar width */
        transform: translateX(100%);
        /* Start off-screen */
        transition: transform 0.5s ease-in;
        box-shadow: -2px 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-links li {
        margin: 2rem 0;
        opacity: 0;
        /* Hidden initially for animation */
    }

    .burger {
        display: block;
        /* Show burger on mobile */
    }

    /* This class is toggled by JavaScript */
    .nav-active {
        transform: translateX(0%);
    }

    /* Animation for links when menu opens */
    .nav-active li {
        opacity: 1;
        transition: opacity 0.5s ease 0.2s;
    }

    /* Hero text sizing for mobile */
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 15px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        padding: 0 20px;
        margin-bottom: 2.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 25px;
    }

    .btn-outline {
        margin-left: 0;
    }

    /* Stack sections vertically */
    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .about-container {
        flex-direction: column;
        padding: 4rem 8%;
    }

    .services,
    .contact {
        padding: 4rem 8%;
    }

    .process-container {
        flex-direction: column;
        gap: 25px;
        padding: 3rem 8%;
    }

    .service-grid {
        gap: 2.5rem;
    }
}

/* Burger Animation to 'X' */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ... All previous CSS ... */

/* Mobile Menu Fixes Added Previously */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 99;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 100;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Process Section Styling */
.process-container {
    display: flex;
    justify-content: space-around;
    padding: 2rem 10%;
    text-align: center;
}

.step {
    flex: 1;
    position: relative;
}

.step span {
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Success Message Styling */
.form-success-message {
    display: none;
    /* Hidden by default */
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.form-success-message i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}