:root {
    --primary-color: #002b6b;
    --secondary-color: #f4b000;
    --dark-color: #061733;
    --white-color: #ffffff;
    --light-color: #f5f8fc;
    --text-color: #4b5563;
    --heading-color: #071f45;
    --border-color: #e5e7eb;
    --shadow: 0 15px 35px rgba(0, 43, 107, 0.12);
    --transition: all 0.35s ease;
}

.hero-title span{
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title span:first-child{
    animation: slideUpFade 1s ease forwards;
}

.hero-title span:last-child{
    animation: slideUpFade 1s ease forwards;
    animation-delay: .5s;
}

@keyframes slideUpFade{
    from{
        opacity: 0;
        transform: translateY(60px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background: var(--white-color);
    line-height: 1.7;
    overflow-x: hidden;
}
.custom-navbar.navbar-scrolled {
    box-shadow: 0 10px 30px rgba(0, 43, 107, 0.16);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
}

/* TOP BAR */
.top-bar {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 9px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: var(--white-color);
}

.top-bar i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* NAVBAR */
.custom-navbar {
    background: var(--white-color);
    box-shadow: 0 8px 25px rgba(0, 43, 107, 0.08);
    padding: 12px 0;
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    margin: 0 7px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.btn-solar,
.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--secondary-color);
    display: inline-block;
}

.btn-solar:hover,
.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-outline {
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* HERO */
.hero-slider {
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 43, 107, 0.92), rgba(0, 43, 107, 0.65), rgba(0, 0, 0, 0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-left: 8%;
    padding-right: 20px;
    color: var(--white-color);
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 176, 0, 0.18);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* GENERAL SECTIONS */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px;
}

.section-title span,
.about-content span {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2,
.about-content h2 {
    color: var(--heading-color);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin: 12px 0;
}

.section-title.light h2,
.section-title.light p {
    color: var(--white-color);
}

/* FEATURES */
.why-section {
    background: var(--light-color);
}

.features-grid,
.services-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card,
.service-card,
.blog-card {
    background: var(--white-color);
    padding: 32px 25px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover,
.service-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
}

.feature-card i,
.service-card i {
    width: 65px;
    height: 65px;
    background: rgba(244, 176, 0, 0.16);
    color: var(--secondary-color);
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-card h3,
.service-card h3,
.blog-card h3 {
    color: var(--heading-color);
    font-weight: 800;
    font-size: 20px;
}

/* SERVICES */
.services-preview {
    background:
        linear-gradient(rgba(0, 43, 107, 0.94), rgba(0, 43, 107, 0.94)),
        url("../images/services-bg.jpg") center/cover;
}

.service-card {
    background: var(--white-color);
}

/* INDUSTRIES */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.industries-grid div {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 28px 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 43, 107, 0.08);
}

.industries-grid i {
    color: var(--secondary-color);
    font-size: 35px;
    margin-bottom: 12px;
}

.industries-grid span {
    display: block;
    color: var(--heading-color);
    font-weight: 700;
}

/* STATS */
.stats-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 25px;
}

.stats-grid h3 {
    color: var(--primary-color);
    font-size: 45px;
    font-weight: 900;
}

.stats-grid p {
    color: var(--primary-color);
    font-weight: 700;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image img {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-content ul {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.about-content li {
    margin-bottom: 12px;
    color: var(--heading-color);
    font-weight: 600;
}

.about-content li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* TESTIMONIAL */
.testimonial-section{
    background:#f5f8fc;
}

.testimonial-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,43,107,.15);
}

.testimonial-content{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,43,107,.10);
}

.quote-icon{
    font-size:60px;
    color:var(--secondary-color);
    margin-bottom:20px;
}

.testimonial-content h2{
    color:var(--primary-color);
    font-weight:800;
    margin-bottom:20px;
}

.testimonial-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-stars{
    color:var(--secondary-color);
    margin-bottom:20px;
}

.testimonial-stars i{
    margin-right:5px;
}

.testimonial-content h4{
    color:var(--primary-color);
    font-weight:700;
    margin-bottom:5px;
}

.testimonial-content span{
    color:#777;
}

/* BLOG */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,43,107,.08);
    transition:.4s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image{
    overflow:hidden;
    height:250px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .7s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.12);
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    color:var(--primary-color);
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-content p{
    color:#666;
    margin-bottom:25px;
    line-height:1.7;
}

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:var(--secondary-color);
    color:var(--primary-color);
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    transition:.3s ease;
}

.blog-btn:hover{
    background:var(--primary-color);
    color:#fff;
}

.blog-btn i{
    transition:.3s ease;
}

.blog-btn:hover i{
    transform:translateX(5px);
}

/* CTA */
.cta-section {
    background:
        linear-gradient(rgba(0, 43, 107, 0.88), rgba(0, 43, 107, 0.88)),
        url("../images/cta-bg.jpg") center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 85px 20px;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
}

.cta-section p {
    max-width: 700px;
    margin: 15px auto 30px;
}

/* FOOTER */
.site-footer {
    background: var(--dark-color);
    color: #d6deee;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 35px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    background: var(--white-color);
    padding: 8px;
    border-radius: 12px;
}

.footer-col h4 {
    color: var(--white-color);
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col a {
    color: #d6deee;
}

.footer-col a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white-color);
}

.footer-socials a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 0;
}

.footer-contact p {
    margin-bottom: 13px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-btn {
    display: inline-block;
    margin-top: 15px;
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 800;
}

.footer-btn:hover {
    background: var(--white-color);
    padding-left: 22px !important;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 55px;
    padding: 22px 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    z-index: 999;
}

.whatsapp-float:hover {
    color: var(--white-color);
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .top-bar .container,
    .top-left {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-left: 5%;
    }

    .navbar-nav {
        padding-top: 15px;
    }
}


@media (max-width: 991px) {

    .features-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid,
    .testimonial-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 0 40px;
    }

}

@media (max-width: 576px) {

    /* TOP BAR */
    .top-left {
        font-size: 13px;
    }

    .top-right {
        display: none;
    }

    /* NAVBAR */
    .navbar-brand img {
        height: 42px;
    }

    .custom-navbar {
        padding: 10px 0;
    }

    /* HERO */
    .hero-slider {
        min-height: 85vh;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    /* SECTION */
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    /* GRIDS */
    .features-grid,
    .services-grid,
    .blog-grid,
    .stats-grid,
    .industries-grid,
    .footer-grid,
    .about-grid,
    .testimonial-wrapper {
        grid-template-columns: 1fr;
    }

    /* CARDS */
    .feature-card,
    .service-card,
    .blog-card {
        padding: 25px;
    }

    /* BLOG */
    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .blog-btn {
        width: 100%;
        justify-content: center;
    }

    /* STATS */
    .stats-grid {
        gap: 30px;
    }

    .stats-grid h3 {
        font-size: 36px;
    }

    /* INDUSTRIES */
    .industries-grid div {
        padding: 20px;
    }

    /* ABOUT */
    .about-grid {
        gap: 30px;
    }

    .about-content {
        text-align: center;
    }

    .about-content ul {
        text-align: left;
    }

    /* TESTIMONIAL */
    .testimonial-wrapper {
        gap: 25px;
    }

    .testimonial-content {
        padding: 25px;
        text-align: center;
    }

    .testimonial-content h2 {
        font-size: 26px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .quote-icon {
        font-size: 45px;
    }

    /* FOOTER */
    .footer-grid {
        gap: 35px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    /* WHATSAPP */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: 15px;
        bottom: 15px;
    }
}

.page-hero {
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,43,107,.92), rgba(0,43,107,.55));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 750px;
}

.page-hero-content span {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero-content h1 {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 900;
    margin: 15px 0;
}

.page-hero-content p {
    font-size: 18px;
}

.mission-section,
.values-section {
    background: var(--light-color);
}

.mission-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.values-grid {
    grid-template-columns: repeat(4, 1fr);
}

.mission-card,
.value-card {
    background: #fff;
    padding: 35px 28px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover,
.value-card:hover {
    transform: translateY(-8px);
}

.mission-card i,
.value-card i {
    width: 65px;
    height: 65px;
    background: rgba(244,176,0,.16);
    color: var(--secondary-color);
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 20px;
}

.mission-card h3,
.value-card h3 {
    color: var(--heading-color);
    font-weight: 800;
}

.why-exist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.why-exist-content span {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.why-exist-content h2 {
    color: var(--heading-color);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin: 12px 0;
}

.why-exist-image img {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

@media(max-width:991px) {
    .mission-grid,
    .values-grid,
    .why-exist-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 45vh;
        text-align: center;
    }
}

.services-page{
    background:#fff;
}

.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:100px;
}

.service-row.reverse .service-image{
    order:2;
}

.service-row.reverse .service-content{
    order:1;
}

.service-image img{
    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
    transition:.5s;
}

.service-image img:hover{
    transform:scale(1.03);
}

.service-content span{
    color:var(--secondary-color);
    font-size:40px;
    font-weight:800;
}

.service-content h2{
    color:var(--primary-color);
    font-weight:800;
    margin:10px 0 20px;
}

.service-content ul{
    margin-top:20px;
}

.service-content ul li{
    margin-bottom:10px;
    font-weight:500;
}

.process-section{
    background:var(--light-color);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#fff;
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.process-card h3{
    color:var(--secondary-color);
    font-size:45px;
    font-weight:800;
}

.process-card h4{
    color:var(--primary-color);
    margin:15px 0;
}

@media(max-width:991px){

    .service-row,
    .service-row.reverse{
        grid-template-columns:1fr;
        gap:30px;
        margin-bottom:70px;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-content{
        order:unset;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .process-grid{
        grid-template-columns:1fr;
    }

    .service-content span{
        font-size:30px;
    }

    .service-content h2{
        font-size:28px;
    }

}


.contact-section {
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info span {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    margin: 12px 0 18px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-info-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.contact-info-box i {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(244,176,0,.16);
    color: var(--secondary-color);
    display: grid;
    place-items: center;
    border-radius: 15px;
    font-size: 22px;
}

.contact-info-box h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-info-box a {
    color: var(--text-color);
    font-weight: 600;
}

.contact-info-box a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    outline: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(244,176,0,.15);
}

.contact-submit {
    width: 100%;
    border: none;
}

.contact-submit i {
    margin-left: 8px;
}

.contact-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 55px 0;
}

.contact-cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-cta h2 {
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-cta p {
    margin-bottom: 0;
}



.btn-spinner{
    display:none;
}

@media(max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-grid {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 576px) {
    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-box {
        padding: 18px;
    }
}


.blog-main-title {
    text-align: center;
    margin-bottom: 35px;
}

.blog-main-title i {
    color: var(--secondary-color);
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-main-title h1 {
    color: var(--primary-color);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
}

.blog-main-title h1 span {
    color: var(--secondary-color);
}

.blog-main-title p {
    color: var(--text-color);
}

.blog-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.blog-category-tabs a {
    padding: 10px 22px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 700;
    background: #fff;
}

.blog-category-tabs a.active,
.blog-category-tabs a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.featured-blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--primary-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.featured-blog-image {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.featured-blog-card:hover .featured-blog-image img {
    transform: scale(1.08);
}

.featured-blog-image span {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
}

.featured-blog-content {
    padding: 55px 45px;
    color: #fff;
}

.featured-blog-content small,
.post-category {
    color: var(--secondary-color);
    font-weight: 800;
}

.featured-blog-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin: 15px 0;
}

.featured-blog-content p {
    color: #d6deee;
    line-height: 1.8;
}

.featured-blog-content .blog-meta {
    color: #d6deee;
    margin: 20px 0;
}

.blog-list-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media(max-width: 991px) {
    .featured-blog-card,
    .blog-list-grid {
        grid-template-columns: 1fr;
    }

    .featured-blog-content {
        padding: 35px 25px;
    }
}

@media(max-width: 576px) {
    .blog-category-tabs a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .featured-blog-image {
        min-height: 250px;
    }
}


.single-post-hero {
    background:
        linear-gradient(rgba(0,43,107,.92), rgba(0,43,107,.92)),
        url("../images/blog-hero.jpg") center/cover;
    padding: 110px 0 80px;
    color: #fff;
}

.single-post-header {
    max-width: 900px;
    text-align: center;
    margin: auto;
}

.single-post-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 22px;
}

.single-post-header h1 {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.15;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: #d6deee;
}

.single-post-meta i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.single-post-section {
    background: var(--light-color);
}

.single-post-layout {
    display: grid;
    grid-template-columns: 2fr .8fr;
    gap: 35px;
    align-items: start;
}

.single-post-content,
.sidebar-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.single-post-content {
    overflow: hidden;
}

.single-post-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.post-content-body {
    padding: 40px;
}

.post-content-body h2,
.post-content-body h3,
.post-content-body h4 {
    color: var(--primary-color);
    font-weight: 900;
    margin: 28px 0 14px;
}

.post-content-body p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.post-content-body ul,
.post-content-body ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.post-content-body li {
    margin-bottom: 10px;
}

.post-content-body img {
    border-radius: 18px;
    margin: 25px 0;
}

.post-share-box {
    border-top: 1px solid var(--border-color);
    padding: 25px 40px 35px;
}

.post-share-box h4 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
}

.post-share-links {
    display: flex;
    gap: 12px;
}

.post-share-links a {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.post-share-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.sidebar-card {
    padding: 28px;
    margin-bottom: 25px;
}

.sidebar-card h3 {
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 15px;
}

.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-list li {
    border-bottom: 1px solid var(--border-color);
    padding: 13px 0;
}

.recent-post-list li:last-child {
    border-bottom: none;
}

.recent-post-list a {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
}

.recent-post-list a:hover {
    color: var(--secondary-color);
}

.recent-post-list span {
    font-size: 13px;
    color: var(--text-color);
}

.sidebar-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-category-list a {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 700;
}

.sidebar-category-list a:hover {
    background: var(--secondary-color);
}

@media(max-width: 991px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .single-post-image {
        height: 300px;
    }
}

@media(max-width: 576px) {
    .single-post-hero {
        padding: 80px 0 60px;
    }

    .post-content-body,
    .post-share-box {
        padding: 25px;
    }

    .single-post-image {
        height: 230px;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media(max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* PROCESS SECTION */
.process-card{
    position: relative;
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.process-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#f4b000,#ffcc33);
    transition: all 0.4s ease;
}

.process-card:hover::before{
    left: 0;
}

.process-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.process-card h3{
    font-size: 48px;
    font-weight: 700;
    color: #f4b000;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.process-card:hover h3{
    transform: scale(1.1);
}

.process-card h4{
    color: #002b6b;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.process-card:hover h4{
    color: #f4b000;
}

.process-card p{
    color: #666;
    line-height: 1.7;
}

.process-card:hover p{
    color: #333;
}

.process-card{
    cursor: pointer;
}

.process-card:hover{
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        #fff9e8 100%
    );
}


/* =====================================
   YOUTUBE SHOWCASE SECTION
===================================== */

.video-showcase-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
    overflow:hidden;
}

.video-showcase-card{
    position:relative;
    max-width:950px;
    margin:50px auto 0;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.12),
        0 0 50px rgba(244,176,0,0.08);
    transform:translateY(0);
    transition:all .5s ease;
}

.video-showcase-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.18),
        0 0 80px rgba(244,176,0,0.18);
}

.video-showcase-card iframe{
    width:100%;
    height:480px;
    border:none;
    display:block;
}

.video-glow{
    position:absolute;
    top:-50px;
    left:-50px;
    width:250px;
    height:250px;
    background:rgba(244,176,0,.18);
    filter:blur(80px);
    z-index:1;
    pointer-events:none;
}

.video-showcase-card::after{
    content:'';
    position:absolute;
    inset:0;
    border:2px solid rgba(244,176,0,.15);
    border-radius:30px;
    pointer-events:none;
}

@media(max-width:1200px){

    .video-showcase-card{
        max-width:100%;
    }

    .video-showcase-card iframe{
        height:550px;
    }

}

@media(max-width:992px){

    .video-showcase-section{
        padding:80px 0;
    }

    .video-showcase-card iframe{
        height:450px;
    }

}

@media(max-width:768px){

    .video-showcase-section{
        padding:70px 0;
    }

    .video-showcase-card{
        border-radius:20px;
    }

    .video-showcase-card iframe{
        height:320px;
    }

}

@media(max-width:576px){

    .video-showcase-card iframe{
        height:240px;
    }

}