*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#94a0bb;
    color:white;
}

/* Navbar */
nav{
    display:flex;
    justify-content:space-between;
    padding:20px 60px;
    background:#000000;
}

nav h1{
    color:#000000;
}

nav ul{scrollbar-gutter: ;
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:rgb(7, 0, 0);
    transition:0.3s;
}

nav ul li a:hover{
    color:#000000;
}
/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:40px;
    width:auto;
}

.logo span{
    font-size:20px;
    font-weight:bold;
    color:#38bdf8;
}
/* Logo */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:40px;
}

/* Navbar */
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:#ffffff;
}

/* Menu */
nav ul{
    display:flex;
    gap:20px;
    list-style:none;
}

nav ul li a{
    color:#000000;
    text-decoration:none;
}

/* Mobile Menu Button */
.menu-toggle{
    display:none;
    font-size:25px;
    cursor:pointer;
}

/* MOBILE DESIGN */
@media (max-width: 768px){

    nav ul{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#c1cdff;
        flex-direction:column;
        text-align:center;
        display:none;
    }

    nav ul.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}
video{
    width:100%;
    height:auto;
}
/* Hero */
.hero{
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#1e293b);
}

.hero h2{
    font-size:45px;
}

.hero p{
    margin:15px 0;
}

/* Button */
.btn{
    padding:12px 25px;
    background:#38bdf8;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

/* Sections */
section{
    padding:60px;
    text-align:center;
}

/* Cards */
.container{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    background:#1e293b;
    padding:20px;
    border-radius:10px;
    width:250px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
    background:#334155;
}

/* Contact */
input, textarea{
    width:300px;
    padding:10px;
    margin:10px;
    border:none;
    border-radius:5px;
}

/* ================================
   ABOUT HIDC SECTION
================================ */
.about-hidc {
    padding: 100px 8%;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Container */
.about-hidc .container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
    animation: fadeUp 1s ease;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #0a1f44;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    max-width: 650px;
}

/* Cards Layout */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual Card */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeUp 1s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.15);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.25);
}

.icon-box i {
    font-size: 28px;
    color: #ffffff;
}

/* Card Content */
.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Right Image */
.about-image {
    position: relative;
    animation: fadeRight 1.2s ease;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Decorative Background Effect */
.about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.15;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hidc .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hidc {
        padding: 80px 5%;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p,
    .card-content p {
        font-size: 15px;
    }

    .info-card {
        padding: 22px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .icon-box i {
        font-size: 24px;
    }

    .card-content h3 {
        font-size: 20px;
    }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    position: relative;
    padding: 110px 8%;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 50%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.12);
    top: 80px;
    left: -100px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 198, 255, 0.10);
    bottom: 80px;
    right: -100px;
}

/* Container */
.contact-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: auto;
}

/* Tag */
.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 123, 255, 0.10);
    color: #007bff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Hero */
.contact-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
    animation: fadeUp 1s ease;
}

.contact-hero h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #0a1f44;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.9;
    color: #5c6a7d;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 90px;
}

/* Image */
.office-image {
    margin-bottom: 30px;
}

.office-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    transition: 0.5s ease;
}

.office-image img:hover {
    transform: scale(1.02);
}

/* Cards */
.contact-cards {
    display: grid;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.12);
}

.card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.25);
}

.card-icon i {
    color: #ffffff;
    font-size: 24px;
}

.card-content h3 {
    font-size: 22px;
    color: #0a1f44;
    margin-bottom: 8px;
}

.card-content p {
    color: #5c6a7d;
    line-height: 1.8;
}

/* Right Panel */
.contact-right {
    background: #ffffff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.form-header h3 {
    font-size: 32px;
    color: #0a1f44;
    margin-bottom: 10px;
}

.form-header p {
    color: #5c6a7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a1f44;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #d9e4f1;
    border-radius: 14px;
    outline: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.10);
}

/* Button */
.submit-btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.submit-btn:hover,
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.30);
}

/* FAQ */
.faq-section {
    margin-bottom: 90px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h3 {
    font-size: 36px;
    color: #0a1f44;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.faq-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
}

.faq-card i {
    font-size: 34px;
    margin-bottom: 18px;
    color: #007bff;
}

.faq-card h4 {
    font-size: 22px;
    color: #0a1f44;
    margin-bottom: 12px;
}

.faq-card p {
    color: #5c6a7d;
    line-height: 1.8;
}

/* CTA */
.contact-cta {
    text-align: center;
    padding: 70px 40px;
    border-radius: 35px;
    background: linear-gradient(135deg, #0a1f44, #007bff);
    color: #ffffff;
    margin-bottom: 90px;
}

.contact-cta h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 17px;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* =========================
   MAP SECTION - LANDSCAPE STYLE
========================= */
.map-section {
    text-align: center;
    margin-top: 40px;
}

.map-header {
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 36px;
    color: #0a1f44;
}

/* Landscape Map Container */
.map-wrapper {
    width: 100%;
    max-width: 1400px;   /* Wider landscape layout */
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    position: relative;
}

/* Landscape Ratio (16:9) */
.map-wrapper iframe {
    width: 100%;
    height: 650px;       /* Large landscape height */
    border: 0;
    display: block;
}

/* Large Screens */
@media (min-width: 1600px) {
    .map-wrapper iframe {
        height: 750px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .map-wrapper {
        max-width: 100%;
        border-radius: 24px;
    }

    .map-wrapper iframe {
        height: 500px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-header h3 {
        font-size: 30px;
    }

    .map-wrapper {
        border-radius: 20px;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .map-wrapper iframe {
        height: 260px;
    }
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid,
    .faq-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h2 {
        font-size: 36px;
    }

    .contact-right {
        padding: 35px;
    }

    .faq-header h3,
    .map-header h3 {
        font-size: 30px;
    }

    .contact-cta h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 5%;
    }

    .contact-hero h2 {
        font-size: 30px;
    }

    .contact-hero p,
    .contact-cta p {
        font-size: 15px;
    }

    .contact-right {
        padding: 28px;
        border-radius: 22px;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}
/* ==========================================
   ABOUT US CONTENT STYLING
========================================== */

.about-text {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    color: #ffffff;
    animation: fadeUp 1s ease;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 20px;
    border-radius: 50px;
    background: rgba(0, 123, 255, 0.10);
    color: #007bff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Main Heading */
.about-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #0a1f44;
    margin-bottom: 30px;
    position: relative;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 16px;
    border-radius: 50px;
    background:  #ffffff);
}

/* Paragraphs */
.about-text p {
    font-size: 17px;
    line-height: 2;
    color: #000000;
    margin-bottom: 22px;
    text-align: justify;
}

/* Sub Headings */
.about-text h3 {
    font-size: 30px;
    font-weight: 700;
    color: #000205;
    margin-top: 45px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 18px;
}

.about-text h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: calc(100% - 12px);
    border-radius: 10px;
    background: linear-gradient(180deg, #007bff, #00c6ff);
}

/* Lists */
.about-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 18px;
}

/* List Items */
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 123, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: all 0.35s ease;
    color: #4b5563;
    line-height: 1.8;
}

.about-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 123, 255, 0.10);
    border-color: rgba(0, 123, 255, 0.18);
}

/* Icons */
.about-list li i {
    margin-top: 4px;
    min-width: 24px;
    font-size: 20px;
    color: #007bff;
}

/* Highlight Box */
.about-highlight {
    margin-top: 45px;
    padding: 35px 40px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0a1f44, #007bff);
    color: #ffffff;
    box-shadow: 0 25px 70px rgba(0, 123, 255, 0.20);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.about-highlight p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 500;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-text h2 {
        font-size: 38px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .about-highlight {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.9;
    }

    .about-text h3 {
        font-size: 22px;
        margin-top: 35px;
    }

    .about-list li {
        padding: 16px 18px;
        gap: 12px;
        font-size: 15px;
    }

    .about-highlight {
        padding: 24px;
        border-radius: 22px;
    }

    .about-highlight p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .section-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-list li i {
        font-size: 18px;
    }
}
/* Footer */
footer{
    background:#8a99db;
    padding:20px;
    text-align:center;
    margin-top:40px;
}
/* ==========================================
   AIMS & OBJECTIVES - PREMIUM DESIGN
========================================== */

.aims-section {
    padding: 110px 8%;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 55%, #ffffff 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative background glow */
.aims-section::before,
.aims-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.aims-section::before {
    width: 320px;
    height: 320px;
    background: rgba(0, 123, 255, 0.10);
    top: 80px;
    left: -120px;
}

.aims-section::after {
    width: 360px;
    height: 360px;
    background: rgba(0, 198, 255, 0.08);
    bottom: 60px;
    right: -140px;
}

/* Container */
.aims-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================
   SECTION HEADER
========================================== */
.aims-header {
    max-width: 950px;
    margin: 0 auto 70px;
    text-align: center;
    animation: fadeUp 1s ease;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(0, 123, 255, 0.10);
    color: #007bff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aims-header h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #0a1f44;
    margin-bottom: 22px;
}

.aims-header p {
    font-size: 18px;
    line-height: 1.9;
    color: #5c6a7d;
}

/* ==========================================
   OBJECTIVES LIST
========================================== */
.aims-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Individual Item */
.aim-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 30px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.06);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top Gradient Bar */
.aim-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
}

/* Hover Effect */
.aim-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.15);
}

/* Icon Box */
.aim-item i {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.22);
    margin-top: 2px;
}

/* Text */
.aim-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #5c6a7d;
    text-align: left;
}

/* ==========================================
   HIGHLIGHT BOX
========================================== */
.aims-highlight {
    margin-top: 70px;
    padding: 42px 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0a1f44, #007bff);
    box-shadow: 0 30px 80px rgba(0, 123, 255, 0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aims-highlight::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.aims-highlight p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 500;
}

/* ==========================================
   ANIMATION
========================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 992px) {
    .aims-header h2 {
        font-size: 38px;
    }

    .aims-header p {
        font-size: 16px;
    }

    .aims-list {
        grid-template-columns: 1fr;
    }

    .aims-highlight {
        padding: 34px 30px;
    }

    .aims-highlight p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .aims-section {
        padding: 80px 5%;
    }

    .aims-header {
        margin-bottom: 50px;
    }

    .aims-header h2 {
        font-size: 30px;
    }

    .aims-header p {
        font-size: 15px;
        line-height: 1.8;
    }

    .aim-item {
        padding: 22px 20px;
        gap: 14px;
        border-radius: 20px;
    }

    .aim-item i {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 20px;
        border-radius: 16px;
    }

    .aim-item p {
        font-size: 15px;
        line-height: 1.8;
    }

    .aims-highlight {
        margin-top: 50px;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .aims-highlight p {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .section-tag {
        font-size: 12px;
        padding: 7px 14px;
    }

    .aims-header h2 {
        font-size: 26px;
    }

    .aim-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .aim-item i {
        margin-bottom: 4px;
    }
}
/* =========================
   HIDC Responsive Footer
========================= */
.hidc-footer {
    background: linear-gradient(135deg, #002147, #004080);
    color: #ffffff;
    padding: 35px 20px 25px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.hidc-footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hidc-footer::after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
}

.footer-logo img:hover {
    transform: scale(1.08) rotate(5deg);
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #003366;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Copyright Text */
.footer-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

/* Tablet */
@media (max-width: 768px) {
    .hidc-footer {
        padding: 30px 15px 20px;
    }

    .footer-logo img {
        width: 70px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-logo img {
        width: 60px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
    }
}

Acitvity 

.image-slider-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbff, #eaf3ff);
    overflow: hidden;
}

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 10px;
}

.slider-header p {
    font-size: 1rem;
    color: #666;
}

/* Slider Container */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Track */
.slider-track {
    display: flex;
    width: max-content;
    animation: scrollImages 60s linear infinite;
}

/* Pause on hover */
.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

/* Slides */
.slide {
    flex: 0 0 auto;
    width: 320px;
    margin: 0 15px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
}

.slide:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 33, 71, 0.22);
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Infinite Scroll Animation */
@keyframes scrollImages {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .image-slider-section {
        padding: 60px 15px;
    }

    .slider-header h2 {
        font-size: 2rem;
    }

    .slide {
        width: 260px;
        margin: 0 10px;
    }

    .slide img {
        height: 180px;
    }

    .slider-wrapper::before,
    .slider-wrapper::after {
        width: 60px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .slider-header h2 {
        font-size: 1.6rem;
    }

    .slider-header p {
        font-size: 0.9rem;
    }

    .slide {
        width: 220px;
    }

    .slide img {
        height: 150px;
    }
}

/* ==========================================
   ABOUT DROPDOWN - VERTICAL (DOWNWARD)
========================================== */

/* Parent */
#menu li {
    position: relative;
}

/* About link with arrow */
#menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Arrow icon */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: inherit;
}

/* Rotate arrow when hover */
#menu .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Submenu Container */
#menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;

    /* Vertical layout */
    display: flex;
    flex-direction: column;

    list-style: none;
    margin: 0;
    padding: 10px 0;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 9999;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

/* Show submenu */
#menu .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Each item full width */
#menu .submenu li {
    display:block;
    width: 100%;
}

/* Links */
#menu .submenu li a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    white-space: nowrap;

    color: #0a1f44;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover */
#menu .submenu li a:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #007bff;
    padding-left: 28px;
}

/* Mobile */
@media (max-width: 768px) {
    #menu .dropdown > a {
        justify-content: space-between;
        width: 100%;
    }

    #menu .submenu {
        position: static;
        width: 100%;
        display: flex;
        flex-direction: column;

        opacity: 1;
        visibility: visible;
        transform: none;

        margin-top: 8px;
        background: rgba(0, 123, 255, 0.04);
        box-shadow: none;
        border-radius: 12px;
    }

    #menu .submenu li a {
        padding: 10px 20px 10px 35px;
        font-size: 13px;
    }
}

/* =========================
   HIDC Beautiful Footer CSS
========================= */

.hidc-footer {
    background: linear-gradient(135deg, #002147, #004080);
    color: #ffffff;
    padding: 50px 20px 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.hidc-footer::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hidc-footer::after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* =========================
   Main HIDC Logo
========================= */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 85px;
    height: auto;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.footer-logo img:hover {
    transform: scale(1.08) rotate(5deg);
}

/* =========================
   Three Partner Logos
========================= */
.footer-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-partner-logo {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.footer-partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.footer-partner-logo img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
}

/* =========================
   Social Media Icons
========================= */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #003366;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* =========================
   Copyright Text
========================= */
.footer-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width: 768px) {
    .hidc-footer {
        padding: 40px 15px 25px;
    }

    .footer-logo img {
        width: 75px;
    }

    .footer-partner-logos {
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-partner-logo {
        width: 75px;
        height: 75px;
        padding: 10px;
    }

    .footer-partner-logo img {
        max-height: 45px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 480px) {
    .footer-logo img {
        width: 65px;
    }

    .footer-partner-logos {
        gap: 10px;
    }

    .footer-partner-logo {
        width: 65px;
        height: 65px;
        border-radius: 16px;
        padding: 8px;
    }

    .footer-partner-logo img {
        max-height: 35px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .footer-text {
        font-size: 13px;
    }
}

/* ==========================================
   MOBILE FRIENDLY DROPDOWN MENU
   This version will NOT hide other menu items
========================================== */

/* Parent item */
#menu li {
    position: relative;
}

/* About link with arrow */
#menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Arrow */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
#menu .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ==========================================
   DESKTOP DROPDOWN
========================================== */
#menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    list-style: none;
    margin: 0;
    padding: 10px 0;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 9999;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s ease;
}

/* Show on hover */
#menu .dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
#menu .submenu li {
    width: 100%;
}

/* Links */
#menu .submenu li a {
    display: block;
    padding: 12px 22px;
    color: #0a1f44;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Hover effect */
#menu .submenu li a:hover {
    background: rgba(0, 123, 255, 0.08);
    color: #007bff;
    padding-left: 28px;
}

/* ==========================================
   MOBILE VERSION
========================================== */
@media (max-width: 768px) {

    /* Make menu items stack vertically */
    #menu {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Each menu item full width */
    #menu > li {
        width: 100%;
    }

    /* Menu links */
    #menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* IMPORTANT:
       Make submenu part of normal flow,
       so it pushes content downward
       instead of covering other items.
    */
    #menu .submenu {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 6px 0;

        display: block;

        /* Reset desktop hidden properties */
        opacity: 1;
        visibility: visible;
        transform: none;

        /* Mobile style */
        background: rgba(0, 123, 255, 0.04);
        border-radius: 12px;
        box-shadow: none;
    }

    /* Submenu links */
    #menu .submenu li a {
        padding: 10px 20px 10px 35px;
        font-size: 13px;
        white-space: normal;
    }

    /* Remove extra hover padding on mobile */
    #menu .submenu li a:hover {
        padding-left: 35px;
    }

    /* Keep arrow visible */
    .dropdown-arrow {
        margin-left: auto;
    }
}
