.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-family: poppins;
}

.logo {
    height: auto;
    width: auto;
    display: block;
}

.logo img {
    height: 68px;
    width: auto;
}

.navbar-container {
    width: 100%;
    position: fixed;
    /* sits on top of hero */
    top: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar-container {
    position: fixed;
    top: 16px;
    /* space from top */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    /* space from edges */
    max-width: 1200px;
    background: transparent;
    z-index: 1000;
    transition: all 0.35s ease;
}

.navbar {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
}

.list li a {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #2007c1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease-in-out;
}

.list li a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-container.scrolled {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}

.navbar-container.scrolled .list li a {
    color: #111;
}

.navbar-container.scrolled .list li a:hover {
    opacity: 0.7;
}

.navbar-container {
    transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(11, 15, 26, 0.6), rgba(11, 15, 26, 0.6)), url("assets/27.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    color: #ffffff;
}

.hero {
    padding-top: 0px;
}

.hero-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* horizontally centers children */
    text-align: center;
    /* extra safety */
}

.hero-content #hero-title,
.hero-content #hero-subtitle {
    padding: 0 16px;
}

.hero-content #hero-title {
    font-size: 43px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
    text-align: center;
}

.hero-content #hero-subtitle {
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
    /* optional: controls width */
    margin-left: auto;
    /* centers block */
    margin-right: auto;
    text-align: center;
    padding: 0;
    /* remove left/right padding */
}

.about {
    background-color: #ffffff;
}

.about2 h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 40px 40px;
    font-size: 36px;
}

.about h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 20px 20px;
    font-size: 36px;
}

.div2 h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: justify;
    padding: 20px 20px;
    font-size: 25px;
}

.div4 img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    padding-top: 60px;
}

.prog h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-align: center;
    padding: 20px 20px;
    font-size: 30px;
    text-decoration: underline;
    text-decoration-color: #2007c1;
    text-underline-offset: 10px;
    text-decoration-thickness: 4px;
}

.parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 8px;
    padding: 20px 20px;
    text-align: center;
}

.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
}

.div2 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 3;
}

.div3 {
    grid-column: span 2 / span 2;
    grid-row: span 4 / span 4;
    grid-column-start: 5;
}

.parent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.projects-section {
    background: #fff;
    padding: 10px;
    text-align: center;
}

.projects-section h2 {
    font-size: 45px;
    color: #0A1F44;
    margin-bottom: 30px;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 10px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.projects-container {
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
    flex-wrap: wrap;
}

.project-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 500px;
    /* wider for landscape */
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    /* stack image on top, text below */
    padding-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 9px;
    text-align: center;
}

.project-info h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
}

.project-info p {
    font-size: 20px;
    color: #555;
    margin-bottom: 10px;
}

.project-info span {
    display: block;
    font-weight: bold;
    color: #333;
}

.footer {
    background-color: #0A1F44;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}


/* Top Section (Logo + Socials) */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 80px;
}

.footer-logo h2 {
    font-size: 14px;
    font-weight: bold;
}

.footer-socials a {
    margin: 0 10px;
    color: #F99000;
    font-size: 20px;
    transition: 0.3s;
    font-size: 23px;
}

.footer-socials a:hover {
    color: #F98000;
}


/* Links Section */

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: disc;
    padding-bottom: 10px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer-column ul li a:hover {
    color: #F99000;
}


/* Bottom Info */


/* Bottom Info */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 2;
    padding-top: 20px;
    gap: 40px;
    /* increase spacing between sections */
}

.footer-info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    gap: 8px;
    /* tighter gap between icon & text */
}

.footer-info i {
    font-size: 16px;
    color: #F99000;
    margin-top: 2px;
    /* small nudge to align perfectly */
}

.tt5 {
    border: none;
    width: 80%;
    height: 300px;
    border-radius: 8px;
}

p.email a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 600px) {
    .navbar {
        padding: 10px 16px;
    }
    .list {
        gap: 14px;
    }
    .list li a {
        font-size: 14px;
    }
    .hero-content #hero-title {
        font-size: 26px;
        text-align: center;
        padding-top: 60px;
    }
    .hero-content #hero-subtitle {
        font-size: 16px;
        text-align: left;
    }
    .parent {
        grid-template-columns: 1fr;
    }
    .about2 h1 {
        font-size: 22px;
    }
    .prog h2 {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .hero-content #hero-title {
        font-size: 34px;
    }
    .hero-content #hero-subtitle {
        font-size: 20px;
    }
    .parent {
        grid-template-columns: repeat(2, 1fr);
    }
    .about2 h1 {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 1100px;
    }
}


/* ===== MOBILE NAV ===== */

@media (max-width: 768px) {
    .hamburger {
        display: block;
        color: #fff;
        z-index: 1001;
    }
    .navbar-container.scrolled .hamburger {
        color: #111;
    }
    .list {
        position: absolute;
        top: 100%;
        right: 24px;
        background: rgba(15, 15, 20, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 18px;
        padding: 18px 22px;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        display: none;
    }
    .list.active {
        display: flex;
    }
    .navbar-container.scrolled .list {
        background: #fff;
    }
}


/*About us*/

.hero1 {
    min-height: 100vh;
    background: linear-gradient(rgba(11, 15, 26, 0.6), rgba(11, 15, 26, 0.6)), url("assets/35.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    color: #ffffff;
}

.hero {
    padding-top: 0px;
}

.what h1 {
    max-width: 1000px;
    margin: auto;
    color: #0A1F44;
    padding: 60px 20px;
    text-align: center;
    text-decoration: underline;
    font-weight: 500;
}

.what ul li {
    max-width: 1000px;
    margin: auto;
    color: #0A1F44;
    text-align: left;
    font-weight: 400;
    font-size: 30px;
    list-style-type: square;
    position: relative;
    padding-top: 10px;
}

.section {
    padding: 100px 20px;
    background: linear-gradient( 120deg, #0B1C2D, #F2F4F7, #F2C94C);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

.what {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.what img {
    display: block;
    margin: 0 auto;
    width: 100px;
    /* increase this */
    height: auto;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.video-container {
    width: 100%;
    max-width: 100%;
    /* stays inside parent */
    aspect-ratio: 16 / 9;
    /* perfect for video */
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}


/*contact us1*/

.contact-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a1f44, #1e3a8a, #ff7f00);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.shape1 {
    width: 120px;
    height: 120px;
    background: #fff;
    top: 10%;
    left: 5%;
}

.shape2 {
    width: 180px;
    height: 180px;
    background: #ff7f00;
    bottom: 15%;
    right: 8%;
    animation-delay: 2s;
}

.shape3 {
    width: 80px;
    height: 80px;
    background: #0a1f44;
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

.contact-container {
    max-width: 650px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: fadeInUp 1.2s ease;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 600;
    color: #0a1f44;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #ff7f00;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    border-color: #ff7f00;
    box-shadow: 0 0 10px rgba(255, 127, 0, 0.5);
    outline: none;
    transform: scale(1.02);
}

textarea {
    height: 120px;
    resize: none;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0a1f44, #ff7f00);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: linear-gradient(135deg, #ff7f00, #0a1f44);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.contact-info p {
    font-weight: 600;
    color: #0a1f44;
}

.contact-info .icons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.contact-info span:hover {
    transform: translateX(8px) scale(1.05);
    color: #ff7f00;
}

.contact-info i {
    color: #ff7f00;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes float {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-30px)
    }
    100% {
        transform: translateY(0)
    }
}