:root {
    --primary: #15405a;
    --secondary: #5a5c64;
    --accent: #413d48;
    --light: #f8fafc;
    --dark: #1e293b;
    --gradient: linear-gradient(135deg, #23242e 0%, #1a8686 50%, #021b1e 100%);
    --shadow: 0 10px 30px rgba(36, 57, 174, 0.2);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--gradient);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img{
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding-right: 40%;
    padding-top: 30px;
    padding-bottom: 30px;
    
    
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    
    
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
}

.section-content {
    text-align: center;
    max-width: 800px;
}

/* Home */
#home {
    background: linear-gradient(135deg, rgba(8, 12, 33, 0.9) 0%, rgba(89, 93, 120, 0.9) 50%, rgba(121, 112, 136, 0.9) 100%);
    color: white;
}

#home h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding-top: 100px;
}

#home p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}


/*CHANGES*/

.main-title{
    color: wheat;
    font-size: clamp(7rem, 8vw, 6rem);
    font-weight: 800;margin-bottom: 2rem;
    padding-top: 2px;
    text-align:center;
}
.subHeader{
    font-style: italic;
    font-size: 30px;
    color:rgb(250, 248, 248);
    margin: 0px;
    text-transform: uppercase;

    
}

/*VISION AND OBJECTIVES */

.vision-section {
        position: relative;
        background: linear-gradient(135deg, #131313 80%, #1a237e 100%);
        overflow: hidden;
        padding: 60px 0;
    }
    .vision-bg {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        z-index: 1;
        pointer-events: none;
    }
    .gradient-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.7;
    }
    .gradient-shape-1 {
        width: 400px; height: 400px;
        top: -80px; left: -120px;
        background: radial-gradient(circle at 40% 40%, #4f8cff 0%, #7b2ff2 80%);
    }
    .gradient-shape-500 {
        width: 320px; height: 320px;
        bottom: -60px; right: -100px;
        background: radial-gradient(circle at 60% 60%, #7b2ff2 0%, #4f8cff 80%);
    }
    .vision-content {
        position: relative;
        z-index: 2;
        display: flex;
        gap: 40px;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .vision-left {
        flex: 1 1 320px;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px 0;
    }
    .vision-title {
        font-family: 'Inter', sans-serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 18px;
    }
    .vision-desc {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        color: #cfd8dc;
        line-height: 1.6;
    }
    .vision-right {
        flex: 1 1 340px;
        min-width: 280px;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .vision-card, .objectives-card {
        background: rgba(255,255,255,0.08);
        border-radius: 22px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.12);
        padding: 28px 24px;
        transition: box-shadow 0.2s, transform 0.2s;
    }
    .vision-card:hover, .objectives-card:hover {
        box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.28);
        transform: translateY(-4px) scale(1.02);
    }
    .vision-card h3, .objectives-card h3 {
        font-family: 'Inter', sans-serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px;
    }
    .vision-statement {
        font-family: 'Inter', sans-serif;
        font-size: 1.05rem;
        color: #b3b8c3;
        margin-bottom: 0;
    }
    .objectives-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .objectives-list li {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        color: #cfd8dc;
        margin-bottom: 10px;
        padding-left: 18px;
        position: relative;
    }
    .objectives-list li::before {
        content: '';
        display: inline-block;
        width: 8px; height: 8px;
        background: linear-gradient(135deg, #4f8cff, #7b2ff2);
        border-radius: 50%;
        position: absolute;
        left: 0; top: 8px;
    }
    @media (max-width: 900px) {
        .vision-content {
            flex-direction: column;
            gap: 32px;
        }
        .vision-left, .vision-right {
            min-width: 0;
        }
    }
    @media (max-width: 600px) {
        .vision-section {
            padding: 36px 0;
        }
        .vision-card, .objectives-card {
            padding: 18px 12px;
        }
        .vision-title {
            font-size: 1.4rem;
        }
    }


    /*UPDATED VERSION OF SERVICE PAGE*/

    #services {
                background:white !important;
            }
            .services-grid-modern {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 40px;
                justify-items: center;
            }
            .service-card-modern {
                position: relative;
                background: linear-gradient(135deg, rgba(30,34,45,0.85) 0%, rgba(20,22,30,0.7) 100%);
                border-radius: 28px;
                box-shadow: 0 8px 32px 0 rgba(20,22,30,0.25), 0 1.5px 6px 0 rgba(0,0,0,0.15);
                backdrop-filter: blur(12px);
                border: 1.5px solid rgba(242, 7, 7, 0.08);
                padding: 48px 32px 40px 32px;
                min-height: 320px;
                overflow: hidden;
                transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
            }
            .service-card-modern:hover {
                transform: translateY(-12px) scale(1.03);
                box-shadow: 0 16px 48px 0 rgba(0,255,255,0.18), 0 8px 32px 0 rgba(20,22,30,0.25);
                border-color: rgba(0,255,255,0.18);
            }
            .service-icon-bg {
                position: absolute;
                top: 24px;
                right: 150px;
                font-size: 7rem;
                color: #fff;
                opacity: 0.05;
                pointer-events: none;
                z-index: 0;

            }
            .service-title-modern {
                font-family: 'Playfair Display', serif;
                font-style: italic;
                font-size: 2rem;
                font-weight: 700;
                color: #fff;
                padding-top: 90px;
                margin-top: 14px;
                z-index: 1;
                position: relative;
                letter-spacing: 0.02em;
            }
            .service-desc-modern {
                font-family: 'Inter', sans-serif;
                font-size: 1.1rem;
                color: #c6c2b3;
                z-index: 1;
                position: relative;
                line-height: 1.6;
            }

        

            @media (max-width: 900px) {
                .services-grid-modern {
                    grid-template-columns: 1fr;
                }
            }



/* Experience */
#experience {
    background: rgba(255, 255, 255, 0.05);
}

#experience h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

#experience p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(22, 21, 21, 0.8);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--dark);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Team */
#team {
    background: rgba(144, 125, 220, 0.1);
}

#team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

#team p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #45ea0e;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.team-member h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: rgb(154, 150, 150) !important;
}

/* Footer */
footer {
    background: rgba(30, 41, 59, 0.9);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.social-links {
    margin-top: 20px;
}

.socialMedia{
    font-size: 10px;
    text-align: center;
}

.fa-envelope{
    padding: 4px;
}

.fa-instagram{
    padding-right: 4px;
}

.fa-linkedin {
    padding-right: 4px;
}

.fa-twitter{
    padding-right: 4px;
}
.social-links a {
    display: inline-block;
	text-align:center;
    margin-right: 10px;
	color: #fff;
	transition: all 0.3s ease;
    font-size: 10px;
    transition: color 0.3s ease;
    text-decoration: none;


}

.social-links a:hover {
    color: var(--accent);
	transform: translateY(-3px);
}


.social-links {
    margin-top: 20px;
    margin-left: 900px;
}

@media (max-width: 1200px) {
    .social-links {
        margin-left: 0;
        justify-content: center;
    }
}






/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-links.active {
        height: 300px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    section {
        padding: 120px 20px 60px;
    }

    .services-grid,
    .projects-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1001;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
