﻿/* =========================================================
   APTA - FINAL COMPLETE CSS
========================================================= */

html,
body {

    margin: 0;
    padding: 0;

    width: 100%;

    overflow-x: hidden !important;

    font-family: 'Poppins', sans-serif;

    background: #f4f8fb;

    color: #222;
}

/* =========================================================
   GLOBAL
========================================================= */

.container {

    width: 100%;
}

.row {

    margin-left: 0 !important;
    margin-right: 0 !important;
}

img {

    max-width: 100%;

    height: auto;
}

a {

    text-decoration: none;
}

/* =========================================================
   HEADER
========================================================= */

.top-header {

    background:
        linear-gradient(
        135deg,
        #000000 0%,
        #003b5c 45%,
        #00AEEF 100%);

    padding: 18px 0;

    border-bottom: 4px solid #FFD500;

    position: relative;

    overflow: hidden;
}

.top-header::before {

    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255,255,255,0.05);

    border-radius: 50%;

    top: -250px;
    right: -100px;
}

.header-logo {

    width: 110px;
    height: 110px;

    object-fit: contain;

    border-radius: 50%;

    background: #fff;

    padding: 4px;

    border: 4px solid #FFD500;

    box-shadow: 0 0 25px rgba(255,213,0,0.45);
}

.title-area {

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.header-title {

    color: #fff;

    font-size: 34px;

    font-weight: 900;

    text-transform: uppercase;

    margin: 0;

    line-height: 1.2;
}

.header-sub {

    color: #fff;

    font-size: 18px;

    margin-top: 8px;
}

/* =========================================================
   BADGES
========================================================= */

.header-badges {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 14px;
}

.header-badges span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,0.10);

    color: #FFD500;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;
}
/* =========================================================
   LEADERS SECTION
========================================================= */

.leaders-section {

    padding: 90px 0;

    background: #f5f9fd;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {

    margin-bottom: 60px;
}

.section-title span {

    color: #00AEEF;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-title h2 {

    font-size: 52px;

    font-weight: 900;

    color: #111;

    margin-top: 10px;
}

/* =========================================================
   CARD
========================================================= */

.leader-card {

    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    transition: 0.4s;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);
}

.leader-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0,174,239,0.18);
}

/* =========================================================
   IMAGE
========================================================= */

.leader-img-box {

    position: relative;

    height: 500px;

    overflow: hidden;

    background:
        linear-gradient(
        135deg,
        #000000,
        #003b5c,
        #00AEEF);
}

.leader-img {

    width: 100%;

    /*height: 100%;*/

    object-fit: cover;

    transition: 0.5s;
}

.leader-card:hover .leader-img {

    transform: scale(1.05);
}

/* =========================================================
   CONTENT
========================================================= */

.leader-content {

    padding: 35px;

    text-align: center;
}

.leader-content h3 {

    font-size: 34px;

    font-weight: 900;

    color: #111;

    margin-bottom: 18px;
}

/* =========================================================
   DESIGNATION
========================================================= */

.leader-designation {

    display: inline-block;

    padding: 12px 26px;

    border-radius: 40px;

    background:
        linear-gradient(
        135deg,
        #000000,
        #003b5c,
        #00AEEF);

    color: #FFD500;

    font-size: 15px;

    font-weight: 800;

    margin-bottom: 22px;
}

/* =========================================================
   TEXT
========================================================= */

.leader-content p {

    color: #666;

    font-size: 16px;

    line-height: 1.9;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .leaders-section {

        padding: 55px 0;
    }

    .section-title h2 {

        font-size: 34px;
    }

    .leader-img-box {

        height: 380px;
    }

    .leader-content {

        padding: 25px;
    }

    .leader-content h3 {

        font-size: 28px;
    }
}

@media(max-width:576px){

    .leader-card {

        border-radius: 22px;
    }

    .leader-img-box {

        height: 320px;
    }

    .leader-content h3 {

        font-size: 24px;
    }

    .leader-designation {

        font-size: 13px;

        padding: 10px 20px;
    }
}
/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-bar {

    display: none;

    background: #000;

    color: #fff;

    padding: 12px 15px;

    align-items: center;

    justify-content: space-between;

    border-bottom: 3px solid #FFD500;
}

.mobile-logo {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #fff;

    padding: 2px;

    border: 2px solid #FFD500;
}

.mobile-toggle {

    font-size: 28px;

    color: #FFD500;

    cursor: pointer;
}

/* =========================================================
   MENU
========================================================= */

.menu-wrapper {

    background: #000;

    border-top: 2px solid #FFD500;

    border-bottom: 3px solid #00AEEF;

    position: sticky;

    top: 0;

    z-index: 999;
}

.menu {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;
}

.menu a {

    position: relative;

    color: #fff;

    padding: 18px 20px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    transition: 0.3s;
}

.menu a i {

    color: #FFD500;

    margin-right: 6px;
}

.menu a:hover,
.menu a.active {

    color: #FFD500;

    background: rgba(0,174,239,0.12);
}

.menu a::after {

    content: '';

    position: absolute;

    left: 50%;

    bottom: 6px;

    width: 0;

    height: 3px;

    background: #FFD500;

    transition: 0.3s;

    transform: translateX(-50%);
}

.menu a:hover::after,
.menu a.active::after {

    width: 70%;
}

/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    background: linear-gradient(
        135deg,
        #000000 0%,
        #003b5c 45%,
        #00AEEF 100%);
    color: #fff;
    height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LABEL */
.label {
    background: #d4af37;
    color: black;
    padding: 0 15px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* CONTAINER */
.announcement-container {
    overflow: hidden;
    width: 100%;
}

/* TRACK (IMPORTANT FIX) */
.announcement-track {
    display: inline-block;  /* 🔥 change from flex */
    white-space: nowrap;
    min-width: 200%;        /* 🔥 force long width */
    animation: scrollLeft 30s linear infinite;
}

/* TEXT */
.announcement-track span {
    display: inline-block;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* LATEST */
.latest {
    font-weight: bold;
    color: #ffd700;
}

/* BADGE */
.badge {
    background: yellow;
    color: red;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 4px;
    font-size: 11px;
}

/* HOVER */
.announcement-track span:hover {
    text-decoration: underline;
}

/* PAUSE */
.announcement-container:hover .announcement-track {
    animation-play-state: paused;
}

/* 🔥 STRONG ANIMATION */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   HERO SLIDER
========================================================= */

/* =========================================================
   HERO SLIDER
========================================================= */

.hero-section {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #000;
}

#heroSlider {

    width: 100%;
}


#heroSlider .carousel-item {

    height: 650px;

    overflow: hidden;

    background: #000;
}
.hero-img {

    width: 100%;

    height: 480px !important;

    object-fit: contain;

    object-position: center center;

    display: block;
}

/* OVERLAY */

.hero-overlay {

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    /*background:
        linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.20));*/

    z-index: 1;
}

/* CAPTION */

.carousel-caption {

    z-index: 5;

    bottom: 18% !important;

    left: 8% !important;

    right: auto !important;

    text-align: left !important;

    max-width: 700px;
}

.carousel-caption h1 {

    font-size: 38px;

    font-weight: 900;

    color: #fff;

    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 20px;

    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.carousel-caption p {

    font-size: 22px;

    color: #fff;

    margin-bottom: 30px;
}

/* BUTTON */

.hero-btn {

    display: inline-block;

    background:
        linear-gradient(
        135deg,
        #FFD500,
        #ffb700);

    color: #111;

    padding: 14px 34px;

    border-radius: 40px;

    font-weight: 700;

    font-size: 18px;

    transition: 0.3s;
}

.hero-btn:hover {

    background: #fff;

    color: #00AEEF;
}

/* MOBILE */

@media(max-width:991px){

    #heroSlider .carousel-item {

        height: 350px;
    }

    .hero-img {

        height: 350px !important;

        object-fit: cover;

        object-position: center center;
    }

    .carousel-caption {

        bottom: 10% !important;

        left: 5% !important;

        max-width: 90%;
    }

    .carousel-caption h1 {

        font-size: 28px;
    }

    .carousel-caption p {

        font-size: 14px;
    }

    .announcement-label {

        min-width: 120px;

        font-size: 14px;
    }

    .announcement-track span {

        font-size: 14px;
    }
}

/* =========================================================
   STATS SECTION
========================================================= */

.stats-section {

    margin-top: -80px;
    position: relative;

    z-index: 50;
}

.stat-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px 20px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    transition: 0.3s;

    height: 100%;
}

.stat-card:hover {

    transform: translateY(-10px);
}

.stat-card i {

    font-size: 50px;

    color: #00AEEF;

    margin-bottom: 18px;
}

.stat-card h2 {

    font-size: 42px;

    font-weight: 900;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    margin-bottom: 50px;
}

.section-heading span {

    color: #00AEEF;

    font-weight: 700;

    text-transform: uppercase;
}

.section-heading h2 {

    font-size: 42px;

    font-weight: 900;

    margin-top: 10px;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.modern-about {

    padding: 90px 0;
}

.about-image-box img {

    border-radius: 24px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.about-content {

    padding-left: 30px;
}

.about-content h2 {

    font-size: 40px;

    font-weight: 900;

    margin-bottom: 20px;
}

.about-content p {

    color: #666;

    line-height: 1.9;
}

.about-list {

    list-style: none;

    padding: 0;

    margin-top: 25px;
}

.about-list li {

    margin-bottom: 12px;

    font-weight: 600;

    padding-left: 30px;

    position: relative;
}

.about-list li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: #00AEEF;
}

/* =========================================================
   SERVICES
========================================================= */

.services-modern {

    padding: 80px 0;

    background: #fff;
}

.modern-service-card {

    background: #fff;

    padding: 45px 25px;

    text-align: center;

    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: 0.3s;

    height: 100%;
}

.modern-service-card:hover {

    transform: translateY(-10px);
}

.service-icon-modern {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background:
        linear-gradient(
        135deg,
        #00AEEF,
        #0077aa);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.service-icon-modern i {

    font-size: 38px;

    color: #fff;
}

/* =========================================================
   NEWS
========================================================= */

.news-modern {

    padding: 90px 0;

    background: #f8fbff;
}

.modern-news-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);

    transition: 0.3s;

    height: 100%;
}

.news-img-box img {

    width: 100%;

    height: 240px;

    object-fit: cover;
}

.news-content {

    padding: 25px;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-modern {

    padding: 90px 0;
}

.modern-gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 20px;
}

.modern-gallery-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: 0.4s;
}

.modern-gallery-card:hover img {

    transform: scale(1.1);
}

.gallery-overlay {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 25px;

    background:
        linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        transparent);

    color: #fff;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        linear-gradient(
        135deg,
        #111111,
        #0d0d0d);

    color: #ddd;

    padding: 50px 0 20px;

    border-top: 4px solid #00AEEF;
}

.footer-title {

    color: #fff;

    font-weight: 700;

    margin-bottom: 15px;
}

.footer-links {

    list-style: none;

    padding: 0;
}

.footer-links li {

    margin-bottom: 8px;
}

.footer-links a {

    color: #ccc;
}

.footer-links a:hover {

    color: #FFD500;
}
/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo {

    width: 220px;

    height: 220px;

    object-fit: cover;

    border-radius: 50%;

    display: block;

    background: #fff;

    padding: 8px;

    border: 5px solid #00AEEF;

    box-shadow:
        0 12px 30px rgba(0,174,239,0.25);

    margin-bottom: 25px;

    transition: 0.4s;
}

.footer-logo:hover {

    transform: scale(1.05);

    box-shadow:
        0 18px 40px rgba(0,174,239,0.35);
}
/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .mobile-menu-bar {

        display: flex;
    }

    .menu-wrapper {

        display: none;

        width: 100%;
    }

    .menu-wrapper.show-menu {

        display: block !important;
    }

    .menu {

        flex-direction: column;

        align-items: stretch;
    }

    .menu a {

        width: 100%;

        padding: 14px 18px;

        border-bottom:
            1px solid rgba(255,255,255,0.08);
    }

    .menu a::after {

        display: none;
    }

    .header-title {

        font-size: 24px;
    }

    .header-logo {

        width: 85px;
        height: 85px;
    }

    #heroSlider .carousel-item {

        height: 350px;
    }

    .hero-img {

        height: 350px !important;
    }

    .carousel-caption {

        bottom: 10% !important;
    }

    .carousel-caption h1 {

        font-size: 28px;
    }

    .carousel-caption p {

        font-size: 14px;
    }

    .stats-section {

        margin-top: 30px;
    }

    .about-content {

        padding-left: 0;

        margin-top: 30px;
    }

    .about-content h2 {

        font-size: 30px;
    }

    .section-heading h2 {

        font-size: 30px;
    }
}

@media(min-width:992px){

    .menu-wrapper {

        display: block !important;
    }

    .mobile-menu-bar {

        display: none !important;
    }
}
/* =========================================================
   REMOVE GAP BETWEEN ANNOUNCEMENT & SLIDER
========================================================= */

.hero-section {

    margin-top: 0 !important;

    padding-top: 0 !important;

    margin-bottom: 0 !important;

    line-height: 0;
}

#heroSlider {

    margin-top: 0 !important;

    padding-top: 0 !important;
}

#heroSlider .carousel-inner {

    margin-top: 0 !important;

    padding-top: 0 !important;
}

#heroSlider .carousel-item {

    margin-top: 0 !important;

    padding-top: 0 !important;

    vertical-align: top;
}

.hero-img {

    display: block;

    margin-top: 0 !important;

    padding-top: 0 !important;
}

/* REMOVE BOOTSTRAP EXTRA SPACE */

.carousel {

    margin-bottom: 0 !important;
}

.carousel-inner {

    margin-bottom: 0 !important;
}

/* REMOVE WHITE LINE */

.main-content {

    padding-top: 0 !important;
}
/* =========================================================
   STICKY NAVBAR
========================================================= */

.fixed-navbar {

    position: fixed !important;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 99999;

    animation: slideDown 0.4s ease;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.15);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes slideDown {

    from {

        transform: translateY(-100%);
    }

    to {

        transform: translateY(0);
    }
}

/* =========================================================
   SCROLL TOP BUTTON
========================================================= */

.scroll-top-btn {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    background:
        linear-gradient(
        135deg,
        #000000,
        #003b5c,
        #00AEEF);

    color: #FFD500;

    font-size: 28px;

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(30px);

    transition: 0.4s;

    box-shadow:
        0 12px 30px rgba(0,174,239,0.30);
}

/* SHOW */

.show-scroll {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

/* HOVER */

.scroll-top-btn:hover {

    color: #fff;

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 18px 40px rgba(0,174,239,0.40);
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:576px){

    .scroll-top-btn {

        width: 50px;

        height: 50px;

        right: 15px;

        bottom: 15px;

        font-size: 24px;
    }
}