:root {
    --primary-blue: #2b5a9e;
    --light-blue: #eef6fb;
    --gradient-bg: linear-gradient(135deg, #fdfdfd 0%, #d7e9f7 100%);
    --btn-gradient: linear-gradient(to right, #4079c9, #6fa8dc);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--gradient-bg);
    min-height: 100vh;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #2c3e50;
}

.logo img { width: 155px; 
    margin-left: -100px;
    margin-top: -50px;
 }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin: 0 15px; }

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: 0.3s;
    margin-left: 50px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

.login-btn {
    background: #e0e0e0;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    color: #888;
}

/* Hero Section */
.hero {
    padding: 80px 8%;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text { flex: 1; 
margin-top: -40px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-blue);
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--btn-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(64, 121, 201, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.1));
}



/* Achievements Section */
.achievements {
    padding: 100px 8%;
    text-align: center;
    background: transparent; /* Blends with the hero background */
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    color: #666;
}

.section-subtitle .line {
    height: 1px;
    width: 50px;
    background: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    display: inline-block;
    font-size: 3rem;
    color: #4079c9;
    margin-bottom: 10px;
}

.stat-card .plus, .stat-card .percent {
    font-size: 2.5rem;
    color: #4079c9;
    font-weight: bold;
}

.stat-card p {
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
}


/* Free Services Section */
.free-services {
    padding: 80px 8%;
    text-align: left;
}

.services-header h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.services-header h2 span {
    font-weight: 400;
    font-size: 1.8rem;
}

.services-header p {
    color: #666;
    margin-bottom: 40px;
}

/* Resume Card */
.resume-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.text-side {
    flex: 2;
}

.text-side h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.text-side p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.icon-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.envelope-wrapper i {
    font-size: 100px;
    color: #85b0e6;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.1));
}

/* Footer Section */
.main-footer {
    background: transparent;
    padding: 60px 8% 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.tagline {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 20px 0;
    font-weight: 500;
}

.footer-bottom-info p {
    color: #888;
    font-size: 0.9rem;
}

.footer-links-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-col h3 {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #777;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.border-left {
    border-left: 1px solid #ddd;
    padding-left: 30px;
}

.career-text {
    color: #777;
    text-decoration: none;
}

.footer-email {
    display: block;
    color: #444;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #3182ce;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #2c3e50;
}
.logo{
    margin-left: 150px;
}


/* Mobile Responsiveness for Page 3 *



/* Mobile Adjustments */
/* Responsive Design */
.hamburger { display: none; cursor: pointer; }

@media (max-width: 992px) {
    .hero-container { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; margin-top: 30px; }
    
    .nav-links {
        display: none; /* Hidden for mobile toggle */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; }
    .hamburger { display: block; }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }

     .card-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .services-header {
        text-align: center;
    }

    .envelope-wrapper i {
        font-size: 80px;
        margin-bottom: 20px;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        margin-left: 100px;
    }
    
    .border-left {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
    .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #2c3e50;
    margin-left: 190px;
}
.hero-text { 
    font-size: 15px;
}
}