/* ==================================
   GLOBAL SETTINGS
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#050b16;

    color:#ffffff;

    overflow-x:hidden;
}

section{

    position:relative;

    overflow:hidden;
}

/* ==================================
   NAVBAR
================================== */

.cyber-navbar{

    padding:15px 0;

    background:rgba(5,11,22,.85);

    backdrop-filter:blur(15px);

    transition:.4s ease;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.cyber-navbar.scrolled{

    background:#040913;

    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.site-logo{

    height:60px;

    width:auto;
}

.navbar-nav .nav-link{

    color:#ffffff;

    font-size:15px;

    font-weight:500;

    margin-left:20px;

    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:#66A9D1;
}

.navbar-toggler{

    border:none;

    color:#ffffff;
}

.navbar-toggler:focus{

    box-shadow:none;
}

.navbar-toggler i{

    color:#ffffff;

    font-size:26px;
}
/* ==================================
   HERO SECTION
================================== */

.hero-section{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding:160px 0 120px 0;

    background:
    linear-gradient(
    rgba(5,11,22,.88),
    rgba(5,11,22,.95)
    ),
    url('../assets/images/space.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{

    color:#66A9D1;

    letter-spacing:5px;

    font-size:18px;

    margin-bottom:20px;

    font-weight:600;
}

.hero-title{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;
}

.hero-heading{

    font-size:34px;

    color:#66A9D1;

    font-weight:600;

    line-height:1.4;

    margin-bottom:30px;
}

.hero-description{

    font-size:18px;

    line-height:1.9;

    color:#c7d2e0;

    max-width:650px;

    margin-bottom:40px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.cyber-btn{

    background:#66A9D1;

    color:#fff;

    padding:16px 35px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.cyber-btn:hover{

    background:#4d96c2;

    color:#fff;
}

.cyber-btn-outline{

    border:2px solid #66A9D1;

    color:#66A9D1;

    padding:16px 35px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.cyber-btn-outline:hover{

    background:#66A9D1;

    color:#fff;
}

.hero-logo{

    max-width:350px;

    width:100%;

    animation:floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:991px){

    .hero-section{
        text-align:center;
    }

    .hero-title{
        font-size:52px;
    }

    .hero-heading{
        font-size:28px;
    }

    .hero-logo{
        margin-top:50px;
        max-width:300px;
    }

    .hero-buttons{
        justify-content:center;
    }
}

@media(max-width:768px){

    .hero-title{
        font-size:42px;
    }

    .hero-heading{
        font-size:24px;
    }

    .hero-description{
        font-size:16px;
    }
}


/* ==================================
   ABOUT SECTION
================================== */

.about-section{

    padding:120px 0;

    background:#081120;
}

.about-image{

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.section-heading{

    margin-bottom:40px;
}

.section-heading h5{

    color:#66A9D1;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:15px;

    font-weight:600;
}

.section-heading h2{

    font-size:42px;

    font-weight:700;

    line-height:1.3;
}

.about-text{

    color:#c7d2e0;

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;
}

/* ==================================
   VISION & MISSION
================================== */

.vision-mission-section{

    padding:120px 0;

    background:#050b16;
}

.vm-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px 40px;

    height:100%;

    transition:.4s ease;

    backdrop-filter:blur(12px);
}

.vm-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.vm-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#66A9D1;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;
}

.vm-icon i{

    font-size:32px;

    color:#ffffff;
}

.vm-card h3{

    font-size:32px;

    font-weight:700;

    margin-bottom:25px;
}

.vm-card p{

    color:#c7d2e0;

    line-height:1.9;

    font-size:17px;
}

.mission-list{

    list-style:none;

    padding:0;
}

.mission-list li{

    color:#c7d2e0;

    margin-bottom:18px;

    line-height:1.8;

    position:relative;

    padding-left:30px;
}

.mission-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#66A9D1;

    font-weight:700;
}

/* ==================================
   RESEARCH DOMAINS
================================== */

.research-domains-section{

    padding:100px 0;

    background:#081120;
}

.domain-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    height:100%;

    transition:.4s ease;
}

.domain-card:hover{

    transform:translateY(-8px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.domain-card h4{

    color:#66A9D1;

    font-size:24px;

    margin-bottom:20px;

    font-weight:600;
}

.domain-card p{

    color:#c7d2e0;

    line-height:1.8;

    font-size:16px;
}


/* ==================================
   INFRASTRUCTURE SECTION
================================== */

.infrastructure-section{

    padding:100px 0;
}

.facility-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    height:100%;

    transition:.4s ease;
}

.facility-card:hover{

    transform:translateY(-8px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.facility-card h4{

    color:#66A9D1;

    font-size:24px;

    margin-bottom:20px;

    font-weight:600;
}

.facility-card p{

    color:#c7d2e0;

    line-height:1.8;

    font-size:16px;
}

/* ==================================
   SERVICES SECTION
================================== */

.services-section{

    padding:120px 0;

    background:#050b16;
}

.service-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.4s ease;
}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.service-card i{

    font-size:50px;

    color:#66A9D1;

    margin-bottom:25px;
}

.service-card h4{

    font-size:24px;

    font-weight:600;

    margin-bottom:20px;
}

.service-card p{

    color:#c7d2e0;

    line-height:1.8;

    margin:0;
}

/* ==================================
   STATISTICS SECTION
================================== */

.stats-section{

    padding:120px 0;

    background:#081120;
}

.stat-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    text-align:center;

    padding:55px 20px;

    min-height:220px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    transition:.4s ease;
}
.stat-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.stat-card h3{

    font-size:52px;

    font-weight:800;

    color:#66A9D1;

    margin-bottom:15px;
}

.stat-card p{

    color:#c7d2e0;

    font-size:18px;

    margin:0;
}

/* ==================================
   NEWS SECTION
================================== */

.news-section{

    padding:120px 0;

    background:#050b16;
}

.news-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px;

    height:100%;

    transition:.4s ease;
}

.news-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.news-date{

    color:#66A9D1;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:20px;

    text-transform:uppercase;
}

.news-card h4{

    font-size:26px;

    line-height:1.5;

    margin-bottom:20px;
}

.news-card p{

    color:#c7d2e0;

    line-height:1.8;

    margin-bottom:30px;
}

.news-card a{

    color:#66A9D1;

    text-decoration:none;

    font-weight:600;
}

.news-card a:hover{

    color:#ffffff;
}

/* ==================================
   PUBLICATIONS SECTION
================================== */

.publication-section{

    padding:100px 0;

    background:#050b16;

}

/* Publication Card */

.publication-tile{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 35px;

    height:100%;

    display:flex;

    flex-direction:column;

    transition:all .35s ease;

}

.publication-tile:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.18);

}

/* Heading */

.publication-tile h4{

    color:#66A9D1;

    font-size:30px;

    font-weight:700;

    margin-bottom:22px;

    text-decoration:none !important;

}

/* Description */

.publication-tile p{

    color:#c7d2e0;

    font-size:17px;

    line-height:1.8;

    margin-bottom:35px;

    text-decoration:none !important;

}

/* View Link */

.publication-view-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:auto;

    font-size:17px;

    font-weight:600;

    color:#66A9D1 !important;

    text-decoration:none !important;

    transition:all .3s ease;

}

/* Remove underline completely */

.publication-view-link:link,
.publication-view-link:visited,
.publication-view-link:hover,
.publication-view-link:focus,
.publication-view-link:active{

    color:#66A9D1 !important;

    text-decoration:none !important;

    outline:none;

}

/* Arrow animation */

.publication-view-link i{

    transition:transform .3s ease;

}

.publication-tile:hover .publication-view-link{

    color:#8ac9ef !important;

}

.publication-tile:hover .publication-view-link i{

    transform:translateX(6px);

}

/* Remove underline from everything inside */

.publication-view-link *,
.publication-tile a *,
.publication-tile *{

    text-decoration:none !important;

}

/* Keyboard accessibility */

.publication-view-link:focus-visible{

    outline:2px solid #66A9D1;

    outline-offset:4px;

}

/* Responsive */

@media(max-width:991px){

    .publication-tile{

        padding:35px 30px;

    }

}

@media(max-width:768px){

    .publication-tile{

        padding:30px 25px;

    }

    .publication-tile h4{

        font-size:26px;

    }

    .publication-tile p{

        font-size:16px;

    }

}


/* ==================================
   EVENTS SECTION
================================== */

.events-section{

    padding:120px 0;

    background:#050b16;
}

.event-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px;

    display:flex;

    gap:25px;

    height:100%;

    transition:.4s ease;
}

.event-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.event-date{

    min-width:90px;

    height:90px;

    border-radius:20px;

    background:#66A9D1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;
}

.event-date span{

    font-size:34px;

    font-weight:700;
}

.event-date small{

    font-size:14px;

    letter-spacing:2px;
}

.event-content h4{

    font-size:24px;

    margin-bottom:20px;
}

.event-content p{

    color:#c7d2e0;

    line-height:1.8;
}

.event-meta{

    margin-top:20px;

    color:#66A9D1;
}

/* ==================================
   TEAM SECTION
================================== */

.team-section{

    padding:120px 0;

    background:#081120;
}

.team-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    overflow:hidden;

    text-align:center;

    transition:.4s ease;

    height:100%;
}

.team-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.team-image{

    width:100%;

    height:320px;

    object-fit:cover;
}

.team-content{

    padding:30px;
}

.team-content h4{

    font-size:24px;

    margin-bottom:10px;
}

.team-content h6{

    color:#66A9D1;

    margin-bottom:15px;
}

.team-content p{

    color:#c7d2e0;

    margin:0;
}

/* ==================================
   PARTNERS SECTION
================================== */

.partners-section{

    padding:120px 0;

    background:#050b16;
}

.partner-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px;

    height:140px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s ease;
}

.partner-card:hover{

    transform:translateY(-8px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.partner-card img{

    max-width:100%;

    max-height:80px;

    object-fit:contain;

    filter:grayscale(100%);

    transition:.4s ease;
}

.partner-card:hover img{

    filter:grayscale(0%);
}

/* ==================================
   GALLERY SECTION
================================== */

.gallery-section{

    padding:120px 0;

    background:#081120;
}

.gallery-card{

    overflow:hidden;

    border-radius:25px;

    position:relative;
}

.gallery-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.5s ease;
}

.gallery-card:hover img{

    transform:scale(1.08);
}

/* ==================================
   CTA SECTION
================================== */

.cta-section{

    padding:120px 0;

    background:#050b16;
}

.cta-box{

    background:
    linear-gradient(
    135deg,
    rgba(102,169,209,.15),
    rgba(255,255,255,.05)
    );

    border:1px solid rgba(102,169,209,.2);

    border-radius:35px;

    padding:80px 50px;

    text-align:center;

    backdrop-filter:blur(12px);
}

.cta-box h5{

    color:#66A9D1;

    letter-spacing:4px;

    margin-bottom:20px;
}

.cta-box h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:30px;
}

.cta-box p{

    max-width:800px;

    margin:0 auto 40px;

    color:#c7d2e0;

    line-height:1.9;

    font-size:18px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* ==================================
   FOOTER
================================== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #d5dbe6;
    line-height: 1.7;
}

.footer-contact li i {
    color: #66A9D1;
    font-size: 18px;
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact a {
    color: #d5dbe6;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #66A9D1;
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}
/* ==================================
   PAGE HERO
================================== */

.page-hero{

    padding:180px 0 20px;

    background:
    linear-gradient(
    rgba(5,11,22,.88),
    rgba(5,11,22,.95)
    ),
    url('../assets/images/space.jpg');

    background-size:cover;

    background-position:center;

    text-align:center;
}

.page-hero h5{

    color:#66A9D1;

    letter-spacing:4px;

    margin-bottom:20px;
}

.page-hero h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:25px;
}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:#c7d2e0;

    line-height:1.9;
}

/* ==================================
   PEOPLE PAGE
================================== */

.people-section{

    padding:100px 0;
}

.bg-dark-section{

    background:#081120;

    margin-top:80px;
}

/* Add space between consecutive sections */

.people-section + .people-section{

    padding-top:120px;
}

/* Better heading spacing */

.people-section .section-heading{

    margin-bottom:60px;
}

/* ==================================
   ABOUT PAGE
================================== */

.vision-mission-section{

    padding:100px 0;

    background:#081120;
}

.vm-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:50px;

    height:100%;
}

.vm-card h3{

    color:#66A9D1;

    margin-bottom:25px;
}

.vm-card p{

    color:#c7d2e0;

    line-height:1.9;
}


/* ==================================
   OBJECTIVES SECTION
================================== */

.objectives-section{

    padding:100px 0;
}

.objective-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    height:100%;

    transition:.4s ease;
}

.objective-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.objective-card h4{

    color:#66A9D1;

    margin-bottom:20px;
}

.objective-card p{

    color:#c7d2e0;

    line-height:1.8;

    margin:0;
}
/* ==================================
   RESEARCH DOMAINS SECTION
================================== */

.research-domains-section{

    padding:100px 0;

    background:#081120;
}

.domain-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:35px 30px;

    height:100%;

    transition:.4s ease;
}

.domain-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.domain-card h4{

    color:#66A9D1;

    margin-bottom:20px;

    font-size:22px;
}

.domain-card p{

    color:#c7d2e0;

    line-height:1.8;

    margin:0;
}

/* ==================================
   OBJECTIVES SECTION
================================== */

.objectives-section{

    padding:100px 0;
}

.objective-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px 30px;

    height:100%;

    transition:.4s ease;
}

.objective-card:hover{

    transform:translateY(-10px);

    border-color:#66A9D1;

    box-shadow:0 15px 40px rgba(102,169,209,.15);
}

.objective-card h4{

    color:#66A9D1;

    margin-bottom:20px;
}

.objective-card p{

    color:#c7d2e0;

    line-height:1.8;

    margin:0;
}
/* ==================================
   TIMELINE SECTION
================================== */

.timeline-section{

    padding:100px 0 50px;

    background:#081120;
}

.timeline-item{

    display:flex;

    align-items:flex-start;

    gap:50px;

    margin-bottom:40px;

    position:relative;
}

.timeline-date{

    width:140px;

    text-align:right;

    color:#66A9D1;

    font-size:18px;

    font-weight:600;

    padding-top:25px;

    padding-right:30px;

    position:relative;
}

/* Vertical Line */

.timeline-date::after{

    content:'';

    position:absolute;

    top:0;

    right:0;

    width:3px;

    height:100%;

    background:#66A9D1;
}

/* Circle */

.timeline-date::before{

    content:'';

    position:absolute;

    top:28px;

    right:-8px;

    width:16px;

    height:16px;

    border-radius:50%;

    background:#66A9D1;

    box-shadow:0 0 15px #66A9D1;
}

.timeline-content{

    flex:1;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:30px 35px;

    transition:.3s;
}

.timeline-content:hover{

    border-color:#66A9D1;

    transform:translateY(-5px);
}

.timeline-content h4{

    color:#66A9D1;

    margin-bottom:15px;

    font-size:28px;
}

.timeline-content p{

    color:#c7d2e0;

    line-height:1.8;

    margin:0;
}

/* Mobile */

@media(max-width:768px){

    .timeline-item{

        flex-direction:column;

        gap:15px;
    }

    .timeline-date{

        width:100%;

        text-align:left;

        padding:0;
    }

    .timeline-date::before,
    .timeline-date::after{

        display:none;
    }

}

.collaboration-section{

    padding-top:100px;

    padding-bottom:100px;

    background:#050b16;
}

/* ==================================
   CTA SECTION
================================== */

.cta-section{

    padding:100px 0;
}

.cta-box{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:80px 60px;
}

.cta-box h2{

    font-size:48px;

    margin-bottom:25px;

    font-weight:700;
}

.cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:#c7d2e0;

    line-height:1.9;

    font-size:18px;
}

/* ==================================
   GALLERY
================================== */

.gallery-card{

    overflow:hidden;

    border-radius:20px;
}

.gallery-image{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s ease;
}

.gallery-image:hover{

    transform:scale(1.05);
}

/* ==================================
   CONTACT PAGE
================================== */

.contact-section{

    padding:100px 0;
}

.contact-card,
.contact-form-box{

    background:#0f1729;
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    padding:14px 18px;
    border-radius:12px;
}

.form-control{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    color:#fff;

    padding:15px;
}

.form-control:focus{
border-color:#4db8ff;
    box-shadow:0 0 10px rgba(77,184,255,.3);
}

.faq-section{

    padding:100px 0;
}

.accordion-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:20px;
}

/* ==================================
   CONTACT PAGE
================================== */

.contact-section{

    padding:100px 0;
}

.contact-card,
.contact-form-box{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:40px;

    height:100%;
}

.contact-card h4{

    color:#66A9D1;

    margin-bottom:25px;
}

.contact-card p{

    color:#c7d2e0;

    line-height:1.8;
}

.form-control{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    color:#ffffff;

    padding:15px;
}

.form-control:focus{

    background:rgba(255,255,255,.08);

    border-color:#66A9D1;

    box-shadow:none;

    color:#ffffff;
}

.form-control::placeholder{

    color:#c7d2e0;
}

.faq-section{

    padding:100px 0;
}

.accordion-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:20px;
}

.accordion-button{

    background:#081120;

    color:#ffffff;
}

.accordion-button:not(.collapsed){

    background:#66A9D1;

    color:#ffffff;
}

.accordion-body{

    background:#081120;

    color:#c7d2e0;
}

/* ==================================
   SOCIAL SECTION
================================== */

.social-section{

    padding:100px 0;
}

.social-links{

    display:flex;

    justify-content:center;

    gap:25px;
}

.social-icon{
    width:55px;
    height:55px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.1);
    margin:0 10px;
    color:#5fb7ff;
    transition:.3s;
}

.social-icon:hover{
    transform:translateY(-6px);
    background:#5fb7ff;
    color:#fff;
}
.contact-card,
.contact-form-box{

    height:100%;
}

.contact-section {
    padding: 80px 0;
}

.contact-card,
.contact-form-box {
    background: rgba(15, 25, 45, 0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 35px;
    min-height: 450px;
}

.contact-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
    align-items:flex-start;
}

.contact-item i{
    color:#5fb7ff;
    font-size:22px;
    margin-top:5px;
}

.contact-item h6{
    color:#fff;
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#bfc9d4;
}

.contact-section{
    background:#020b1d;
}

.faq-section{
    background:#061326;
}

.social-section{
    background:#020b1d;
}

.cta-section{
    background:#061326;
}


/* =========================================
   FUNDED PROJECTS — SELF-CONTAINED CSS
========================================= */

#cyberlabs-funded-projects {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background: #050b16;
}

#cyberlabs-funded-projects,
#cyberlabs-funded-projects * {
    box-sizing: border-box;
}


/* =========================================
   SECTION HEADING
========================================= */

#cyberlabs-funded-projects .funding-heading {
    max-width: 940px;
    margin: 0 auto 55px;
    text-align: center;
}

#cyberlabs-funded-projects .funding-heading h5 {
    margin: 0 0 12px;
    color: #66a9d1;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1.5;
    text-transform: uppercase;
}

#cyberlabs-funded-projects .funding-heading h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

#cyberlabs-funded-projects .funding-heading p {
    max-width: 880px;
    margin: 0 auto;
    color: #c7d2e0;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   STATISTICS
========================================= */

#cyberlabs-funded-projects .funding-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 52px;
}

#cyberlabs-funded-projects .funding-stat-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 105px;
    padding: 21px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

#cyberlabs-funded-projects .funding-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 169, 209, 0.7);
    box-shadow: 0 14px 35px rgba(102, 169, 209, 0.12);
}

#cyberlabs-funded-projects .funding-stat-icon {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #66a9d1;
    background: rgba(102, 169, 209, 0.11);
    border: 1px solid rgba(102, 169, 209, 0.22);
    border-radius: 14px;
    font-size: 19px;
}

#cyberlabs-funded-projects .funding-stat-content {
    min-width: 0;
}

#cyberlabs-funded-projects .funding-stat-number {
    display: block;
    margin-bottom: 3px;
    color: #66a9d1;
    font-size: 30px;
    font-weight: 750;
    line-height: 1.1;
}

#cyberlabs-funded-projects .funding-stat-label {
    display: block;
    color: #c7d2e0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}


/* =========================================
   PROJECT GRID
========================================= */

#cyberlabs-funded-projects .funding-card-row {
    align-items: stretch;
}

#cyberlabs-funded-projects .funding-card-column {
    display: flex;
}


/* =========================================
   PROJECT CARD
========================================= */

#cyberlabs-funded-projects .funding-card {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
    min-height: 540px;
    padding: 32px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.025)
        );
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

#cyberlabs-funded-projects .funding-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    content: "";
    background:
        linear-gradient(
            90deg,
            #66a9d1,
            #8ed4ff
        );
}

#cyberlabs-funded-projects .funding-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 169, 209, 0.75);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}


/* =========================================
   CARD HEADER
========================================= */

#cyberlabs-funded-projects .funding-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

#cyberlabs-funded-projects .funding-card-number {
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================
   CATEGORY BADGES
========================================= */

#cyberlabs-funded-projects .funding-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 190px;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.55px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

#cyberlabs-funded-projects .badge-government {
    color: #96d5fb;
    background: rgba(102, 169, 209, 0.14);
    border: 1px solid rgba(102, 169, 209, 0.34);
}

#cyberlabs-funded-projects .badge-industry {
    color: #f3c983;
    background: rgba(227, 165, 65, 0.13);
    border: 1px solid rgba(227, 165, 65, 0.33);
}

#cyberlabs-funded-projects .badge-international {
    color: #b6a4ff;
    background: rgba(143, 115, 255, 0.14);
    border: 1px solid rgba(143, 115, 255, 0.34);
}

#cyberlabs-funded-projects .badge-academic {
    color: #8cf0bb;
    background: rgba(46, 190, 125, 0.13);
    border: 1px solid rgba(46, 190, 125, 0.33);
}


/* =========================================
   AGENCY ICON
========================================= */

#cyberlabs-funded-projects .funding-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 21px;
    color: #66a9d1;
    background: rgba(102, 169, 209, 0.11);
    border: 1px solid rgba(102, 169, 209, 0.23);
    border-radius: 16px;
    font-size: 22px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

#cyberlabs-funded-projects
.funding-card:hover
.funding-card-icon {
    transform: translateY(-3px) scale(1.05);
    background: rgba(102, 169, 209, 0.17);
}


/* =========================================
   AGENCY NAME AND TITLE
========================================= */

#cyberlabs-funded-projects .funding-short-name {
    display: block;
    margin-bottom: 11px;
    color: #66a9d1;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.85px;
    line-height: 1.5;
    text-transform: uppercase;
}

#cyberlabs-funded-projects .funding-project-title {
    margin: 0 0 27px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.52;
}


/* =========================================
   PROJECT DETAILS
========================================= */

#cyberlabs-funded-projects .funding-details {
    margin-top: auto;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

#cyberlabs-funded-projects .funding-detail-item {
    margin-bottom: 18px;
}

#cyberlabs-funded-projects .funding-detail-item:last-child {
    margin-bottom: 0;
}

#cyberlabs-funded-projects .funding-detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: #8492a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    line-height: 1.5;
    text-transform: uppercase;
}

#cyberlabs-funded-projects .funding-detail-label i {
    width: 16px;
    color: #66a9d1;
    text-align: center;
}

#cyberlabs-funded-projects .funding-detail-value {
    display: block;
    color: #dfe8f2;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    overflow-wrap: anywhere;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    #cyberlabs-funded-projects .funding-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #cyberlabs-funded-projects .funding-card {
        min-height: 520px;
    }
}

@media (max-width: 767px) {

    #cyberlabs-funded-projects {
        padding: 75px 0;
    }

    #cyberlabs-funded-projects .funding-heading {
        margin-bottom: 40px;
    }

    #cyberlabs-funded-projects .funding-heading h2 {
        font-size: 35px;
    }

    #cyberlabs-funded-projects .funding-heading p {
        font-size: 16px;
    }

    #cyberlabs-funded-projects .funding-stats {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin: 0 auto 40px;
    }

    #cyberlabs-funded-projects .funding-card {
        min-height: auto;
        padding: 28px 23px;
    }

    #cyberlabs-funded-projects .funding-project-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {

    #cyberlabs-funded-projects .funding-card-top {
        align-items: flex-start;
    }

    #cyberlabs-funded-projects .funding-badge {
        max-width: 155px;
        padding: 7px 9px;
        font-size: 8px;
    }

    #cyberlabs-funded-projects .funding-project-title {
        font-size: 19px;
    }
}
.gallery-slider{

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.gallery-banner-image{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:rgba(0,0,0,.45);

    border-radius:50%;

    padding:20px;

}

/* ==================================
   FOOTER LOGO
================================== */

.footer-logo{

    width:180px;

    height:auto;

    display:block;

    margin-bottom:20px;

}

/* ==================================
   FOOTER IMPROVEMENTS
================================== */

.footer-section{

    padding:60px 0 25px;

}

.footer-logo{

    width:220px;

    height:auto;

    display:block;

    margin-bottom:20px;

}

.footer-text{

    margin-top:15px;

    line-height:1.8;

    max-width:340px;

}

.footer-section h4{

    font-size:25px;

    font-weight:600;

    margin-bottom:18px;

}

.footer-links li,
.footer-contact li{

    margin-bottom:12px;

    line-height:1.7;

}

.footer-contact li i{

    width:20px;

    color:#bec1c4;

    margin-right:10px;

}

.footer-divider{

    margin:35px 0 20px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

}

.footer-bottom p{

    margin:0;

    font-size:15px;

}

/* ==================================
   NAVBAR BRAND
================================== */

.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.navbar-logo{

    width:55px;

    height:auto;

}

.brand-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.brand-text h3{

    margin:0;

    color:#ffffff;

    font-size:30px;

    font-weight:700;

}

.brand-text span{

    margin-top:2px;

    color:#66A9D1;

    font-size:16px;

    font-weight:500;

}
/* ===========================
   Research Slider
=========================== */

.research-slider{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.35);
}

.research-slider-image{
    width:100%;
    height:430px;
    object-fit:cover;
}

.research-slider .carousel-caption{
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    background:linear-gradient(to top,
                rgba(0,0,0,.85),
                rgba(0,0,0,0));
}

.research-slider .carousel-caption h5{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin:0;
}

.research-slider .carousel-control-prev-icon,
.research-slider .carousel-control-next-icon{
    background-color:rgba(0,0,0,.45);
    border-radius:50%;
    padding:18px;
}

/* ==================================
   Research Image Slider
================================== */

.research-slider{

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.35);

}

.research-slider-image{

    width:100%;

    height:430px;

    object-fit:cover;

}

.research-slider .carousel-control-prev-icon,
.research-slider .carousel-control-next-icon{

    background-color:rgba(0,0,0,.45);

    border-radius:50%;

    padding:18px;

}

/* ==========================================
            ABOUT PAGE SLIDER
========================================== */

.about-slider{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.about-slider-image{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:0.4s;

}

.about-slider:hover .about-slider-image{

    transform:scale(1.02);

}

.about-slider .carousel-control-prev-icon,
.about-slider .carousel-control-next-icon{

    background-color:rgba(0,0,0,.45);

    border-radius:50%;

    padding:18px;

}

/*==========================================
            TRAINING SLIDER
==========================================*/

.training-slider{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.training-slider-image{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:.4s ease;
}

.training-slider:hover .training-slider-image{
    transform:scale(1.02);
}

.training-slider .carousel-control-prev-icon,
.training-slider .carousel-control-next-icon{
    background-color:rgba(0,0,0,.45);
    border-radius:50%;
    padding:18px;
}

/* ==========================================
   HERO BLOCKCHAIN BACKGROUND
========================================== */

.hero-section{
    position: relative;
    overflow: hidden;
}

.blockchain-bg{
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    opacity:.18;
}

/* Nodes */

.blockchain-bg span{

    position:absolute;
    width:10px;
    height:10px;

    border-radius:50%;
    background:#4fa8ff;

    box-shadow:0 0 15px #4fa8ff;

    animation:floatNodes 10s ease-in-out infinite;

}

/* Connecting lines */

.blockchain-bg span::before{

    content:"";

    position:absolute;

    width:180px;
    height:2px;

    background:linear-gradient(90deg,
                rgba(79,168,255,.45),
                rgba(79,168,255,.05));

    top:4px;
    left:8px;

}

/* Node Positions */

.blockchain-bg span:nth-child(1){
    top:15%;
    left:10%;
}

.blockchain-bg span:nth-child(2){
    top:35%;
    left:45%;
}

.blockchain-bg span:nth-child(3){
    top:70%;
    left:18%;
}

.blockchain-bg span:nth-child(4){
    top:25%;
    left:80%;
}

.blockchain-bg span:nth-child(5){
    top:60%;
    left:65%;
}

.blockchain-bg span:nth-child(6){
    top:82%;
    left:88%;
}

/* Floating animation */

@keyframes floatNodes{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*=========================================
        HERO NETWORK BACKGROUND
=========================================*/

.hero-section{

    position:relative;

    overflow:hidden;

}

#networkCanvas{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    z-index:0;

    opacity:.55;

}

.hero-section .container{

    position:relative;

    z-index:5;

}

.hero-content,
.hero-logo{

    position:relative;

    z-index:10;

}

.partners-section{

    padding:120px 0;

    background:#07111f;

}

.partner-card{

    background:#111823;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    height:170px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:25px;

    transition:.4s;

}

.partner-card:hover{

    transform:translateY(-8px);

    border-color:#5ab4ff;

    box-shadow:0 15px 35px rgba(90,180,255,.25);

}

.partner-card img{

    max-width:150px;

    max-height:90px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s;

}

.partner-card:hover img{

    transform:scale(1.08);

}

.gallery-card{

    overflow:hidden;

    border-radius:18px;

    background:#101723;

    transition:.35s;

}

.gallery-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-card{

    border-radius:20px;

    overflow:hidden;

    background:#101723;

    height:280px;

}

.gallery-image{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.gallery-card:hover .gallery-image{

    transform:scale(1.08);

}

/* ==================================
   HOMEPAGE GALLERY
================================== */

.gallery-section{

    padding:120px 0;

    background:#081120;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    background:#101723;

    height:280px;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.35s ease;

}

.gallery-image{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s ease;

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}

.gallery-card:hover .gallery-image{

    transform:scale(1.08);

}