/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Inter:wght@400;500;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/********* navbar scrolling *******/

html {
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #020b2b;
    color: #fff;
    padding-top: 100px;

}


/* Navbar */
.navbar {
    position: fixed;
    /* Keeps navbar visible */
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(2, 11, 43, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid #222;

    z-index: 9999;
    /* Keeps navbar above everything */

    padding: 10px 0;
}



/* Container */
.navbar-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}



/* Logo */
.logo-img {
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 90px;
    filter:
        drop-shadow(0 0 10px rgba(9, 37, 61, 0.5)) drop-shadow(0 0 20px rgba(31, 9, 90, 0.4));

}

.logo-img:hover {
    transform: scale(1.05);
}

/* Nav Links */
.navbar-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

/* Remove underline from links */
.navbar-links a {
    text-decoration: none;
    color: inherit;
}

/* Link Items */
.navbar-links li {
    position: relative;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #e5e5e5;
    transition: color 0.3s ease;
}


/* Underline Animation */
.navbar-links li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-links li:hover {
    color: #fff;
}

.navbar-links li:hover::after {
    width: 100%;
}


/* Active Link */
.navbar-links a.active li,
.navbar-links .active {
    color: #fff;
}

.navbar-links .active::after {
    width: 100%;
}

/* Burger */
.burger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}


/* Hero Section */

.hero {

    padding: 80px 0;
    margin-top: -20px;
    background-image: url("assets/Hero_Section.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: left;
    align-items: left;

    color: white;
    text-align: left;
    min-height: 100vh;
}

.hero-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* Left Content */
.hero-left {
    max-width: 50%;
}

.tag {
    color: #fff;
    margin-bottom: 15px;
    font-size: 14px;
}

.hero-left h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #ccc;
}

.hero-left p {
    color: #bbb;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;

}

.hero-left h2 {

    color: #e7e3e3;
    font-family: "monsterrat", sans-serif;

    font-weight: 600;
    margin-bottom: 30px;


}



/* Buttons */
.hero-buttons {
    display: flex;
    gap: 30px;
}

.btn-primary {
    background: #EDC001;
    color: #000;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    border-radius: 6px;

}

.btn-primary:hover {
    background: #ccc;
}

.btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


/* Right Image */
.hero-right {
    position: relative;
    max-width: 50%;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

.hero-right {
    overflow: hidden;
    border-radius: 10px;
}

.hero-image {
    width: 100%;
    transition: transform 0.5s ease;
}

.hero-right:hover .hero-image {
    transform: scale(1.05);
}






/* section services */


.services {
    background: #eee7ae;
    background: linear-gradient(355deg, rgba(238, 231, 174, 1) 21%, rgba(183, 201, 213, 1) 88%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

/* Heading */
.services h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #000;
}

.subtitle {
    color: #555;
    margin-bottom: 50px;
}

/* Cards Layout */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    margin: auto;
}

/* Card */
.card {
    background: #0c0535;
    border: 1px solid #b2d80b;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon {

    font-size: 30px;
    margin-bottom: 15px;
}

.icon img {
    width: 40px;
    height: 40px;
}

/* Title */
.card h3 {
    margin-bottom: 15px;
}

/* List */
.card ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.card ul li {
    margin-bottom: 8px;
    color: #ffffff;
}

/* Button */
.card button {
    background: #EDC001;
    color: #000000;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;

}

.card button a {
    text-decoration: none;
    color: inherit;

}

.card button:hover {
    background: #333;
}





/* Section internship */

.internship {

    /* gradient background */
    background: #121358;
    background: linear-gradient(325deg, rgba(18, 19, 88, 1) 0%, rgba(8, 8, 59, 1) 52%, rgba(54, 173, 163, 1) 100%);

    color: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.internship-2 {
    margin-top: 40px;

}

/* Heading */
.internship h2 {
    font-size: 36px;
    margin-bottom: 10px;

}



.internship .subtitle {
    color: #aaa;
    margin-bottom: 50px;
}

/* Cards Layout */
.internship-cards {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.internship-card {
    background: rgba(2, 11, 43, 0.5);
    width: 100%;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Glow Effect */
.internship-card:hover {
    transform: translateY(-10px);
    border-color: #444;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

/* Image */
.internship-card .image {
    width: 120%;
    height: 300px;
    background: #222;
    border-radius: 10px;
    margin-top: -20px;
    margin-left: -30px;
    margin-bottom: 20px;
    overflow: hidden;


}

.internship-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

}

/* Title */
.internship-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Text */
.internship-card p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Button */
.internship-card button {
    background: #EDC001;
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-top: 20px;
    margin-top: 25px;
}

/* Button Hover */
.internship-card button:hover {
    background: #ccc;
}

.internship-card ul {
    padding-left: 20px;
    line-height: 1.8;
}

.internship-card ul li {
    margin-bottom: 6px;
}

/* Subtle Top Border Animation */
.internship-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: 0.4s;
}

.internship-card:hover::before {
    width: 100%;
}





/* Add perspective to parent */
.internship-cards {
    perspective: 1000px;
}

/* Simple & Professional Card Hover Effect */
.internship-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.internship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}



/* Contact-Section */


.contact-section {
    background: #121358;
    background: linear-gradient(325deg, rgba(18, 19, 88, 1) 0%, rgba(8, 8, 59, 1) 52%, rgba(54, 173, 163, 1) 100%);
    color: #fff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

/* Container Layout */
.container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* RIGHT FORM */
.contact-form {
    background: rgba(2, 11, 43, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.3s;
    justify-content: center;

}

.contact-form:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

/* Labels */
.contact-form label {
    font-size: 14px;
    color: #bbb;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    background: #020b2b;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

/* Input focus glow */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Button */
.submit-btn {
    margin-top: 10px;
    padding: 12px;
    border: none;
    background: #EDC001;
    color: rgba(0, 0, 0, );
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.submit-btn span {
    text-decoration: #000;
}

/* Button animation */
.submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 43, 0.5);
    transition: 0.4s;
    z-index: 0;
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    color: #fff;
}

/* RIGHT CONTENT */
.contact-info h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-form p span {
    color: #EDC001;
    font-weight: 500;
}

.contact-form p {
    display: block;
    align-items: center;
    text-align: center;
}



/* Info Card */
.info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.info-card p {
    margin-top: 5px;
    line-height: 1.2;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

/* Icon */
.icon-con {
    font-size: 22px;
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 50%;
}

/* Animation (Fade Up) */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Delay */
.contact-form {
    animation-delay: 0.2s;
}

.contact-info {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*  About-Section */
.about {
    background: #eee7ae;
    background: linear-gradient(355deg, rgba(238, 231, 174, 1) 21%, rgba(183, 201, 213, 1) 88%);
    color: #000;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;

    width: 100%;
    min-height: 490px;
}

/* Container */
.about-container {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Content */
.about-left {
    max-width: 50%;
}

.about-left h1 {
    font-size: 36px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;

}

.about-left p {
    color: #555;
    line-height: 1.5;
    font-size: 13px;
    margin-bottom: 30px;
}

/* Right Image */
.about-right {
    max-width: 50%;
    display: flex;
    margin-top: 28px;

}

.about-right img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image Hover Effect */
.about-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Delay for stagger effect */
.about-left {
    animation-delay: 0.2s;
}

.about-right {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Footer */
.footer {
    background: #020b2b;
    color: #f0ebeb;
    padding: 60px 20px 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e5e5e5;
}

/* Container */
.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    font-size: 16px;
}

/* Columns */
.footer-col h2 {
    font-size: 22px;
    margin: 10px 0;
}

.footer-col h2 span {
    font-weight: 300;
    color: #f3ecec;
}

.footer-col p {
    color: #faf8f8;
    font-size: 16px;
    line-height: 1.6;
}

/* Logo */
.footer-logo {
    width: 170px;
    margin-bottom: 10px;

}

/* Headings */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

/* Link Style */
.footer-col ul li a {
    text-decoration: none;
    color: #f3ecec;
    transition: 0.3s;
    position: relative;
}

/* Underline animation */
.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #23a00a;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #086d16;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

/* Fade animation */
.footer-col {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.footer-col:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.6s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
/* =========================================
   MOBILE RESPONSIVE FIX
========================================= */

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Laptop & Small Desktop */
@media screen and (max-width: 1024px) {

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left h2 {
        font-size: 24px;
    }

    .cards,
    .internship-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 30px;
    }

    .about-right img {
        width: 100%;
        max-width: 500px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media screen and (max-width: 768px) {

    body {
        padding-top: 80px;
    }

    /* Navbar */
    .burger {
        display: block;
    }

    .navbar-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 250px;
        background: #020b2b;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        display: none;
        border-radius: 10px;
    }

    .navbar-links.active,
    .navbar-links.show {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 50px 20px;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-left h2 {
        font-size: 22px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Services */
    .cards {
        grid-template-columns: 1fr;
    }

    /* Internship */
    .internship-cards {
        grid-template-columns: 1fr;
    }

    .internship-card .image {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        height: 250px;
    }

    /* About */
    .about {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-left,
    .about-right {
        max-width: 100%;
    }

    .about-left h1 {
        font-size: 32px;
    }

    .about-left p {
        font-size: 14px;
        text-align: justify;
    }

    .about-right img {
        width: 100%;
        max-width: 500px;
    }

    /* Contact */
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info h1 {
        font-size: 30px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {

    /* Logo */
    .logo-img {
        width: 70px;
        height: auto;
    }

    /* Hero */
    .hero {
        padding: 40px 15px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left h2 {
        font-size: 18px;
    }

    .hero-left p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    /* Section Headings */
    .services h2,
    .internship h2,
    .about-left h1,
    .contact-info h1 {
        font-size: 28px;
    }

    /* Cards */
    .card,
    .internship-card {
        padding: 20px;
    }

    .internship-card .image {
        height: 200px;
    }

    /* About */
    .about {
        padding: 50px 15px;
    }

    .about-left p {
        font-size: 13px;
        line-height: 1.8;
    }

    /* Contact */
    .contact-form {
        padding: 20px;
    }

    .contact-info h1 {
        font-size: 26px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }
}

/* Contact Form Support Styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-status-container {
    margin-top: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-status-msg {
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.form-status-msg.success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-status-msg.error {
    background-color: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

.form-status-msg.loading {
    background-color: rgba(237, 192, 1, 0.15);
    border: 1px solid #EDC001;
    color: #EDC001;
}