html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

:root {

    /* Primary Brand Color */
    --primary-color: #29166e;
    /* PCB Green */
    /* Secondary Brand Color */
    --secondary-color: #0B2A3C;
    --red-color: #b41515;
    --white-color: #ffff;
    /* Neutral Colors */
    --text-light: #5e646a;
    /* Soft White */
    --text-dark: #130935;

}

body {
    background: #f4f4f4;
    font-family: "Abel", sans-serif;
    overflow-x: hidden;
}

button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
    transition: all 0.2s ease 0s;
}


a {
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease 0s;
    font-weight: 600;

}




fieldset {
    border: none;
    padding: 0px;
}


ol,
ul,
li {
    list-style: none;
}

h1 {
    font-size: 44px;
    font-weight: 500;
    line-height: 120%;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--primary-color);
}

h3 {
    font-size: 28px;
    line-height: 120%;
}

h4 {
    font-size: 24px;
    line-height: 120%;
}

h5 {
    font-size: 20px;
    line-height: 120%;
}

p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 26px;
}

img {
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

.border-radius {
    border-radius: 12px;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

.sec-spac {
    padding: 60px 0;
}

.flx-row {
    display: flex;
}

.flx-column {
    display: flex;
    flex-direction: column;
}

.jstfy-cent {
    justify-content: center;
}

.jstfy-start {
    justify-content: start;
}

.jstfy-space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}


.child-logos {
    padding: 0 15px;
    gap: 15px;
}

.child-logos a img {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.half-box {
    width: 100%;
    max-width: 49%;
}

.align-strch {
    align-items: stretch;
}

.mt-40 {
    margin-top: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.content-width {
    width: 100%;
    max-width: 48%;
}

/* ================= SIDEBAR ================= */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
    height: 100vh;
    background-color: var(--white-color);
    color: var(--primary-color);
    transition: .4s;
    z-index: 1000;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.08);
}

.site-logo {
    padding: 30px 0;
    background-color: var(--white-color);
    ;
}

.site-logo img {
    height: 60px;
    width: 110px;
    margin: 0 auto;
}

/* NAV */


.nav-link {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: var(--primary-color);
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: .3s;
}

/* underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: .3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

/* active */
.nav-link.active::after {
    width: 70%;
}

.executive-sec {
    padding-bottom: 60px;
}

footer h3,
footer h4 {
    color: var(--white-color);
}

/* ================= MAIN ================= */

.main-wrapper {
    margin-left: 200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* MENU BUTTON */

.menu-btn {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    font-size: 22px;
    z-index: 1100;
    cursor: pointer;
}

.seperator {
    height: 1px;
    background-color: var(--primary-color);
}

.hero-left {
    width: 100%;
    max-width: 50%;
}

.hero-right {
    width: 100%;
    max-width: 48%;
}

.service-box img {
    height: 300px;
    object-fit: cover;
}

/* ===== HERO RIGHT ===== */
.hero-right {
    display: flex;
    flex-direction: column;
}

/* ===== SERVICE BOX ===== */



/* ===== TEXT ===== */
.service-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.3px;
}


.section-title {
    font-weight: 800;
    line-height: 1.2;
}

.service-box {
    position: relative;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

/* Dark overlay */
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.1));
    z-index: 1;
}


/* Content Box */
.service-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.15));

    backdrop-filter: blur(8px);
    /* glass effect */
    -webkit-backdrop-filter: blur(8px);
    /* safari */
}


.shape {
    width: 40px;
    height: 40px;
    transform: rotate(-90deg);
    background: linear-gradient(to right,
            #8b2c2c 0%,
            #e53935 40%,
            #e53935 40%,
            #6d1f1f 100%);

    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

/* Title */
.service-content a {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 0.5px;
}

/* Optional small accent line */
.service-content a::after {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background: var(--white-color);
    margin-top: 6px;
    border-radius: 2px;
}

/* ===== RIGHT GRID ===== */

.services-grid {
    display: grid;
    gap: 30px;
}

/* SERVICE CARD */

.service-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    border-left: 6px solid transparent;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* NUMBER STYLE */

.service-number {
    font-size: 50px;
    font-weight: 900;
    color: rgba(41, 22, 110, 0.08);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* TITLE */

.service-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.4;
    font-weight: 700;
    max-width: 420px;
}

/* ===== CTA BUTTON ===== */

.cta-btn {
    position: relative;
    display: inline-block;
    padding: 16px 38px;
    margin-top: 30px;
    background-color: #ffff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 2px solid var(--primary-color);
    overflow: hidden;

    transition: .4s ease;
}

/* TEXT ABOVE ANIMATION */
.cta-btn span {
    position: relative;
    z-index: 2;
}

/* SLIDE BACKGROUND EFFECT */
.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);

    transform: translateX(-100%);
    transition: transform .45s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}

/* HOVER EFFECT */
.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-btn:hover {
    color: var(--white-color) !important;
    box-shadow: 0 10px 25px rgba(41, 22, 110, 0.35);
    transform: translateY(-3px);
}

/* CLICK FEEDBACK */
.cta-btn:active {
    transform: translateY(0);
}



/* FOOTER */

/* =================================
   FOOTER
================================= */

.footer {
    background: var(--primary-color);
    color: var(--white-color);
    padding-top: 70px;
    margin-left: 200px;
}

.footer p {
    color: var(--white-color);
}

/* GRID */

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px 60px;

    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
}

/* COLUMN */

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    position: relative;
}

/* small accent line */
.footer-col h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--white-color);
    display: block;
    margin-top: 8px;
    opacity: .4;
}

.footer-col p {
    opacity: .85;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* LINKS */

.footer-link {
    display: block;
    color: var(--white-color);
    text-decoration: none;
    margin-bottom: 10px;
    position: relative;
    width: fit-content;
    transition: .3s;
}

.footer-link:hover {
    transform: translateX(6px);
    opacity: .85;
}

/* =================================
   TOOLTIP
================================= */

.footer-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translateY(-50%) scale(.9);

    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
}

.footer-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* =================================
   BOTTOM BAR
================================= */

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background-color: var(--white-color);
    color: var(--text-dark);
}

/* =====================================
   CERTIFICATES GRID
===================================== */

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.certificate-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: .4s ease;
}

.certificate-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

/* HOVER EFFECT */

.certificate-item:hover img {
    transform: scale(1.12);
}

.certificate-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* OVERLAY TITLE */

.certificate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.1));

    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
    transition: .4s;
}



.certificate-overlay h4 {
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =====================================
   POPUP (LIGHTBOX)
===================================== */

.certificate-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: .3s ease;

    z-index: 9999;
}

.certificate-popup.active {
    opacity: 1;
    visibility: visible;
}

.certificate-popup img {
    max-width: 600px;
    max-height: 600px;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: zoomIn .4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* =====================================
   EXECUTIVE SECTION
===================================== */

.executive-sec {
    color: var(--text-dark);
}

/* HEADING */

.exec-heading {
    text-align: center;
    margin-bottom: 40px;
}

.exec-heading h2 {
    text-align: start;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.exec-heading p {
    color: var(--text-light);
}


/* =====================================
   PATRON FEATURED
===================================== */

.patron-wrapper {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 10px;
}



.exec-role {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.patron-content h3 {
    margin: 8px 0;
    font-style: italic;
}

.patron-content h5 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.patron-content p {
    line-height: 1.8;
    margin-bottom: 25px;
}


/* MESSAGE BOX */

.exec-message {
    background: #f7f8fc;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
}

.exec-message h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.exec-message blockquote {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
}


/* ===== IMAGE WRAPPER ===== */
.img-wraper {
    position: relative;
    width: 150px;
    height: 150px;
}

/* ===== CIRCULAR IMAGE ===== */
.img-wraper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

    /* Clean white border */
    border: 2px solid var(--white-color);

    /* Soft premium shadow */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    transition: all 0.4s ease;
}

/* ===== OUTER RING (BRAND TOUCH) ===== */
.img-wraper::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;

    /* Brand gradient ring */
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    z-index: -1;
    opacity: 0.9;
}


/* =====================================
   EXECUTIVE CARDS
===================================== */

.executives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.exec-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
}



.exec-info span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.exec-info h4 {
    margin: 8px 0;
    font-style: italic;
}

.exec-info small {
    color: var(--text-light);
    display: block;
    margin: 15px 0;
}

.exec-info p {
    line-height: 1.7;
    color: var(--text-dark);
}



.short-view {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    /* adjust spacing if needed */
    max-height: calc(1.6em * 4);
    /* ensures proper height */
}

/* ===== POPUP ===== */
.exec-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
}

.exec-popup .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.exec-popup .popup-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    margin: 60px auto;
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
    animation: popupFade 0.3s ease;
}

.exec-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.exec-popup .popup-close:hover {
    color: var(--primary-color);
}

.popup-card {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px;
}

.popup-card .popup-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.popup-card .popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.popup-card .popup-info {
    flex: 1 1 100%;
}

.popup-card .popup-info span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.popup-card .popup-info h4 {
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.popup-card .popup-info small {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.popup-card .popup-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-btn {
    z-index: 1;
}

.cta-btn::before {
    z-index: -1;
}

.heading-underline {
    position: relative;
    display: inline-block;
}

/* underline */
.heading-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 4px;

    /* gradient: blur → solid → blur */
    background: linear-gradient(to right,
            transparent 0%,
            var(--red-color) 20%,
            var(--red-color) 80%,
            transparent 100%);

    /* soft blur effect */
    filter: blur(1px);
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 4px;

    background: linear-gradient(to right,
            transparent,
            var(--red-color),
            var(--red-color),
            transparent);

    /* mask creates smooth fade edges */
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 20%,
            black 80%,
            transparent);
    mask-image: linear-gradient(to right,
            transparent,
            black 20%,
            black 80%,
            transparent);
}

.exec-img {
    display: inline-block;
    float: left;
    margin-right: 20px;
}

button.read-more-btn.cta-btn {
    float: right;
}


/* Service Box */
.service-box {
    position: relative;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Slider */
.service-slider img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Smooth zoom effect */
.service-slider img {
    transition: transform 2.5s ease;
}

.owl-item.active .service-slider img {
    transform: scale(1.05);
}

/* Overlay Content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(to top,
            rgba(41, 22, 110, 0.85),
            rgba(41, 22, 110, 0.3),
            transparent);

    z-index: 2;
}

/* Text */
.service-content a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

/* Hover effect */
.service-box:hover .service-content {
    background: linear-gradient(to top,
            rgba(41, 22, 110, 0.95),
            rgba(41, 22, 110, 0.5),
            rgba(41, 22, 110, 0.2));
}



.nav-link:hover {
    color: var(--red-color);
}

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 100px;
    background: var(--white-color);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Dropdown Links */
.dropdown-link {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    transition: all 0.25s ease;
}

/* Hover Effect */
.dropdown-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    padding-left: 22px;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}





/* Form Section */
.contact-form {
    color: var(--text-dark);
    padding: 50px 0;
}
.contact-form .container{
    max-width: 700px;
}
.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="tel"],
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    font-size: 1em;
    color: var(--text-dark);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

button[type="submit"] {
    position: relative;
    display: inline-block;
    padding: 16px 38px;
    margin-top: 30px;
    background-color: #ffff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    transition: .4s ease;
    z-index: 1;
}

button:hover {
    color: var(--white-color) !important;
    box-shadow: 0 10px 25px rgba(41, 22, 110, 0.35);
    transform: translateY(-3px);
}

/* button:hover::before {
    transform: translateX(0);
}

button::before {
    z-index: -1;
}

button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform .45s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
} */

button span {
    position: relative;
    z-index: 2;
}

.hero-right-heading {
    gap: 20px;
    justify-content: end;
}




/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    max-width: 650px;
    color: var(--text-light);
    margin: auto;
}

/* Grid */
.construction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.construction-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

/* Owl Fixes */
.card-slider {
    width: 100%;
    height: 100%;
}

.owl-stage-outer {
    overflow: hidden !important;
}

.owl-stage {
    display: flex;
}

.owl-item {
    min-height: 1px;
}

/* Slider images */
.card-slider img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;

    /* Smooth zoom effect */
    transition: transform 2.5s ease;
}

.owl-item.active img {
    transform: scale(1.05);
}

/* Overlay (SUBTLE BLUE BEFORE HOVER) */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;

  background: linear-gradient(to top, rgba(41, 22, 110, 0.35), rgb(13 0 83 / 85%), transparent);

    transform: translateY(45%);
    transition: 0.4s ease;
    z-index: 2;
}

/* Overlay Text */
.overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 0.5px;
}

.overlay p {
    font-size: 14px;
    color: #e5e5e5;
    opacity: 0.9;
}

/* Hover */
.construction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.construction-card:hover .overlay {
    transform: translateY(0);

    background: linear-gradient(
        to top,
        rgba(41, 22, 110, 0.95),
        rgba(41, 22, 110, 0.6),
        rgba(41, 22, 110, 0.2)
    );
}

.construction-wrapper {
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */
.construction-left {
    width: 260px;
    position: sticky;
    top: 100px;
    padding-top: 20px;
    height: fit-content;
}

.construction-left h4 {
        font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-left: 14px;
    position: relative;
    display: block !important;
}

/* Arrow bullet like brochure */
.construction-left h4::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 10px;
    top: 3px;
}

/* RIGHT SIDE */
.construction-right {
    flex: 1;
}

/* GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

/* TEXT */
.project-info {
    padding: 12px;
}

.project-info h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.project-info p {
    font-size: 12px;
    color: var(--text-light);
}








/* ARROW ICON */
.nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* ROTATE ARROW ON HOVER */
.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* GRID */


/* CARD */
.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.images-slider img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* INFO */
.project-info {
  padding: 15px;
}



/* OWL ARROWS */
.images-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  border: none;
  font-size: 18px;
  transition: 0.3s;
}

.images-slider .owl-nav button:hover {
  background: #021020 !important;
}

/* LEFT */
.images-slider .owl-nav .owl-prev {
  left: 10px;
}

/* RIGHT */
.images-slider .owl-nav .owl-next {
  right: 10px;
}

/* HIDE DOTS */
.images-slider .owl-dots {
  display: none;
}



/* LEFT → RIGHT */
.btn-left::before {
    transform: translateX(-100%);
}
.btn-left:hover::before {
    transform: translateX(0);
}

/* RIGHT → LEFT */
.btn-right::before {
    transform: translateX(100%);
}
.btn-right:hover::before {
    transform: translateX(0);
}

.project-grid button span {
    position: relative;
    z-index: 2;
}
.project-grid button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


/* POPUP BACKDROP */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.img-popup.active {
  opacity: 1;
  visibility: visible;
}
html {
    overflow-x: hidden;
}
/* IMAGE */
.popup-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* ================================================
   SINGLE POST PAGE
================================================ */

.single-post-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

/* ── POST HEADER ── */
.post-header {
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-category {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
}

.post-date,
.post-read-time {
    color: var(--text-light);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.post-date::before,
.post-read-time::before {
    content: '—';
    margin-right: 10px;
    color: var(--primary-color);
    opacity: 0.4;
}

.post-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

/* ── AUTHOR ── */
.post-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f5f6fa;
    border-radius: 6px;
    width: fit-content;
}

.post-author img,
.author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.author-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── FEATURED IMAGE ── */
.post-featured-image {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(41, 22, 110, 0.15);
}

.post-featured-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.post-featured-image:hover img {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(11, 42, 60, 0.5), transparent);
    pointer-events: none;
}

/* ── POST CONTENT ── */
.post-content-wrapper {
    padding: 0 10px;
}

.post-content {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin: 36px 0 16px;
    line-height: 1.3;
}

.post-content h2 {
    font-size: 28px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.post-content h3 {
    font-size: 22px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content a:hover {
    color: var(--red-color);
}

.post-content img {
    width: 100%;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.post-content ul,
.post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.post-content ul li,
.post-content ol li {
    margin-bottom: 10px;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: #f5f6fa;
    margin: 30px 0;
    padding: 20px 28px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 18px;
}

/* ── TAGS ── */
.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid #e8e9f0;
}

.tags-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.post-tag {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.post-tag:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ── POST NAVIGATION ── */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e9f0;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.nav-prev,
.nav-next {
    background: #f5f6fa;
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.nav-prev:hover,
.nav-next:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 8px 24px rgba(41, 22, 110, 0.08);
}

.nav-next {
    text-align: right;
}

.nav-prev a,
.nav-next a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================
   BLOG HERO SECTION
================================================ */

.blog-hero-sec {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero-sec::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.blog-hero-sec::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.blog-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   BLOG LISTING SECTION
================================================ */

.blog-listing-sec {
    background: #f7f8fc;
}

/* ── GRID ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* ── CARD ── */
.blog-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(41, 22, 110, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(41, 22, 110, 0.14);
}

/* ── CARD IMAGE ── */
.blog-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 220px;
    background: var(--secondary-color);
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

.blog-card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}

/* ── CATEGORY BADGE ── */
.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
    z-index: 2;
}

/* ── CARD BODY ── */
.blog-card-body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── META ── */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.blog-card-date,
.blog-card-read-time {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date i,
.blog-card-read-time i {
    color: var(--primary-color);
    font-size: 11px;
}

/* ── TITLE ── */
.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

/* ── EXCERPT ── */
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── READ MORE BUTTON ── */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
    transition: all 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.blog-read-more:hover {
    color: var(--red-color);
    border-bottom-color: var(--red-color);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ── PAGINATION ── */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white-color);
    border: 1.5px solid #e0e2ee;
    transition: all 0.25s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
    width: auto;
    padding: 0 18px;
    gap: 8px;
}

/* ── NO POSTS ── */
.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.blog-no-posts i {
    font-size: 56px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
}

.blog-no-posts h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}




input.wpcf7-form-control.wpcf7-submit.has-spinner {
    position: relative;
    display: inline-block;
    padding: 16px 38px;
    margin-top: 30px;
    background-color: #ffff;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    overflow: hidden;
    transition: .4s ease;
    z-index: 1;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    box-shadow: 0 10px 25px rgba(41, 22, 110, 0.35);
    transform: translateY(-3px);
}
button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .ast-custom-button:hover .button:hover, .ast-custom-button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus, body .wp-block-file .wp-block-file__button:hover, body .wp-block-file .wp-block-file__button:focus {
    color: #ffffff;
    background-color: #29166e !important;
    border-color: #29166e !important;
}