* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: #f5f5f5;
}

/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #f5f5f5;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.08);

}

/* Logo */
.navbar .logo img {
    height: 52px;
    width: 63px;
}

.logo {
    display: flex;
    align-items: end;
}

.navbar .logo label {

    font-size: .8rem;
    font-weight: 600;
    color: black;

}

/* Links */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    text-decoration: none;
    color: #1E3A89;
    font-weight: 700;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: black;
    text-decoration: underline;
}



/* Enroll Button */
.navbar .btn {
    padding: 10px 20px;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.navbar .btn:hover {
    background: #145DA0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    /* transition: left 0.4s ease-in-out; */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
}

/* Hamburger Animation
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
} */

/* Hero */
.hero {

    color: black;
    /* padding: 120px 0 80px; */
    padding: 20px 24px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.08);
    background-image: url(images/ChatGPT\ Image\ Sep\ 30\,\ 2025\,\ 12_06_22\ PM.png) ;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     z-index: 1;
    
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-image: inherit;  /* Inherit background-image from parent */
    background-position: inherit;
    background-repeat: inherit;
    background-size: inherit;
    filter: blur(2px);  /* Apply blur effect */
    z-index: -1;  /* Make sure pseudo-element stays behind the content */
}

.hero-content {

    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;

    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1E3A89;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #333;
    font-weight: 700;
}

.hero-subtitle2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    max-width: 830px;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #1E3A89;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    border: 1px solid black;
    transform: translateY(-2px);
    color: #1E3A89;
}

.btn-secondary {
    background: transparent;
    color: #1E3A89;
    padding: 15px 30px;
    border: 1px solid black;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    /* display: inline-block; */
}

.btn-secondary:hover {
    background: #1E3A89;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}



.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}





.about-section {
    padding: 20px 24px;

    margin: 0 auto;

}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1e3a89;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 1.5rem;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.feature-card:hover .feature-icon::before {
    width: 100px;
    height: 100px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
    z-index: 1;
    position: relative;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a89;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #1d4ed8;
}

.feature-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;


    }

    .section-title {
        font-size: 2rem;

    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 25px 15px;
    }



}

/* Counter Animation */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;


}

.stat-item:nth-child(1) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;

    display: block;
    margin-bottom: 5px;
    color: black;
}

.stat-label {
    color: #1E3A89;
    font-size: 0.9rem;

    letter-spacing: 0.5px;
}

.team-section {
    padding: 20px 20px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-subtitle {
    font-size: 1.1rem;
    color: black;
    max-width: 600px;
    /* margin: 0 auto; */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    /* Animations ke baad, JS se override mat hone do! */
    transform: translateY(0);
    animation: fadeInUp 0.8s ease forwards;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.team-card:hover .member-photo img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
}

button.view-profile-btn {
    /* position: absolute;
        bottom: 10px;
    right: 36%; */
}

.member-position {
    font-size: 1rem;
    color: #1e3a89;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.view-profile-btn {
    background: #1e3a89;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-profile-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-container {
    text-align: center;
    margin-top: 20px;
}

#viewAllBtn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

#viewAllBtn:hover {
    background: transparent;
}

.view-profile-btn a {

    color: white;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-container {
    text-align: center;
    margin-top: 20px;
}

#viewAllBtn {
    background: #1e3a89;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

#viewAllBtn:hover {
    background: #0056b3;
}

.hidden {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.projects-section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    /* margin-bottom: 60px; */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a89;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 100%;
    /* margin: 0 auto; */
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    /* height: 36rem; */
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.project-card:nth-child(6) {
    animation-delay: 0.6s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card:hover .project-image::before {
    background: rgba(0, 0, 0, 0.1);
}

.project-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    transition: all 0.3s ease;
}

.project-card:hover .project-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    background: #e3f2fd;
    color: #1e3a89;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1e3a89;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    /* position:absolute;
        bottom: 12px;
        left: 20px; */
}

.project-link:hover {
    background: #1565c0;
    transform: translateX(5px);
}

.stats-section {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-item:nth-child(4) {
    animation-delay: 1s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E3A89;
    display: block;
}

.stat-label {
    color: black;
    font-size: 0.9rem;
    margin-top: 5px;
}

.tech-section {
    text-align: center;
    padding: 60px 20px;
}

.tech-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.tech-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tech-card {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.tech-card img {
    width: 50px;
    margin-bottom: 10px;
}

.tech-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

.testimonials {
    background: #f9fafc;
    padding: 20px 20px;

}

.section-header h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.section-header p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 40px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.quote {
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    /* gold */
    margin-bottom: 15px;
    margin-top: 15px;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user h4 {
    font-size: 1rem;
    color: #1e293b;
    margin: 0;
}

.user p {
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-section {
    padding: 20px 20px;
    background: #fff;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e3a89;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
}

.technologies {
    overflow-x: hidden;
    max-width: 100%;
}

.technologies-row img {
    width: 95px;
    height: 50px;
    margin: 20px;
}

@keyframes move-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes move-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-right {
    display: flex;
    animation: move-right 45s linear infinite;
}

.marquee-left {
    display: flex;
    animation: move-left 30s linear infinite;
}

/* Contact Info */
.contact-info {
    flex: 1 1 300px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.08);
    animation: fadeInLeft 1.5s ease;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #1e3a89;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.info-item i {
    color: #1e3a89;
    font-size: 1.2rem;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    margin-right: 12px;
    font-size: 1.3rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #0056b3;
}


/* Contact Form */
.contact-form {
    flex: 1 1 368px;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.08);
    animation: fadeInRight 1.5s ease;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #007bff;
}

.contact-form button {
    background: #1e3a89;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}



footer h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #007bff;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #444;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-social {
    margin: 15px 0;
}

.footer-social a {
    margin: 0 10px;
    font-size: 1.3rem;
    color: #007bff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #0056b3;
    transform: scale(1.2);
}

.footer-bottom {
    margin: 10px;
    font-size: 12px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: fadeInUp 1.5s ease;
}

/* Animations */
/* @keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
} */





@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

}

@media (max-width: 380px) {
    .hero {
        margin-top: 55px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .view-profile-btn {
        position: absolute;
        bottom: 10px;
        left: 23%;
        width: 127px;
    }


    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;

    }

    .hero-image-container {}



    .hero h1 {
        font-size: 1.5rem;

    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.show {
    animation: fadeInUp 1s ease forwards;
}

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

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-rows: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Logo */
    .navbar .logo img {
        height: 36px;
        width: 46px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 3px 0;

    }

    .navbar {
        padding: 15px 15px 10px 15px;
        align-items: end;
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.08)
    }

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



    /* Scroll Animation */
    .scroll-animate {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

    .scroll-animate.animate {
        opacity: 1;
        transform: translateY(0);
    }

}



/* Responsive */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        position: absolute;
        top: 63px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #f5f5f5;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        padding: 30px 20px;
        z-index: 1000;
    }

    .navbar ul li:hover {
        text-decoration: underline;
        color: #333;
    }

    .navbar ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-image-container {
        order: 1;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .floating-badge {
        display: none;
    }

    .features-grid,
    .programs-grid,
    .stats-grid,
    .core-features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-card {
        padding: 25px;
    }

    .projects-section {
        padding: 15px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .project-content {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-section {
        padding: 20px 20px;

    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 25px 15px;
    }
}