/* ===========================
GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
}

/* ===========================
TOP BAR
=========================== */

.top-bar {
    background: #0f172a;
    color: #fff;
    padding: 8px 4%;
    font-size: 14px;
}

.top-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left a {
    color: #fff;
    text-decoration: none;
}

.language-select {
    border: none;
    border-radius: 4px;
    padding: 3px 8px;
}

.top-right {
    flex: 1;
}

.top-right marquee {
    color: #facc15;
    font-weight: 500;
}

/* ===========================
NAVBAR
=========================== */

.custom-navbar {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    width: 45px;
}

.navbar-nav {
    gap: 2px;
}

.nav-link {
    color: #1e293b !important;
    font-weight: 500;
    transition: .3s;

    .custom-navbar .container {
        max-width: 1400px;
    }
}

.nav-link:hover {
    color: #2563eb !important;
}

.login-link {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    padding: 8px;
}

.custom-navbar .container {
    max-width: 1400px;
}

/* ===========================
DROPDOWN
=========================== */

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* ===========================
NAV BUTTONS
=========================== */

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-login {
    border: 1.5px solid #2563eb;
    color: #2563eb;
    background: transparent;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.btn-consult {
    background: #2563eb;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: none;
}

.btn-login:hover,
.btn-consult:hover {
    transform: none;
}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px) {

    .top-bar .container-fluid {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-left {
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-right {
        width: 100%;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .nav-buttons {
        flex-direction: column;
        margin-top: 20px;
        width: 100%;
    }

    .btn-login,
    .btn-consult {
        width: 100%;
        text-align: center;
    }
}

@media(max-width:576px) {

    .navbar-brand {
        font-size: 22px;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-left {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:1200px) {

    .nav-link {
        font-size: 14px;
        padding: 8px 7px !important;
    }

    .btn-login,
    .btn-consult {
        padding: 7px 12px;
        font-size: 13px;
    }

}

@media (max-width:992px) {

    .nav-buttons {
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
    }

    .btn-login,
    .btn-consult {
        width: 100%;
        text-align: center;
    }

}

/* ====================================
HERO SECTION
==================================== */

.hero-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg,
            #f8fbff,
            #eef5ff);
}

.hero-badge {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
}

/* ====================================
SEARCH WIDGET
==================================== */

.search-widget {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.search-widget .nav-link {
    border-radius: 30px;
    padding: 10px 18px;
    color: #334155;
    font-weight: 500;
}

.search-widget .nav-link.active {
    background: #2563eb;
    color: #fff !important;

}

.search-widget .nav-link:hover {
    color: #fff !important;
    background: #2563eb;
}

.search-box {
    display: flex;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    outline: none;
}

.search-box button {
    border: none;
    background: #2563eb;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
}

/* ====================================
IMAGE GRID
==================================== */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-item {
    overflow: hidden;
    border-radius: 20px;
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .5s;
}

.grid-item:hover img {
    transform: scale(1.08);
}

.full-width {
    grid-column: span 2;
}

.full-width img {
    height: 280px;
}

/* ====================================
PILLARS SECTION
==================================== */

.pillars-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
    margin-top: 10px;
}

.pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.admissions .pillar-icon {
    background: #dbeafe;
    color: #2563eb;
}

.training .pillar-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.jobs .pillar-icon {
    background: #dcfce7;
    color: #16a34a;
}

.pillar-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #64748b;
    margin-bottom: 25px;
}

.pillar-card a {
    text-decoration: none;
    font-weight: 600;
}

.admissions:hover {
    background: #2563eb;
    color: #fff;
}

.training:hover {
    background: #7c3aed;
    color: #fff;
}

.jobs:hover {
    background: #16a34a;
    color: #fff;
}

.pillar-card:hover p,
.pillar-card:hover a {
    color: #fff;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px) {

    .hero-section {
        text-align: center;
        padding: 70px 0;
    }

    .hero-grid {
        margin-top: 50px;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }
}

@media(max-width:768px) {

    .search-box {
        flex-direction: column;
        border-radius: 15px;
    }

    .search-box button {
        padding: 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: auto;
    }

    .full-width img {
        height: 250px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* ====================================
ASSESSMENT SECTION
==================================== */

.assessment-section {
    padding: 100px 0;
    background: #ffffff;
}

.assessment-box {
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e293b);

    padding: 60px;
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.assessment-box::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.assessment-tag {
    background: rgba(255, 255, 255, .12);
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.assessment-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.assessment-box p {
    opacity: .85;
}

.assessment-form {
    position: relative;
    z-index: 2;
}

.assessment-form .form-select {
    height: 58px;
    border: none;
    border-radius: 15px;
}

.assessment-btn {
    margin-top: 25px;
    border: none;
    background: #2563eb;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.assessment-btn:hover {
    transform: translateY(-3px);
    background: #1d4ed8;
}

/* ====================================
TRUST SECTION
==================================== */

.trust-section {
    padding: 80px 0;
    background: #f8fafc;
}

.trust-heading {
    text-align: center;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogo 25s linear infinite;
}

.logo-track img {
    width: 140px;
    opacity: .65;
    transition: .3s;
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 1;
    filter: none;
}

@keyframes scrollLogo {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* ====================================
COUNTER SECTION
==================================== */

.counter-section {
    padding: 100px 0;
    background: #fff;
}

.counter-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.counter-card h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 12px;
    line-height: 1;

}

.counter-card p {
    color: #64748b;
    font-weight: 500;
    margin: 0;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px) {

    .assessment-box {
        padding: 40px;
        text-align: center;
    }

    .assessment-form {
        margin-top: 30px;
    }

    .assessment-box h2 {
        font-size: 2rem;
    }
}

@media(max-width:768px) {

    .assessment-box {
        padding: 30px 20px;
    }

    .assessment-box h2 {
        font-size: 1.8rem;
    }

    .counter-card {
        min-height: 180px;
        padding: 25px 15px;
    }


    .counter-card h2 {
        font-size: 2.2rem;
    }

    .counter-card p {
        font-size: 14px;
        min-height: auto;
    }

    .logo-track {
        gap: 50px;
    }

    .logo-track img {
        width: 100px;
    }
}

/* ====================================
DYNAMIC CONTENT HUB
==================================== */

.content-hub {
    padding: 100px 0;
    background: #f8fafc;
}

.hub-tabs {
    gap: 15px;
}

.hub-tabs .nav-link {
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
}

.hub-tabs .nav-link.active {
    background: #2563eb;
    color: #fff !important;
}

.hub-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
    height: 100%;
}

.hub-card:hover {
    transform: translateY(-8px);
}

.company-logo {
    width: 60px;
    margin-bottom: 20px;
}

.flag {
    width: 50px;
    margin-bottom: 15px;
}

.hub-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.hub-card span {
    color: #64748b;
    display: block;
    margin-bottom: 15px;
}

.salary {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
}

.countdown {
    background: #fee2e2;
    color: #dc2626;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
}

/* ====================================
TESTIMONIALS
==================================== */

.testimonial-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-card {
    max-width: 750px;
    margin: auto;
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #64748b;
}

.stars {
    color: #f59e0b;
    font-size: 22px;
    margin: 15px 0;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.8;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2563eb;
    border-radius: 50%;
    padding: 20px;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:768px) {

    .testimonial-card {
        padding: 30px 20px;
    }

    .hub-tabs {
        flex-direction: column;
    }

    .hub-tabs .nav-link {
        width: 100%;
    }

}

/* ====================================
FINAL CTA
==================================== */

.cta-section {
    padding: 100px 0;
    background: #f8fafc;
}

.cta-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.cta-tag {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-wrapper h2 {
    font-size: 2.7rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.cta-wrapper p {
    color: #64748b;
}

.lead-form .form-control,
.lead-form .form-select {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.cta-btn {
    margin-top: 25px;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

.cta-btn:hover {
    background: #1d4ed8;
}

/* ====================================
FOOTER
==================================== */

.footer {
    background: #0f172a;
    color: #fff;
    padding: 80px 0 25px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer h5 {
    margin-bottom: 25px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.footer ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #cbd5e1;
}

.live-status {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 7px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }

}

.footer hr {
    margin: 50px 0 25px;
    border-color: rgba(255, 255, 255, .1);
}

.footer-bottom {
    text-align: center;
    color: #94a3b8;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px) {

    .cta-wrapper {
        padding: 40px;
        text-align: center;
    }

    .cta-wrapper h2 {
        font-size: 2rem;
    }

}

@media(max-width:768px) {

    .cta-wrapper {
        padding: 30px 20px;
    }

    .footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

}

/*=================================
            ABOUT
==================================*/

/* ====================================
ABOUT HERO
==================================== */

.about-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e40af);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -150px;
    right: -120px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero p {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    opacity: .9;
}

/* ====================================
ABOUT OVERVIEW
==================================== */

.about-overview {
    padding: 100px 0;
}

.about-overview img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-overview h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.about-overview p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ====================================
SERVICES
==================================== */

.about-services {
    padding: 100px 0;
    background: #f8fafc;
}

.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .4s;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    color: #64748b;
    margin: 0;
}

/* ====================================
STATS
==================================== */

.about-stats {
    padding: 90px 0;
    background: #0f172a;
    color: #fff;
}

.about-stats .col-md-3 {
    margin-bottom: 20px;
}

.about-stats h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 10px;
}

.about-stats p {
    margin: 0;
    color: #cbd5e1;
}

/* ====================================
MISSION VISION
==================================== */

.mission-vision {
    padding: 100px 0;
}

.mv-card {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border-top: 5px solid #2563eb;
    transition: .4s;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.mv-card p {
    color: #64748b;
    margin: 0;
    line-height: 1.8;
}

/* ====================================
CTA
==================================== */

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.about-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: .9;
}

.about-cta .btn {
    padding: 14px 35px;
    border-radius: 40px;
    font-weight: 600;
    background: #fff;
    color: #2563eb;
    border: none;
}

.about-cta .btn:hover {
    background: #f8fafc;
    color: #2563eb;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px) {

    .about-hero {
        padding: 90px 0;
    }

    .about-hero h1 {
        font-size: 2.8rem;
    }

    .about-overview {
        text-align: center;
    }

    .about-overview img {
        margin-bottom: 40px;
    }

    .about-overview h2 {
        font-size: 2.2rem;
    }

    .service-box {
        min-height: auto;
    }

    .mv-card {
        padding: 35px;
    }

}

@media(max-width:768px) {

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-overview,
    .about-services,
    .mission-vision,
    .about-cta {
        padding: 70px 0;
    }

    .about-overview h2 {
        font-size: 1.8rem;
    }

    .about-stats {
        padding: 70px 0;
    }

    .about-stats h2 {
        font-size: 2.2rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .service-box {
        padding: 30px 20px;
    }

    .mv-card {
        padding: 30px 25px;
    }

}

@media(max-width:576px) {

    .about-hero {
        padding: 80px 0;
    }

    .about-hero h1 {
        font-size: 1.9rem;
    }

    .hero-tag,
    .section-tag {
        font-size: 13px;
    }

    .about-cta h2 {
        font-size: 1.7rem;
    }

}

/*==============================
     COMPANY PROFILE
================================*/

/* ====================================
PROFILE HERO
==================================== */

.profile-hero{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
}

.profile-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.profile-hero h1{
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:20px;
}

.profile-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

/* ====================================
PROFILE SECTION
==================================== */

.company-profile{
    padding:100px 0;
}

.company-profile img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#dbeafe;
    color:#2563eb;
    font-weight:600;
    margin-bottom:15px;
}

.company-profile h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:20px;
    color:#0f172a;
}

.company-profile p{
    color:#64748b;
    line-height:1.8;
}

.profile-points{
    margin-top:25px;
}

.point{
    margin-bottom:12px;
    font-weight:600;
    color:#334155;
}

/* ====================================
STRENGTHS
==================================== */

.profile-strengths{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-weight:700;
}

.strength-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.strength-card:hover{
    transform:translateY(-8px);
}

.strength-card i{
    font-size:3rem;
    color:#2563eb;
    margin-bottom:20px;
}

.strength-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.strength-card p{
    color:#64748b;
    margin:0;
}

/* ====================================
FACTS
==================================== */

.company-facts{
    padding:80px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    text-align:center;
}

.company-facts h2{
    font-size:3rem;
    color:#fff;
    font-weight:800;
}

.company-facts p{
        color:rgba(255,255,255,.85);

}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px){

    .profile-hero h1{
        font-size:2.5rem;
    }

    .company-profile{
        text-align:center;
    }

    .company-profile img{
        margin-bottom:30px;
    }

    .company-profile h2{
        font-size:2rem;
    }

}

@media(max-width:768px){

    .profile-hero{
        padding:90px 0;
    }

    .profile-hero h1{
        font-size:2rem;
    }

    .company-profile,
    .profile-strengths{
        padding:70px 0;
    }

    .company-facts h2{
        font-size:2rem;
    }

}

@media(max-width:576px){

    .profile-hero h1{
        font-size:1.7rem;
    }

    .strength-card{
        padding:25px;
    }

}

/*================================
    LEADERSHIP TEAM
==================================*/

/* ====================================
TEAM HERO
==================================== */

.team-hero{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
}

.team-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
    font-weight:600;
}

.team-hero h1{
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:20px;
}

.team-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
}

/* ====================================
FOUNDER
==================================== */

.founder-section{
    padding:100px 0;
}

.founder-img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.founder-section h2{
    font-size:2.4rem;
    font-weight:700;
    margin:15px 0;
}

.founder-section p{
    color:#64748b;
    line-height:1.8;
}

.founder-name{
    margin-top:25px;
    font-weight:700;
}

.founder-role{
    color:#2563eb;
    font-weight:600;
}

/* ====================================
TEAM CARDS
==================================== */

.leadership-team{
    padding:100px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.leader-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.leader-card:hover{
    transform:translateY(-10px);
}

.leader-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.leader-card h4{
    margin-top:25px;
    font-weight:700;
}

.leader-card span{
    color:#2563eb;
    font-weight:600;
}

.leader-card p{
    padding:15px 20px 30px;
    color:#64748b;
}

/* ====================================
VALUES
==================================== */

.leadership-values{
    padding:100px 0;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:40px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:3rem;
    color:#2563eb;
    margin-bottom:15px;
}

.value-card h4{
    margin:0;
    font-weight:700;
}

/* ====================================
CTA
==================================== */

.team-cta{
    padding:90px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
}

.team-cta h2{
    font-size:2.5rem;
    font-weight:800;
}

.team-cta p{
    margin:15px 0 30px;
}

.team-cta .btn{
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px){

    .team-hero h1{
        font-size:2.5rem;
    }

    .founder-section{
        text-align:center;
    }

    .founder-img{
        margin-bottom:30px;
    }

    .founder-section h2{
        font-size:2rem;
    }

}

@media(max-width:768px){

    .team-hero{
        padding:90px 0;
    }

    .team-hero h1{
        font-size:2rem;
    }

    .founder-section,
    .leadership-team,
    .leadership-values{
        padding:70px 0;
    }

    .leader-card img{
        height:240px;
    }

    .team-cta h2{
        font-size:1.9rem;
    }

}

@media(max-width:576px){

    .team-hero h1{
        font-size:1.7rem;
    }

    .leader-card img{
        height:220px;
    }

}

/*===============================
CAREERS + SUCCESS STORIES
=================================*/
/* HERO SECTIONS */

.career-hero,
.success-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
}

.career-tag,
.success-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
}

.career-hero h1,
.success-hero h1{
    font-size:3rem;
    font-weight:800;
}

/* COMMON */

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

/* BENEFITS */

.why-work{
    padding:100px 0;
}

.benefit-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.benefit-card:hover{
    transform:translateY(-8px);
}

.benefit-card i{
    font-size:3rem;
    color:#2563eb;
}

/* JOBS */

.job-openings{
    padding:100px 0;
    background:#f8fafc;
}

.job-card{
    background:#fff;
    padding:25px 30px;
    border-radius:20px;
    margin-bottom:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* CTA */

.career-cta{
    padding:90px 0;
    background:#2563eb;
    color:#fff;
}

/* STORIES */

.stories-section{
    padding:100px 0;
}

.story-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.story-card:hover{
    transform:translateY(-8px);
}

.story-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.story-card h4,
.story-card p{
    padding:15px 20px;
}

/* TESTIMONIALS */

.testimonial-grid{
    padding:100px 0;
    background:#f8fafc;
}

.testimonial-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    height:100%;
}

.stars{
    color:#f59e0b;
    margin-bottom:15px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .career-hero h1,
    .success-hero h1{
        font-size:2.3rem;
    }

    .job-card{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

}

@media(max-width:768px){

    .career-hero,
    .success-hero{
        padding:90px 0;
    }

    .career-hero h1,
    .success-hero h1{
        font-size:1.9rem;
    }

    .why-work,
    .job-openings,
    .stories-section,
    .testimonial-grid{
        padding:70px 0;
    }

    .story-card img{
        height:220px;
    }

}

/*==============================
CONTACT
================================ */
/* ====================================
CONTACT HERO
==================================== */

.contact-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#fff;
}

.contact-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.contact-hero h1{
    font-size:3.2rem;
    font-weight:800;
    margin-bottom:20px;
}

.contact-hero p{
    max-width:650px;
    margin:auto;
    opacity:.9;
}

/* ====================================
CONTACT SECTION
==================================== */

.contact-section{
    padding:100px 0;
    background:#f8fafc;
}

.contact-info,
.contact-form{
    background:#fff;
    padding:40px;
    border-radius:25px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.contact-info h2,
.contact-form h2{
    font-weight:700;
    margin-bottom:15px;
}

.contact-info > p{
    color:#64748b;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.info-box i{
    font-size:24px;
    color:#2563eb;
}

.info-box h5{
    margin-bottom:5px;
}

.info-box p{
    margin:0;
    color:#64748b;
}

.form-control,
.form-select{
    padding:14px;
    border-radius:12px;
    border:1px solid #dbe2ea;
}

.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:#2563eb;
}

.submit-btn{
    background:#2563eb;
    color:#fff;
    padding:14px 35px;
    border:none;
    border-radius:40px;
    font-weight:600;
}

.submit-btn:hover{
    background:#1d4ed8;
    color:#fff;
}

/* ====================================
MAP
==================================== */

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:992px){

    .contact-hero h1{
        font-size:2.5rem;
    }

    .contact-info{
        margin-bottom:20px;
    }

}

@media(max-width:768px){

    .contact-hero{
        padding:90px 0;
    }

    .contact-section{
        padding:70px 0;
    }

    .contact-hero h1{
        font-size:2rem;
    }

    .contact-info,
    .contact-form{
        padding:30px;
    }

    .map-section iframe{
        height:320px;
    }

}

@media(max-width:576px){

    .contact-hero h1{
        font-size:1.7rem;
    }

    .info-box{
        gap:15px;
    }

    .contact-info,
    .contact-form{
        padding:25px;
    }

}