/* =========================================================
   TRITECH ACADEMY - HOMEPAGE REDESIGN
   ========================================================= */

:root {
    --tritech-navy: #082B4C;
    --tritech-blue: #034A82;
    --tritech-cyan: #20B8D8;
    --tritech-light: #F5F9FC;
    --tritech-text: #243447;
    --tritech-muted: #718096;
    --tritech-white: #fff;
}


/* =========================================================
   GLOBAL
   ========================================================= */

body {
    color: var(--tritech-text);
    background: #fff;
}

.container {
    max-width: 1200px;
}

.site-section {
    padding: 50px 0;
}

.site-section h2,
.section-title-underline span {
    color: var(--tritech-navy);
    font-weight: 800;
}

.section-title-underline {
    position: relative;
    padding-bottom: 15px;
}

.section-title-underline:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: var(--tritech-cyan);
}

.text-center .section-title-underline:after {
    left: 50%;
    transform: translateX(-50%);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-slide .intro-section {
    min-height: 680px;
    height: 680px;

    position: relative;
    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 45, .92) 0%,
            rgba(3, 74, 130, .72) 52%,
            rgba(3, 74, 130, .20) 100%
        );
}

.intro-section .container {
    position: relative;
    z-index: 2;
}

.intro-section h1 {
    max-width: 850px;

    margin: 15px 0 20px;

    color: #fff;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.intro-section h1 span {
    display: block;
    color: var(--tritech-cyan);
}

.intro-section .eyebrow {
    display: inline-block;

    padding: 7px 14px;

    color: #fff;
    background: rgba(32,184,216,.15);

    border-left: 3px solid var(--tritech-cyan);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-section p {
    max-width: 650px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.85);
    font-size: 17px;
    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 28px;

    border-radius: 7px;

    font-weight: 700;
    transition: .3s ease;
}

.btn-orange {
    background: var(--tritech-cyan) !important;
    border-color: var(--tritech-cyan) !important;
    color: #fff !important;
}

.btn-orange:hover {
    background: #119dbb !important;
    border-color: #119dbb !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(32,184,216,.3);
}

.btn-light-outline {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.7) !important;
    background: transparent !important;
}

.btn-light-outline:hover {
    color: var(--tritech-blue) !important;
    background: #fff !important;
    transform: translateY(-3px);
}

.hero-extra {
    margin-top: 25px;
}

.hero-extra a {
    display: inline-block;
    margin-right: 25px;

    color: rgba(255,255,255,.85);

    font-size: 14px;
    font-weight: 600;
}

.hero-extra a:hover {
    color: var(--tritech-cyan);
}


/* =========================================================
   ABOUT TRITECH
   ========================================================= */

.about-tritech {
    position: relative;

    padding: 50px 0;

    background: var(--tritech-light);
}

.about-main-card {
    overflow: hidden;

    background: #fff;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(8,43,76,.10);
}

.about-image-wrap {
    height: 100%;
    min-height: 480px;

    position: relative;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.about-main-card:hover .about-image-wrap img {
    transform: scale(1.04);
}

.about-experience {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: var(--tritech-cyan);

    color: #fff;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0,0,0,.20);

    border: 6px solid rgba(255,255,255,.8);
}

.about-experience strong {
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.about-experience span {
    margin-top: 7px;

    font-size: 11px;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-content {
    padding: 55px;
}

.about-kicker,
.recruiters-kicker {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--tritech-cyan);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    margin-bottom: 20px;

    color: var(--tritech-navy);

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content p {
    color: var(--tritech-muted);
    line-height: 1.8;
}


/* =========================================================
   COUNTERS
   ========================================================= */

.about-counters {
    margin-top: 30px;
}

.counter-card {
    height: 100%;

    padding: 18px 12px;

    background: #F7FAFC;

    border: 1px solid #E8EEF3;
    border-radius: 12px;

    text-align: center;

    transition: .3s ease;
}

.counter-card:hover {
    transform: translateY(-5px);

    border-color: var(--tritech-cyan);

    background: #fff;

    box-shadow: 0 10px 30px rgba(8,43,76,.08);
}

.counter-icon {
    margin-bottom: 7px;

    color: var(--tritech-cyan);
}

.counter-number {
    color: var(--tritech-blue);

    font-size: 24px;
    font-weight: 800;
}

.counter-label {
    color: var(--tritech-muted);

    font-size: 11px;
    line-height: 1.3;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    color: var(--tritech-blue);

    font-weight: 700;
}

.about-link:hover {
    color: var(--tritech-cyan);
}


/* =========================================================
   WHY TRITECH
   ========================================================= */

.why-tritech-section {
    padding: 50px 0;

    background: #fff;
}

.recruiters-title {
    margin-bottom: 15px;

    color: var(--tritech-navy);

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.recruiters-description {
    color: var(--tritech-muted);

 
    line-height: 26px;
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 500;
}



/* FEATURE CARDS */

.feature-1 {
    position: relative;

    height: 100%;

    padding: 45px 30px 35px;

    background: #fff;

    border: 1px solid #E5EDF3 !important;
    border-radius: 18px;

    text-align: center;

    transition: all .35s ease;
}

.feature-1:hover {
    transform: translateY(-10px);

    border-color: var(--tritech-cyan) !important;

    box-shadow: 0 20px 50px rgba(8,43,76,.12);
}

.icon-wrapper {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: -10px auto 25px;

    border-radius: 18px;

    background: var(--tritech-blue) !important;

    box-shadow: 0 10px 25px rgba(3,74,130,.20);
}

.icon-wrapper span {
    font-size: 27px;
}

.feature-1-content h2 {
    margin-bottom: 8px;

    color: var(--tritech-navy);

    font-size: 20px;
    font-weight: 800;
}

.feature-1-content h3 {


    color: var(--tritech-cyan);

    line-height: 26px;
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 500;
}

.feature-1-content p {
    color: var(--tritech-muted);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RECRUITERS
   ========================================================= */

.recruiters-section {
    padding: 55px 0;

    overflow: hidden;

    background: var(--tritech-light);
}

.recruiter-slider {
    width: 100%;
    overflow: hidden;
}

.recruiter-track {
    display: flex;
    width: max-content;

    gap: 25px;

    animation: recruiter-scroll 30s linear infinite;
}

.recruiter-track:hover {
    animation-play-state: paused;
}

.recruiter-logo {
    width: 180px;
    height: 90px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #fff;

    border: 1px solid #E5EDF3;
    border-radius: 14px;

    transition: .3s ease;
}

.recruiter-logo:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(8,43,76,.10);
}

.recruiter-logo img {
    max-width: 130px;
    max-height: 130px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: .65;

    transition: .3s ease;
}

.recruiter-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}
.recruiters-description p{line-height: 26px;margin: 0 0 30px;font-size: 16px;font-weight: 500;}
@keyframes recruiter-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   COURSES
   ========================================================= */

.site-section:has(.course-1-item) {
    background: #fff;
}

.course-1-item {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #E5EDF3;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(8,43,76,.06);

    transition: .35s ease;
}

.course-1-item:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(8,43,76,.13);
}

.course-1-item .thumnail {
    position: relative;

    margin: 0;

    overflow: hidden;
}

.course-1-item .thumnail img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    transition: .5s ease;
}

.course-1-item:hover .thumnail img {
    transform: scale(1.06);
}

.course-1-item .price {
    position: absolute;

    top: 15px;
    right: 15px;

    padding: 7px 13px;

    background: var(--tritech-cyan);

    color: #fff;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 700;
}

.course-1-item .category {
    position: absolute;

    left: 15px;
    bottom: 15px;

    right: 15px;
}

.course-1-item .category h3 {
    display: inline-block;

    margin: 0;
    padding: 7px 12px;

    background: var(--tritech-blue);

    color: #fff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;
}

.course-1-content {
    padding: 25px !important;
}

.course-1-content h2 {
    min-height: 55px;

    color: var(--tritech-navy);

    font-size: 19px;
    line-height: 1.4;
    font-weight: 800;
}

.course-1-content .desc {
    color: var(--tritech-muted);

    font-size: 13px;
    line-height: 1.7;
}

.course-1-content .rating {
    margin: 12px 0 !important;
}

.course-1-content .btn {
    width: 100%;

    padding: 12px 18px;

    background: var(--tritech-blue) !important;
    border-color: var(--tritech-blue) !important;

    border-radius: 7px !important;

    font-size: 13px;
    font-weight: 700;
}

.course-1-content .btn:hover {
    background: var(--tritech-cyan) !important;
    border-color: var(--tritech-cyan) !important;
}


/* =========================================================
   FOUNDER / WELCOME
   ========================================================= */

.software-training {
    position: relative;

    padding: 100px 0;

    background: var(--tritech-navy);
}

.software-welcome {
    position: relative;
}

.welcome-image {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0,0,0,.20);
}

.welcome-image img {
    width: 100%;

    display: block;

    transition: .5s ease;
}

.welcome-image:hover img {
    transform: scale(1.04);
}

.welcome-card {
    position: relative;

    margin-left: -40px;

    padding: 45px;

    background: #fff;

    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.welcome-card h2 {
    margin-bottom: 10px;

    color: var(--tritech-navy);

    font-size: 30px;
    font-weight: 800;
}

.welcome-card h4 {
    margin-bottom: 20px;

    color: var(--tritech-cyan);

    font-size: 15px;
}

.welcome-card .mag {
    color: var(--tritech-text) !important;

    font-size: 14px;
    line-height: 1.8;
}

.welcome-author {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #E5EDF3;
}

.welcome-author strong {
    display: block;

    color: var(--tritech-navy);
}

.welcome-author span {
    color: var(--tritech-muted);

    font-size: 13px;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.ftco-testimonial-1 {
    height: 100%;

    padding: 30px;

    background: #fff;

    border: 1px solid #E5EDF3;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(8,43,76,.05);

    transition: .3s ease;
}

.ftco-testimonial-1:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(8,43,76,.10);
}

.ftco-testimonial-vcard img {
    width: 55px;
    height: 55px;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid rgba(32,184,216,.2);
}

.ftco-testimonial-vcard h3 {
    margin-bottom: 3px;

    color: var(--tritech-navy);

    font-size: 16px;
    font-weight: 800;
}

.ftco-testimonial-vcard span {
    color: var(--tritech-cyan);

    font-size: 12px;
}

.ftco-testimonial-1 p {
    color: var(--tritech-muted);

line-height: 26px;margin: 0 0 30px;font-size: 16px;font-weight: 500;
}


/* =========================================================
   PHILOSOPHY / 3 COLUMNS
   ========================================================= */

.section-bg.style-1 {
    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #082B4C,
            #034A82
        ) !important;
}

.section-bg.style-1 .icon {
    display: inline-flex;

    width: 55px;
    height: 55px;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(32,184,216,.15);

    border-radius: 14px;

    color: var(--tritech-cyan);

    font-size: 25px;
}

.section-bg.style-1 h3 {
    color: #fff;

    font-size: 20px;
    font-weight: 800;
}

.section-bg.style-1 p {
    color: rgba(255,255,255,.70);

   line-height: 26px;margin: 0 0 30px;font-size: 16px;font-weight: 500;
  text-align: justify;
}


/* =========================================================
   NEWS
   ========================================================= */

.news-updates {
    padding: 100px 0;

    background: #fff;
}

.news-updates .section-heading h2 {
    color: var(--tritech-navy);

    font-size: 30px;
    font-weight: 800;
}

.news-updates .section-heading a {
    color: var(--tritech-cyan);

    font-size: 13px;
    font-weight: 700;
}

.post-entry-big {
    overflow: hidden;

    background: #fff;

    border: 1px solid #E5EDF3;

    border-radius: 16px;

    transition: .3s ease;
}

.post-entry-big:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(8,43,76,.10);
}

.post-entry-big .img-link {
    overflow: hidden;
}

.post-entry-big img {
    transition: .5s ease;
}

.post-entry-big:hover img {
    transform: scale(1.04);
}

.post-entry-big .post-content {
    padding: 20px;
}

.post-meta {
    margin-bottom: 8px;

    color: var(--tritech-muted);

    font-size: 11px;
}

.post-meta a {
    color: var(--tritech-cyan);
}

.post-heading {
    margin: 0;

    font-size: 17px;
    line-height: 1.4;
}

.post-heading a {
    color: var(--tritech-navy);
    font-weight: 700;
}

.post-entry-big.horizontal {
    padding: 10px;

    border-radius: 14px;
}

.post-entry-big.horizontal .img-link {
    width: 110px;

    flex-shrink: 0;

    border-radius: 8px;
}

.post-entry-big.horizontal .post-content {
    padding: 8px 5px;
}


/* =========================================================
   CAMPUS VIDEOS
   ========================================================= */

.video-1 {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: #000;
}

.video-1 img {
    width: 100%;

    transition: .5s ease;
}

.video-1:hover img {
    transform: scale(1.05);
    opacity: .8;
}

.video-1 .play {
    position: absolute;

    z-index: 2;

    top: 50%;
    left: 50%;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    background: var(--tritech-cyan);

    color: #fff;

    border-radius: 50%;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}


/* =========================================================
   SUBSCRIBE
   ========================================================= */

.ftco-subscribe-1 {
    position: relative;

    padding: 75px 0;

    background-position: center;
    background-size: cover;
}

.ftco-subscribe-1:before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(8,43,76,.90);
}

.ftco-subscribe-1 .container {
    position: relative;
    z-index: 2;
}

.ftco-subscribe-1 h2 {
    color: #fff;

    font-size: 32px;
    font-weight: 800;
}

.ftco-subscribe-1 p {
    color: rgba(255,255,255,.75);
}

.ftco-subscribe-1 .form-control {
    height: 50px;

    border: 0;

    border-radius: 7px !important;
}

.ftco-subscribe-1 .btn-primary {
    height: 50px;

    background: var(--tritech-cyan) !important;
    border-color: var(--tritech-cyan) !important;
}

.ftco-subscribe-1 .btn-primary:hover {
    background: #119dbb !important;
}


/* =========================================================
   OWL NAVIGATION
   ========================================================= */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin: 5px;

    background: var(--tritech-blue) !important;

    color: #fff !important;

    border-radius: 50%;

    transition: .3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--tritech-cyan) !important;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
}

.owl-carousel button.owl-dot span {
    width: 8px;
    height: 8px;

    background: #D3DEE6;
}

.owl-carousel button.owl-dot.active span {
    width: 24px;

    background: var(--tritech-cyan);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .intro-section h1 {
        font-size: 50px;
    }

    .about-content {
        padding: 40px 30px;
    }

    .welcome-card {
        margin-left: 0;
        margin-top: 30px;
    }

    .site-section,
    .about-tritech,
    .why-tritech-section,
    .news-updates {
        padding: 200px 0;
        
    }
}


@media (max-width: 767px) {

    .hero-slide .intro-section {
        min-height: 600px;
        height: 600px;
    }

    .intro-section h1 {
        font-size: 40px;
        letter-spacing: -.5px;
    }

    .intro-section p {
        font-size: 15px;
    }

    .hero-buttons {
        display: block;
    }

    .hero-buttons .btn {
        display: block;

        width: 100%;

        margin-bottom: 12px;
    }

    .hero-extra a {
        display: block;

        margin: 10px 0;
    }

    .about-image-wrap {
        min-height: 350px;
    }

    .about-content {
        padding: 35px 25px;
    }

    .about-content h2,
    .recruiters-title {
        font-size: 30px;
    }

    .about-experience {
        width: 105px;
        height: 105px;
    }

    .about-experience strong {
        font-size: 24px;
    }

    .feature-1 {
        margin-bottom: 20px;
    }

    .welcome-card {
        padding: 30px 25px;
    }

    .welcome-card h2 {
        font-size: 26px;
    }

    .post-entry-big.horizontal {
        display: flex !important;
    }

    .post-entry-big.horizontal .img-link {
        width: 90px;
    }

    .ftco-subscribe-1 form {
        display: block !important;
    }

    .ftco-subscribe-1 form .form-control,
    .ftco-subscribe-1 form .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}


/* =========================================
   SOFTWARE TRAINING CAROUSEL FIX
========================================= */

.software-training {
    background-color: #1d416d;
}


/* Title */

.software-training .software-title {
    color: #ffffff !important;
}

.software-training .software-title span {
    color: #00a9e0 !important;
}


/* Description */

.software-training .software-description {
    color: rgba(255, 255, 255, 0.75) !important;
}


/* Cards */

.software-training .software-card {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 10px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 18px;

    background: transparent;

    text-align: center;
}

.software-training .software-card h3 {
    color: #ffffff !important;

    margin: 0;

    font-size: 24px;
    font-weight: 700;
}

.software-training .software-card span {
    color: rgba(255, 255, 255, 0.65);

    margin-top: 8px;
}


/* =========================================
   REMOVE WHITE OWL NAV BUTTONS
========================================= */

.software-training .owl-nav {
    display: none !important;
}


/* =========================================
   DOTS
========================================= */

.software-training .owl-dots {
    text-align: center;

    margin-top: 25px;
}

.software-training .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;

    margin: 5px;

    background: rgba(255, 255, 255, 0.20);

    display: block;

    border-radius: 50%;
}

.software-training .owl-dots .owl-dot.active span {
    background: #00a9e0;
}


 .py-4

 {
    padding-top: 1px!important;
    padding-bottom: 1px;
 }


 /* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    right: 25px;
    bottom: 25px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Mobile */

@media (max-width: 767px) {

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 15px;
        bottom: 15px;

        font-size: 27px;
    }

}



/* =========================================
   ADMISSION HEADER BUTTON
========================================= */


.admission-menu-btn:hover {
    background: #0d4f82 !important;
    color: #fff !important;
}


/* =========================================
   ADMISSION POPUP OVERLAY
========================================= */

.admission-popup-overlay {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(5, 25, 45, 0.75);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
}


.admission-popup-overlay.active {

    opacity: 1;

    visibility: visible;
}


/* =========================================
   POPUP BOX
========================================= */

.admission-popup-box {

    position: relative;

    width: 100%;

    max-width: 700px;

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 8px;

    padding: 40px;

    box-shadow: 0 20px 70px rgba(0,0,0,0.35);

    transform: translateY(30px) scale(.96);

    transition: all .3s ease;
}


.admission-popup-overlay.active
.admission-popup-box {

    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE
========================================= */

.admission-close {

    position: absolute;

    top: 12px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    font-size: 32px;

    line-height: 1;

    color: #555;

    cursor: pointer;

    z-index: 10;
}


.admission-close:hover {

    color: #f58220;
}


/* =========================================
   POPUP HEADER
========================================= */

.admission-popup-header {

    text-align: center;

    margin-bottom: 25px;
}


.admission-popup-header > span {

    display: inline-block;

    color: #f58220;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.admission-popup-header h2 {

    margin: 0 0 10px;

    font-size: 32px;

    line-height: 1.2;

    color: #0d4f82;
}


.admission-popup-header h2 strong {

    display: block;

    color: #f58220;
}


.admission-popup-header p {

    margin: 0;

    color: #666;

    font-size: 15px;
}


/* =========================================
   FORM
========================================= */

.admission-form .form-group {

    margin-bottom: 18px;
}


.admission-form label {

    display: block;

    margin-bottom: 6px;

    font-size: 14px;

    font-weight: 600;

    color: #123c69;
}


.admission-form input,
.admission-form select,
.admission-form textarea {

    width: 100%;

    border: 1px solid #ddd;

    border-radius: 4px;

    padding: 11px 13px;

    font-size: 14px;

    color: #333;

    background: #fff;

    outline: none;

    transition: border-color .2s ease;
}


.admission-form input:focus,
.admission-form select:focus,
.admission-form textarea:focus {

    border-color: #0d4f82;

    box-shadow: 0 0 0 2px rgba(13,79,130,.08);
}


.admission-form textarea {

    resize: vertical;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.admission-submit-btn {

    width: 100%;

    border: none;

    background: #f58220;

    color: #fff;

    padding: 13px 20px;

    border-radius: 4px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}


.admission-submit-btn:hover {

    background: #0d4f82;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .admission-popup-box {

        padding: 35px 20px 25px;

        max-width: 95%;
    }

    .admission-popup-header h2 {

        font-size: 25px;
    }

    .admission-menu-btn {

        display: inline-block;
    }

}

.menu-logo {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.menu-logo img {
    height: 55px;
    width: auto;
    display: block;
}


.whatsapp-float,
.call-float {
    position: fixed;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

/* WhatsApp */
.whatsapp-float {
    bottom: 90px;
    background: #25D366;
}

/* Call */
.call-float {
    bottom: 20px;
    background: #0056A6;
    font-size: 25px;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #fff;
}

.call-float:hover {
    background: #003F7D;
    color: #fff;
}


.footer-address {
    margin-bottom: 20px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social h5 {
    color: #fff;
    margin-bottom: 12px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    border-radius: 50%;
    background: #0056a6;
    color: #fff !important;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #007bff;
    transform: translateY(-3px);
}


.news-single-hero {
    padding: 80px 0 50px;
    background: #f5f8fc;
}

.news-single-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.news-single-meta a {
    color: #0056a6;
}

.news-single-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #003b73;
    margin-bottom: 0;
}

.news-single-content {
    background: #fff;
}

.news-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.news-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.news-content h2,
.news-content h3,
.news-content h4 {
    color: #003b73;
    margin-top: 30px;
    margin-bottom: 15px;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content img {
    max-width: 100%;
    height: auto;
}

.news-tags {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.news-tag {
    display: inline-block;
    background: #0056a6;
    color: #fff !important;
    padding: 5px 12px;
    margin-left: 5px;
    border-radius: 3px;
    font-size: 13px;
}

.news-tag:hover {
    background: #007bff;
}

.news-back-section {
    background: #fff;
}



/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    background: linear-gradient(
        135deg,
        #003b73,
        #0066b3
    );
    padding: 80px 0;
    color: #fff;
}

.contact-hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #7ec8ff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero h1 strong {
    color: #fff;
}

.contact-hero p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================
   CONTACT INFO CARDS
========================================= */

.contact-info-section {
    background: #f5f8fc;
}

.contact-info-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5edf5;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 59, 115, 0.12);
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 24px;
    color: #fff;
}

.whatsapp-icon {
    background: #25d366;
}

.phone-icon {
    background: #0056a6;
}

.email-icon {
    background: #007bff;
}

.contact-info-content h3 {
    color: #003b73;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-content a {
    color: #0056a6;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-content a:hover {
    color: #007bff;
}


/* =========================================
   MAIN CONTACT SECTION
========================================= */

.contact-main-section {
    padding: 80px 0;
    background: #fff;
}


/* =========================================
   SECTION HEADING
========================================= */

.contact-form-box,
.office-details-box {
    height: 100%;
}

.section-heading span,
.office-subtitle {
    display: inline-block;
    color: #007bff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-heading h2,
.office-details-box h2 {
    color: #003b73;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading h2 strong,
.office-details-box h2 strong {
    color: #007bff;
}

.section-heading p {
    color: #777;
    line-height: 1.7;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    padding: 40px;
    background: #f7faff;
    border: 1px solid #e3edf7;
    border-radius: 8px;
}

.contact-cf7 label {
    display: block;
    color: #003b73;
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-cf7 input[type="text"],
.contact-cf7 input[type="email"],
.contact-cf7 input[type="tel"],
.contact-cf7 select,
.contact-cf7 textarea {
    width: 100%;
    border: 1px solid #dce5ee;
    background: #fff;
    padding: 13px 15px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s ease;
}

.contact-cf7 input:focus,
.contact-cf7 select:focus,
.contact-cf7 textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.08);
}

.contact-cf7 textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-cf7 input[type="submit"] {
    background: linear-gradient(
        135deg,
        #003b73,
        #007bff
    );
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-cf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 86, 166, 0.25);
}


/* =========================================
   OFFICE DETAILS
========================================= */

.office-details-box {
    padding: 40px;
    background: #003b73;
    border-radius: 8px;
    color: #fff;
}

.office-details-box h2 {
    color: #fff;
}

.office-details-box h2 strong {
    color: #7ec8ff;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    margin-top: 28px;
}

.office-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #7ec8ff;
}

.office-detail h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.office-detail p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.office-detail a {
    color: #fff;
    text-decoration: none;
}

.office-detail a:hover {
    color: #7ec8ff;
}

.office-closed {
    margin-top: 5px !important;
    color: #ffcccb !important;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.office-whatsapp {
    margin-top: 30px;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 20px;
    background: #25d366;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-contact-btn i {
    font-size: 20px;
    margin-right: 9px;
}

.whatsapp-contact-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}


/* =========================================
   MAP
========================================= */

.contact-map-section {
    padding: 80px 0;
    background: #f5f8fc;
}

.contact-map {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 59, 115, 0.12);
}

.contact-map iframe {
    display: block;
}


/* =========================================
   CTA
========================================= */

.contact-cta-section {
    padding: 60px 0;
    background: linear-gradient(
        135deg,
        #003b73,
        #0066b3
    );
    color: #fff;
}

.contact-cta-section span {
    color: #7ec8ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.contact-cta-section h2 strong {
    color: #7ec8ff;
}

.contact-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-cta-btn {
    display: inline-block;
    background: #fff;
    color: #0056a6 !important;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    background: #007bff;
    color: #fff !important;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-hero {
        padding: 55px 0;
    }

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-main-section,
    .contact-map-section {
        padding: 50px 0;
    }

    .contact-form-box,
    .office-details-box {
        padding: 25px;
    }

    .section-heading h2,
    .office-details-box h2 {
        font-size: 28px;
    }

    .contact-cta-section {
        text-align: center;
        padding: 50px 0;
    }

    .contact-cta-section h2 {
        font-size: 26px;
    }

}

/* =========================================
   MOBILE MENU - CLICK FIX
========================================= */

.site-mobile-menu {
    z-index: 99999 !important;
}

.site-mobile-menu-body {
    position: relative;
    z-index: 100000 !important;
    pointer-events: auto !important;
}

.site-mobile-menu-body .site-nav-wrap {
    position: relative;
    z-index: 100001 !important;
    pointer-events: auto !important;
}

.site-mobile-menu-body .site-nav-wrap li {
    position: relative;
    z-index: 100002 !important;
    pointer-events: auto !important;
}

.site-mobile-menu-body .site-nav-wrap li a {
    position: relative;
    z-index: 100003 !important;
    display: block;
    pointer-events: auto !important;
    cursor: pointer;
}


/* =========================================
   PHOTO GALLERY
========================================= */

.gallery-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.gallery-image {
    display: block;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.gallery-content h3 a {
    color: #123c73;
    text-decoration: none;
}

.gallery-content h3 a:hover {
    color: #f58220;
}

.gallery-content .btn-primary {
    background: #123c73;
    border-color: #123c73;
}

.gallery-content .btn-primary:hover {
    background: #f58220;
    border-color: #f58220;
}


/* Single Gallery */

.gallery-description {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
}

.gallery-description img {
    max-width: 100%;
    height: auto;
}




/* =========================================
   ABOUT TRITECH SECTION
========================================= */



/* Background Decorative Shapes */

.about-tritech::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(24, 102, 160, 0.05);
    top: -200px;
    left: -180px;
}

.about-tritech::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 70px solid rgba(245, 126, 40, 0.04);
    bottom: -200px;
    right: -150px;
}


/* =========================================
   MAIN CARD
========================================= */

.about-main-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(18, 48, 76, 0.10);

    border: 1px solid rgba(20, 82, 130, 0.08);
}


/* =========================================
   IMAGE
========================================= */

.about-image-wrap {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    padding-right: 30px;
}


/* Blue Decorative Background */

.about-image-wrap::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    background: linear-gradient(
        135deg,
        #0d5d8f,
        #1c86b8
    );
    border-radius: 22px;
    left: -18px;
    top: 30px;
    opacity: 0.12;
}


/* Orange Small Accent */

.about-image-wrap::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border: 3px solid #f58220;
    border-radius: 18px;
    right: 5px;
    top: 10px;
    z-index: 0;
    opacity: 0.8;
}


.about-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 18px;

    box-shadow:
        0 20px 45px rgba(17, 51, 77, 0.18);
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.about-experience {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 35px;

    width: 135px;
    height: 135px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #0d6f9f,
        #29a8c9
    );

    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    border: 7px solid #ffffff;

    box-shadow:
        0 15px 35px rgba(10, 99, 145, 0.30);

    transition: all 0.3s ease;
}


.about-experience:hover {
    transform: translateY(-8px) rotate(3deg);
}


.about-experience strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}


.about-experience span {
    margin-top: 7px;
    font-size: 9px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
    padding: 20px 20px 20px 35px;
}


.about-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: #1976a5;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.about-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #f58220;
    margin-right: 10px;
}


.about-content h2 {
    margin-bottom: 25px;

    color: #173f5c;

    font-size: 38px;
    line-height: 1.3;

    font-weight: 700;
}


/* Content from WordPress */

.about-content p {
    color: #64748b;
   
    line-height: 1.9;

    line-height: 26px;
    margin: 0 0 30px;
    font-size: 16px;
    font-weight: 500;
}


/* =========================================
   COUNTERS
========================================= */

.about-counters {
    margin-top: 30px;
    margin-bottom: 25px;
}


.counter-card {
    position: relative;

    height: 100%;

    padding: 22px 12px;

    background: #f8fbfd;

    border: 1px solid #e3ebf0;
    border-radius: 14px;

    text-align: center;

    transition: all 0.3s ease;

    overflow: hidden;
}


.counter-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 35px;
    height: 3px;

    background: #176c9c;

    border-radius: 0 0 5px 5px;
}


.counter-card:hover {
    background: #ffffff;

    transform: translateY(-7px);

    border-color: rgba(23, 108, 156, 0.3);

    box-shadow:
        0 12px 30px rgba(20, 78, 115, 0.12);
}


/* =========================================
   COUNTER ICON
========================================= */

.counter-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf5fa;

    color: #1976a5;

    font-size: 18px;
}


.counter-number {
    color: #123e5b;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.2;
}


.counter-label {
    margin-top: 7px;

    color: #718096;

    font-size: 9px;
    line-height: 1.4;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.about-actions {
    margin-top: 10px;
}


.about-link {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 13px 23px;

    background: #176c9c;

    color: #ffffff !important;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}


.about-link i {
    transition: transform 0.3s ease;
}


.about-link:hover {
    background: #f58220;

    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(245, 130, 32, 0.25);
}


.about-link:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-tritech {
        padding: 70px 0;
    }

    .about-main-card {
        padding: 25px;
    }

    .about-image-wrap {
        min-height: auto;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-image-wrap img {
        height: 400px;
    }

    .about-content {
        padding: 10px;
    }

    .about-content h2 {
        font-size: 32px;
    }

}


@media (max-width: 575px) {

    .about-main-card {
        padding: 15px;
        border-radius: 16px;
    }

    .about-image-wrap img {
        height: 280px;
    }

    .about-experience {
        width: 105px;
        height: 105px;

        right: 15px;
        bottom: -20px;
    }

    .about-experience strong {
        font-size: 23px;
    }

    .about-content {
        padding-top: 30px;
    }

    .about-content h2 {
        font-size: 27px;
    }

    .counter-card {
        padding: 18px 8px;
    }

    .counter-number {
        font-size: 18px;
    }

    .counter-label {
        font-size: 8px;
    }

}


