/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #636363;
    color: rgba(255, 255, 255, 0.85);
    padding: 4px 0;
    font-size: 13px;
    position: relative;
    z-index: 101;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.top-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.top-bar .contact-info i {
    color: #FF6F00;
    width: 16px;
}

.top-bar .social-icons {
    display: flex;
    gap: 4px;
}

.top-bar .social-icons a {
    color: rgba(255, 255, 255, 0.6);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 13px;
}

.top-bar .social-icons a:hover {
    color: #FF6F00;
    background: rgba(255, 111, 0, 0.15);
}

/* Animated India Flag */
.india-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 10px 2px 6px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: default;
}

.india-flag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.india-flag img {
    height: 22px;
    width: auto;
    display: block;
    border-radius: 2px;
}

.india-flag .country-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: #ffffff;
    padding: 8px 24px !important;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #1a1a2e;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
}

.nav-links a i {
    font-size: 14px;
    color: #FF6F00;
    opacity: 1;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FF6F00;
    transform: scale(1.05);
}

.nav-links a:hover i,
.nav-links a.active i {
    color: #FF6F00;
    transform: scale(1.1);
}

.nav-cta {
    background: #FF6F00;
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    transform: none !important;
}

.nav-cta i {
    color: #fff !important;
}

.nav-cta:hover {
    background: #2d2d2d !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.35);
}

.nav-cta:hover i {
    color: #fff !important;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: #2d2d2d;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 102;
    position: relative;
}

/* ---------- MOBILE MENU (LEFT SLIDE) ---------- */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 40px 30px;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: #2d2d2d;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu .mobile-logo {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f6;
}

.mobile-menu .mobile-logo img {
    height: 44px;
    width: auto;
}

.mobile-menu .mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu .mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu .mobile-nav a i {
    width: 24px;
    color: #FF6F00;
    font-size: 16px;
    opacity: 1;
    transition: 0.3s;
}

.mobile-menu .mobile-nav a:hover,
.mobile-menu .mobile-nav a.active {
    background: rgba(255, 111, 0, 0.08);
    color: #FF6F00;
    transform: scale(1.02);
}

.mobile-menu .mobile-nav a:hover i,
.mobile-menu .mobile-nav a.active i {
    color: #FF6F00;
    transform: scale(1.1);
}

.mobile-menu .mobile-nav .nav-cta-mobile {
    background: #FF6F00;
    color: #fff !important;
    justify-content: center;
    margin-top: 10px;
}

.mobile-menu .mobile-nav .nav-cta-mobile i {
    color: #fff !important;
}

.mobile-menu .mobile-nav .nav-cta-mobile:hover {
    background: #2d2d2d;
    color: #fff !important;
    transform: scale(1.02);
}

.mobile-menu .mobile-nav .nav-cta-mobile:hover i {
    color: #fff !important;
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    height: 94vh;
    min-height: 560px;
    max-height: 800px;
    overflow: hidden;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.85) 0%, rgba(45, 45, 45, 0.55) 50%, rgba(45, 45, 45, 0.35) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide .content {
    max-width: 750px;
    color: #fff;
    padding: 20px 0;
    text-align: left;
}

.slide .content .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.2);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 111, 0, 0.25);
    font-family: 'Poppins', sans-serif;
}

.slide .content h1 {
    font-weight: 800;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.slide .content h1 .highlight {
    color: #FF6F00;
    position: relative;
}

.slide .content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 111, 0, 0.3);
    border-radius: 4px;
}

.slide .content .btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF6F00;
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.4);
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: #fff;
    color: #2d2d2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: #fff;
    color: #2d2d2d;
    transform: translateY(-3px);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: #FF6F00;
    border-color: #fff;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: #FF6F00;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(45, 45, 45, 0.25);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #FF6F00;
    border-color: #FF6F00;
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: #f9f9f9;
    padding: 24px 0;
    border-bottom: 1px solid #eef2f6;
    position: relative;
    z-index: 5;
}

.trust-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-bar .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #2d2d2d;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.trust-bar .item i {
    color: #FF6F00;
    font-size: 18px;
}

/* ---------- SERVICES (WHAT WE DO) ---------- */
.services {
    padding: 70px 0 60px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg opacity='0.08'%3E%3Cpath d='M0 400 L100 350 L200 400 L300 350 L400 400 L500 350 L600 400 L700 350 L800 400 L800 800 L0 800 Z' fill='%232d2d2d'/%3E%3Cpath d='M0 420 L100 370 L200 420 L300 370 L400 420 L500 370 L600 420 L700 370 L800 420 L800 800 L0 800 Z' fill='%23FF6F00' opacity='0.5'/%3E%3Crect x='0' y='450' width='800' height='350' fill='%232d2d2d' opacity='0.05'/%3E%3Ccircle cx='150' cy='500' r='30' fill='%23FF6F00' opacity='0.1'/%3E%3Ccircle cx='400' cy='550' r='40' fill='%232d2d2d' opacity='0.05'/%3E%3Ccircle cx='650' cy='480' r='25' fill='%23FF6F00' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.services .section-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.services .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.services .section-header h2 {
    font-weight: 700;
    font-size: 34px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.services .section-header p {
    color: #555;
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 111, 0, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: 0.4s;
    border-radius: 16px;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #FF6F00;
    background: #fff;
}

.service-card .card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card .card-img .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.4), rgba(45, 45, 45, 0.1));
    transition: 0.4s;
}

.service-card:hover .card-img .img-overlay {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.3), rgba(45, 45, 45, 0.2));
}

.service-card .card-img .img-label {
    position: absolute;
    bottom: 12px;
    left: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
}

.service-card:hover .card-img .img-label {
    opacity: 1;
}

.service-card .card-body {
    padding: 22px 22px 26px;
}

.service-card .card-body h4 {
    font-weight: 700;
    font-size: 17px;
    color: #2d2d2d;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.service-card .card-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.service-card .card-body .learn-link {
    font-weight: 600;
    font-size: 13px;
    color: #FF6F00;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.service-card .card-body .learn-link:hover {
    gap: 10px;
}

/* ---------- PROJECTS (OUR PORTFOLIO) ---------- */
.projects {
    padding: 70px 0 60px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg opacity='0.08'%3E%3Cpath d='M0 400 L100 350 L200 400 L300 350 L400 400 L500 350 L600 400 L700 350 L800 400 L800 800 L0 800 Z' fill='%232d2d2d'/%3E%3Cpath d='M0 420 L100 370 L200 420 L300 370 L400 420 L500 370 L600 420 L700 370 L800 420 L800 800 L0 800 Z' fill='%23FF6F00' opacity='0.5'/%3E%3Crect x='0' y='450' width='800' height='350' fill='%232d2d2d' opacity='0.05'/%3E%3Ccircle cx='150' cy='500' r='30' fill='%23FF6F00' opacity='0.1'/%3E%3Ccircle cx='400' cy='550' r='40' fill='%232d2d2d' opacity='0.05'/%3E%3Ccircle cx='650' cy='480' r='25' fill='%23FF6F00' opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.projects .section-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

.projects .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.projects .section-header h2 {
    font-weight: 700;
    font-size: 34px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.projects .section-header p {
    color: #555;
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.project-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 111, 0, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: 0.4s;
    border-radius: 16px;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #FF6F00;
    background: #fff;
}

.project-card .card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-card .card-img .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.3), rgba(45, 45, 45, 0.05));
    transition: 0.4s;
}

.project-card:hover .card-img .img-overlay {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(45, 45, 45, 0.1));
}

.project-card .card-img .status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-progress {
    background: #fff3cd;
    color: #856404;
}

.status-upcoming {
    background: #cce5ff;
    color: #004085;
}

.project-card .card-body {
    padding: 20px 22px 24px;
}

.project-card .card-body h4 {
    font-weight: 700;
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.project-card .card-body .client {
    font-size: 14px;
    color: #555;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.project-card .card-body .client i {
    color: #FF6F00;
    margin-right: 4px;
}

.project-card .card-body .location {
    font-size: 13px;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.projects .view-all-wrap {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .about-content .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.about-section .about-content h2 {
    font-weight: 700;
    font-size: 34px;
    color: #2d2d2d;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.about-section .about-content .sub-headline {
    font-weight: 500;
    font-size: 18px;
    color: #FF6F00;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.about-section .about-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.about-section .about-content .btn-about {
    background: #FF6F00;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.35);
    font-family: 'Poppins', sans-serif;
}

.about-section .about-content .btn-about:hover {
    background: #2d2d2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.about-section .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    background-image: url('../images/about-image.webp');
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.about-section .about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.15), rgba(255, 111, 0, 0.08));
}

/* ============================================================
   CORE VALUES SECTION
   ============================================================ */
.core-values {
    padding: 70px 0 60px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.core-values .section-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

.core-values .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.core-values .section-header h2 {
    font-weight: 700;
    font-size: 34px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.core-values .section-header p {
    color: #555;
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.core-values-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.core-values-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.core-values-svg-bg .anim-path {
    animation: dashMove 22s linear infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -500;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 111, 0, 0.02) 0%, transparent 60%);
    border-radius: 20px;
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: #FF6F00;
}

.value-card .icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 111, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.value-card .icon-wrapper i {
    font-size: 30px;
    color: #FF6F00;
    transition: 0.4s;
}

.value-card:hover .icon-wrapper {
    background: #FF6F00;
    transform: scale(1.05) rotate(-4deg);
}

.value-card:hover .icon-wrapper i {
    color: #fff;
}

.value-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* ---------- MD SECTION (MESSAGE FROM MD) ---------- */
.md-section {
    padding: 70px 0;
    background: #2d2d2d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.md-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/slider1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.md-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.92) 0%, rgba(45, 45, 45, 0.75) 100%);
    z-index: 1;
}

.md-section .container {
    position: relative;
    z-index: 2;
}

.md-section .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.md-text .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.2);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.md-text .quote-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: 0.4s;
}

.md-text .quote-wrapper:hover {
    border-color: rgba(255, 111, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.md-text blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #FF6F00;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.md-text blockquote .quote-icon {
    color: #FF6F00;
    opacity: 0.3;
    font-size: 28px;
    margin-right: 8px;
}

.md-text .md-name {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.md-text .md-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.md-text .full-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    color: #FF6F00;
    font-size: 15px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.md-text .full-link:hover {
    color: #fff;
}

.md-image {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.md-image:hover {
    border-color: rgba(255, 111, 0, 0.3);
}

.md-image img {
    height: 205px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 111, 0, 0.3);
    margin-bottom: 14px;
    background: #dce6f0;
    transition: 0.4s;
}

.md-image:hover img {
    border-color: #FF6F00;
    transform: scale(1.02);
}

.md-image .md-name-label {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.md-image .md-title-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

/* ===== TESTIMONIALS: WITH POPUP PDF VIEWER (NO DOWNLOAD/PRINT) ===== */
.testimonials {
    padding: 70px 0 60px;
    background: #FF6F00;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}

.testimonials .section-header .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.testimonials .section-header h2 {
    font-weight: 700;
    font-size: 34px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.testimonials-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.testimonials-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.12;
}

.testimonials-svg-bg .anim-path {
    animation: dashMove 18s linear infinite;
}

.testimonials-scroll-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 28px;
    animation: scrollTestimonials 28s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card .quote-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 4px;
}

.testimonial-card .client-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: #fff;
}

.testimonial-card .client-info .name {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.testimonial-card .client-info .designation {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
}

.testimonial-card .certificate-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
    border: none;
}

.testimonial-card .certificate-link i {
    color: #FFD700;
    font-size: 14px;
}

.testimonial-card .certificate-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFD700;
    transform: translateY(-2px);
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== PDF POPUP / LIGHTBOX (NO DOWNLOAD/PRINT) ===== */
.pdf-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.pdf-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pdf-popup .popup-content {
    background: #fff;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.pdf-popup .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #2d2d2d;
    border-bottom: 2px solid #FF6F00;
    flex-shrink: 0;
}

.pdf-popup .popup-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.pdf-popup .popup-header .popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 8px;
    line-height: 1;
}

.pdf-popup .popup-header .popup-close:hover {
    color: #FF6F00;
    transform: rotate(90deg);
}

.pdf-popup .popup-body {
    flex: 1;
    background: #f5f0eb;
    overflow: hidden;
    position: relative;
}

.pdf-popup .popup-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hide Chrome's PDF toolbar (download/print buttons) */
.pdf-popup .popup-body iframe {
    -webkit-toolbar: none;
}

/* No download overlay - blocks right-click and keyboard shortcuts */
.pdf-popup .no-download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Custom PDF viewer toolbar hide - using CSS to hide PDF.js toolbar if used */
.pdf-popup .popup-body iframe::-webkit-scrollbar {
    width: 8px;
}

.pdf-popup .popup-body iframe::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pdf-popup .popup-body iframe::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

/* Hide print button in PDF viewer via CSS */
.pdf-popup .popup-body iframe {
    -webkit-print-color-adjust: none;
    print-color-adjust: none;
}

/* ---------- CLIENTS CAROUSEL (LOGO SCROLL - IMAGES ONLY) ---------- */
.clients {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.clients .container {
    text-align: center;
}

.clients .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.clients h3 {
    font-weight: 700;
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
}

.logo-carousel {
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

.logo-track {
    display: flex;
    gap: 50px;
    animation: scrollLogos 35s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track .client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 100px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    transition: 0.3s;
    padding: 12px;
}

.logo-track .client-item:hover {
    border-color: #FF6F00;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.08);
    background: #fff;
}

.logo-track .client-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.3s;
    filter: grayscale(100%);
}

.logo-track .client-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.clients .carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.clients .carousel-wrapper::before,
.clients .carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* ---------- FLOATING BUTTONS ---------- */
.floating-btn {
    position: fixed;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
    right: 24px;
    bottom: 100px;
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-backtop {
    left: 24px;
    bottom: 24px;
    background: #2d2d2d;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.btn-backtop.visible {
    opacity: 1;
    visibility: visible;
}

.btn-backtop:hover {
    background: #FF6F00;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.85);
    padding: 55px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" fill="%23ffffff" opacity="0.02"><path d="M0 300 L200 150 L400 250 L600 100 L800 200 L800 600 L0 600 Z"/><rect x="100" y="400" width="80" height="20" rx="6"/><rect x="400" y="450" width="80" height="20" rx="6"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FF6F00;
    border-radius: 2px;
}

.footer p,
.footer a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}

.footer a:hover {
    color: #FF6F00;
}

.footer .footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-address i {
    width: 20px;
    color: #FF6F00;
    margin-top: 3px;
    font-size: 14px;
}

.footer .footer-links {
    list-style: none;
}

.footer .footer-links li {
    margin-bottom: 2px;
}

.footer .footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-links a i {
    font-size: 10px;
    opacity: 0.4;
    transition: 0.3s;
}

.footer .footer-links a:hover {
    transform: translateX(6px);
    color: #FF6F00;
}

.footer .footer-links a:hover i {
    opacity: 1;
    color: #FF6F00;
}

.footer .social-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    border: 1px solid transparent;
}

.footer .social-links a:hover {
    background: #FF6F00;
    color: #fff;
    transform: translateY(-3px);
    border-color: #FF6F00;
    box-shadow: 0 6px 16px rgba(255, 111, 0, 0.25);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Poppins', sans-serif;
}

.footer-bottom .footer-legal {
    display: flex;
    gap: 16px;
}

.footer-bottom .footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom .footer-legal a:hover {
    color: #FF6F00;
}

.footer .footer-brand-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer .footer-brand-icon img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer .address-block {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .address-block .reg-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.footer .address-block .reg-address i {
    color: #FF6F00;
    margin-top: 2px;
    font-size: 12px;
}

/* ============================================================
   PAGE HERO - COMMON FOR ALL PAGES
   ============================================================ */
.page-hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    background-image: url('../images/subheader-bg.jpg');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.92) 0%, rgba(255, 111, 0, 0.35) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

.page-hero .breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.page-hero .breadcrumb .current {
    color: #fff;
}

.page-hero .hero-content h1 {
    font-weight: 800;
    font-size: 44px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.page-hero .hero-content h1 .highlight {
    color: #FF6F00;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro .about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.about-intro .about-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.2), rgba(255, 111, 0, 0.08));
}

.about-intro .about-text .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.about-intro .about-text h2 {
    font-weight: 700;
    font-size: 34px;
    color: #2d2d2d;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.about-intro .about-text .sub-headline {
    font-weight: 500;
    font-size: 18px;
    color: #FF6F00;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.about-intro .about-text p {
    color: #4a5a6e;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.about-intro .about-text .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 20px 0 24px;
}

.about-intro .about-text .features-grid li {
    list-style: none;
    font-weight: 500;
    font-size: 14px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.about-intro .about-text .features-grid li i {
    color: #FF6F00;
    font-size: 16px;
}

/* ============================================================
   MISSION & VISION - ABOUT PAGE
   ============================================================ */
.mission-vision {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/slider2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.92) 0%, rgba(45, 45, 45, 0.7) 100%);
    z-index: 0;
}

.mission-vision-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mission-vision-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.08;
}

.mission-vision-svg-bg .anim-path {
    animation: dashMove 20s linear infinite;
}

.mission-vision .container {
    position: relative;
    z-index: 1;
}

.mission-vision .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mission-vision .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.2);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.mission-vision .section-header h2 {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.mission-vision .section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.mission-vision .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-vision .card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 40px 36px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    text-align: center;
}

.mission-vision .card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 111, 0, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.mission-vision .card .icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 111, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FF6F00;
    margin: 0 auto 18px;
    transition: 0.3s;
}

.mission-vision .card:hover .icon {
    background: rgba(255, 111, 0, 0.35);
    transform: scale(1.05) rotate(-4deg);
}

.mission-vision .card h3 {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.mission-vision .card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   TIMELINE SECTION - ABOUT PAGE
   ============================================================ */
.timeline-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #f5f0eb;
}

.timeline-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.10;
}

.timeline-svg-bg .anim-path {
    animation: dashMove 22s linear infinite;
}

.timeline-section .container {
    position: relative;
    z-index: 1;
}

.timeline-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.timeline-section .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.timeline-section .section-header h2 {
    font-weight: 700;
    font-size: 36px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.timeline-section .section-header p {
    color: #6b7a8f;
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 4px;
    background: linear-gradient(90deg, #FF6F00, #2d2d2d, #FF6F00);
    transform: translateY(-50%);
    border-radius: 2px;
    opacity: 0.3;
}

.timeline-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: 0.4s;
    position: relative;
    margin: 0 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #FF6F00;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.2);
    z-index: 2;
}

.timeline-item:hover::before {
    background: #2d2d2d;
    box-shadow: 0 0 0 6px rgba(255, 111, 0, 0.3);
}

.timeline-item:hover {
    transform: translateY(-8px);
    border-color: #FF6F00;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.timeline-item .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(255, 111, 0, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #FF6F00;
    transition: 0.3s;
}

.timeline-item:hover .icon {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 111, 0, 0.1));
    transform: scale(1.05) rotate(-5deg);
}

.timeline-item .year {
    font-weight: 800;
    font-size: 28px;
    color: #2d2d2d;
    display: block;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.timeline-item .event {
    font-size: 14px;
    color: #4a5a6e;
    font-weight: 500;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.timeline-item .number {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 111, 0, 0.06);
    line-height: 1;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.timeline-item .step-label {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   SERVICES PAGE SPECIFIC
   ============================================================ */
.services-intro {
    padding: 70px 0 50px;
    background: #f5f0eb;
    text-align: center;
}

.services-intro .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.services-intro h2 {
    font-weight: 700;
    font-size: 38px;
    color: #2d2d2d;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.services-intro p {
    color: #6b7a8f;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section {
    padding: 40px 0 80px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.services-grid-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.services-grid-section .service-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.services-grid-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border-color: #FF6F00;
    background: #ffffff;
}

.services-grid-section .service-card .service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.services-grid-section .service-card .service-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.3));
    transition: 0.4s;
}

.services-grid-section .service-card:hover .service-image .image-overlay {
    background: linear-gradient(to bottom, rgba(255, 111, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.services-grid-section .service-card .service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section .service-card .service-body {
    padding: 24px 28px 28px;
}

.services-grid-section .service-card .icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.12), rgba(255, 111, 0, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 24px;
    color: #FF6F00;
    transition: 0.4s;
}

.services-grid-section .service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 111, 0, 0.1));
    transform: scale(1.05) rotate(-3deg);
}

.services-grid-section .service-card h3 {
    font-weight: 700;
    font-size: 19px;
    color: #2d2d2d;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section .service-card p {
    color: #4a5a6e;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section .service-card .service-features {
    list-style: none;
    margin-bottom: 16px;
}

.services-grid-section .service-card .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4a5a6e;
    padding: 3px 0;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section .service-card .service-features li i {
    color: #FF6F00;
    font-size: 14px;
    width: 18px;
}

.services-grid-section .service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #FF6F00;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.services-grid-section .service-card .learn-more:hover {
    gap: 12px;
    color: #2d2d2d;
}

.process-section {
    padding: 70px 0;
    background: #ffffff;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-section .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.process-section .section-header h2 {
    font-weight: 700;
    font-size: 36px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.process-section .section-header p {
    color: #6b7a8f;
    max-width: 600px;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: 0.4s;
    position: relative;
}

.process-item:hover {
    transform: translateY(-6px);
    border-color: #FF6F00;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.process-item .step-number {
    font-weight: 800;
    font-size: 14px;
    color: #FF6F00;
    background: rgba(255, 111, 0, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.process-item .step-icon {
    font-size: 32px;
    color: #FF6F00;
    margin-bottom: 12px;
    display: block;
}

.process-item h4 {
    font-weight: 700;
    font-size: 17px;
    color: #2d2d2d;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.process-item p {
    font-size: 13px;
    color: #6b7a8f;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.why-section {
    padding: 70px 0;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.why-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.why-section .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.why-section .section-header h2 {
    font-weight: 700;
    font-size: 36px;
    color: #2d2d2d;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    align-items: flex-start;
}

.why-item:hover {
    border-color: #FF6F00;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    background: #ffffff;
}

.why-item .why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 111, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6F00;
}

.why-item h4 {
    font-weight: 700;
    font-size: 17px;
    color: #2d2d2d;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.why-item p {
    font-size: 14px;
    color: #6b7a8f;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
    font-family: 'Poppins', sans-serif;
}

.cta-section .cta-btn {
    background: #FF6F00;
    color: #fff;
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 111, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.cta-section .cta-btn:hover {
    background: #fff;
    color: #2d2d2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   PROJECTS PAGE SPECIFIC
   ============================================================ */
.filter-section {
    padding: 40px 0 30px;
    background: #f5f0eb;
}

.filter-section .filter-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-section .filter-btn {
    padding: 8px 24px;
    border: 2px solid rgba(255, 111, 0, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    color: #4a5a6e;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(4px);
}

.filter-section .filter-btn:hover,
.filter-section .filter-btn.active {
    background: #FF6F00;
    border-color: #FF6F00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.25);
}

.projects-grid-section {
    padding: 40px 0 80px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.projects-grid-section .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.projects-grid-section .project-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.projects-grid-section .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border-color: #FF6F00;
    background: #ffffff;
}

.projects-grid-section .project-card .card-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.projects-grid-section .project-card .card-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0.1), rgba(45, 45, 45, 0.4));
    transition: 0.4s;
}

.projects-grid-section .project-card:hover .card-image .image-overlay {
    background: linear-gradient(to bottom, rgba(255, 111, 0, 0.15), rgba(45, 45, 45, 0.5));
}

.projects-grid-section .project-card .card-image .status-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-image .project-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-grid-section .project-card .card-body {
    padding: 24px 26px 28px;
}

.projects-grid-section .project-card .card-body .project-tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body h3 {
    font-weight: 700;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body .client {
    font-size: 13px;
    color: #6b7a8f;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body .client i {
    color: #FF6F00;
    margin-right: 4px;
    width: 16px;
}

.projects-grid-section .project-card .card-body .location {
    font-size: 13px;
    color: #6b7a8f;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body .location i {
    color: #FF6F00;
    margin-right: 4px;
    width: 16px;
}

.projects-grid-section .project-card .card-body .divider {
    width: 40px;
    height: 2px;
    background: #FF6F00;
    margin: 12px 0 14px;
    border-radius: 2px;
}

.projects-grid-section .project-card .card-body .project-description {
    font-size: 14px;
    color: #4a5a6e;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body .project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: #FF6F00;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.projects-grid-section .project-card .card-body .project-link:hover {
    gap: 12px;
    color: #2d2d2d;
}

/* ============================================================
   PROJECT DETAILS PAGE SPECIFIC
   ============================================================ */
.project-overview {
    padding: 70px 0 50px;
    background: #ffffff;
}

.project-overview .overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.project-overview .main-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.project-overview .main-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.project-overview .main-image .status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.project-overview .info-sidebar {
    background: #f5f0eb;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eef2f6;
}

.project-overview .info-sidebar h4 {
    font-weight: 700;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
    font-family: 'Poppins', sans-serif;
}

.project-overview .info-sidebar h4 i {
    color: #FF6F00;
    margin-right: 8px;
}

.project-overview .info-sidebar .info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f6;
}

.project-overview .info-sidebar .info-item:last-child {
    border-bottom: none;
}

.project-overview .info-sidebar .info-item .label {
    font-weight: 500;
    color: #6b7a8f;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.project-overview .info-sidebar .info-item .value {
    font-weight: 600;
    color: #2d2d2d;
    font-size: 14px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

.project-overview .info-sidebar .info-item .value i {
    color: #FF6F00;
    margin-right: 4px;
}

.project-description-section {
    padding: 0 0 60px;
    background: #ffffff;
}

.project-description-section .description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.project-description-section .content h2 {
    font-weight: 700;
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .content p {
    color: #4a5a6e;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .content .highlight-box {
    background: #f5f0eb;
    border-left: 4px solid #FF6F00;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 20px 0;
}

.project-description-section .content .highlight-box p {
    margin-bottom: 0;
    font-weight: 500;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .content .highlight-box i {
    color: #FF6F00;
    margin-right: 8px;
}

.project-description-section .content h3 {
    margin-top: 28px;
    font-size: 22px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .content ul {
    list-style: none;
    margin-top: 12px;
}

.project-description-section .content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    color: #4a5a6e;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .content ul li i {
    color: #FF6F00;
}

.project-description-section .sidebar-right h4 {
    font-weight: 700;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .sidebar-right h4 i {
    color: #FF6F00;
    margin-right: 8px;
}

.project-description-section .sidebar-right .key-point {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f6;
    align-items: flex-start;
}

.project-description-section .sidebar-right .key-point:last-child {
    border-bottom: none;
}

.project-description-section .sidebar-right .key-point .icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(255, 111, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6F00;
    font-size: 16px;
}

.project-description-section .sidebar-right .key-point .text h5 {
    font-weight: 600;
    font-size: 15px;
    color: #2d2d2d;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.project-description-section .sidebar-right .key-point .text p {
    font-size: 13px;
    color: #6b7a8f;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.gallery-section {
    padding: 60px 0;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.gallery-section .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .section-header h2 {
    font-weight: 700;
    font-size: 32px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gallery-grid .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
    cursor: pointer;
}

.gallery-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid .gallery-item .gallery-overlay i {
    color: #fff;
    font-size: 32px;
}

.related-projects {
    padding: 60px 0 80px;
    background: #ffffff;
}

.related-projects .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-projects .section-header .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.related-projects .section-header h2 {
    font-weight: 700;
    font-size: 32px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: #f5f0eb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: 0.4s;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: #FF6F00;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.related-card .related-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.related-card .related-image .status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.related-card .related-body {
    padding: 18px 20px 22px;
}

.related-card .related-body h4 {
    font-weight: 700;
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.related-card .related-body p {
    font-size: 13px;
    color: #6b7a8f;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.related-card .related-body p i {
    color: #FF6F00;
    margin-right: 4px;
}

.related-card .related-body .related-link {
    font-weight: 600;
    font-size: 13px;
    color: #FF6F00;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.related-card .related-body .related-link:hover {
    gap: 12px;
    color: #2d2d2d;
}

/* ============================================================
   CAREER PAGE SPECIFIC
   ============================================================ */
.career-intro {
    padding: 70px 0 50px;
    background: #f5f0eb;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.career-intro .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.15);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.career-intro h2 {
    font-weight: 700;
    font-size: 38px;
    color: #2d2d2d;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.career-intro p {
    color: #6b7a8f;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.career-form-section {
    padding: 40px 0 80px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.career-form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.career-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.career-form-wrapper .form-header .icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.12), rgba(255, 111, 0, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 30px;
    color: #FF6F00;
}

.career-form-wrapper .form-header h3 {
    font-weight: 700;
    font-size: 26px;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .form-header p {
    color: #6b7a8f;
    font-size: 14px;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .form-group {
    margin-bottom: 18px;
}

.career-form-wrapper .form-group label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .form-group label .required {
    color: #FF6F00;
}

.career-form-wrapper .form-group input,
.career-form-wrapper .form-group textarea,
.career-form-wrapper .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    background: #f8fafc;
    color: #1a1a2e;
}

.career-form-wrapper .form-group input:focus,
.career-form-wrapper .form-group textarea:focus,
.career-form-wrapper .form-group select:focus {
    outline: none;
    border-color: #FF6F00;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.08);
    background: #ffffff;
}

.career-form-wrapper .form-group input::placeholder,
.career-form-wrapper .form-group textarea::placeholder {
    color: #aab3c5;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.career-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.career-form-wrapper .file-upload-wrapper {
    position: relative;
    width: 100%;
}

.career-form-wrapper .file-upload-wrapper input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.career-form-wrapper .file-upload-wrapper .file-upload-box {
    width: 100%;
    padding: 18px 20px;
    border: 2px dashed #eef2f6;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.career-form-wrapper .file-upload-wrapper .file-upload-box i {
    font-size: 28px;
    color: #FF6F00;
    opacity: 0.5;
}

.career-form-wrapper .file-upload-wrapper .file-upload-box span {
    font-size: 13px;
    color: #6b7a8f;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .file-upload-wrapper .file-upload-box .file-types {
    font-size: 11px;
    color: #aab3c5;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .file-upload-wrapper:hover .file-upload-box {
    border-color: #FF6F00;
    background: rgba(255, 111, 0, 0.03);
}

.career-form-wrapper .file-upload-wrapper .file-name {
    display: none;
    font-size: 13px;
    color: #FF6F00;
    margin-top: 6px;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .file-upload-wrapper .file-name.show {
    display: block;
}

.career-form-wrapper .submit-btn {
    background: linear-gradient(135deg, #FF6F00, #f5a623);
    color: #fff;
    padding: 14px 44px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.25);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    justify-content: center;
}

.career-form-wrapper .submit-btn:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a2e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.career-form-wrapper .submit-btn i {
    font-size: 16px;
    transition: 0.3s;
}

.career-form-wrapper .submit-btn:hover i {
    transform: translateX(4px);
}

.career-form-wrapper .form-note {
    text-align: center;
    font-size: 13px;
    color: #6b7a8f;
    margin-top: 16px;
    font-family: 'Poppins', sans-serif;
}

.career-form-wrapper .form-note i {
    color: #FF6F00;
    margin-right: 6px;
}

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-info-section {
    padding: 80px 0 60px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: #FF6F00;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.contact-info-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.12), rgba(255, 111, 0, 0.04));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: #FF6F00;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .icon {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.2), rgba(255, 111, 0, 0.08));
    transform: scale(1.05) rotate(-5deg);
}

.contact-info-card h4 {
    font-weight: 700;
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.contact-info-card p {
    color: #4a5a6e;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.contact-info-card a {
    color: #4a5a6e;
    transition: 0.3s;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.contact-info-card a:hover {
    color: #FF6F00;
}

.contact-form-section {
    padding: 60px 0 80px;
    background: #f5f0eb;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form {
    background: #ffffff;
    padding: 50px 45px;
    position: relative;
}

.contact-form .tag {
    display: inline-block;
    background: rgba(255, 111, 0, 0.1);
    color: #FF6F00;
    font-weight: 600;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.contact-form h2 {
    font-weight: 700;
    font-size: 30px;
    color: #2d2d2d;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-description {
    color: #6b7a8f;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form .form-group label .required {
    color: #FF6F00;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eef2f6;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: 0.3s;
    background: #f8fafc;
    color: #1a1a2e;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: #FF6F00;
    box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.08);
    background: #ffffff;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, #FF6F00, #f5a623);
    color: #fff;
    padding: 14px 44px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    box-shadow: 0 4px 16px rgba(255, 111, 0, 0.25);
    font-family: 'Poppins', sans-serif;
}

.contact-form .submit-btn:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a2e);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-form .submit-btn i {
    font-size: 16px;
    transition: 0.3s;
}

.contact-form .submit-btn:hover i {
    transform: translateX(4px);
}

.map-card {
    background: #2d2d2d;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.map-card .map-header {
    padding: 30px 35px 20px;
    position: relative;
    z-index: 1;
}

.map-card .map-header h4 {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.map-card .map-header h4 i {
    color: #FF6F00;
    margin-right: 10px;
}

.map-card .map-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
}

.map-card .map-container {
    flex: 1;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 20px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.map-card .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-card .map-footer {
    padding: 16px 35px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.map-card .map-footer span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
}

.map-card .map-footer span i {
    color: #FF6F00;
    margin-right: 6px;
}

.map-card .map-footer a {
    font-size: 13px;
    color: #FF6F00;
    font-weight: 600;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.map-card .map-footer a:hover {
    color: #fff;
    gap: 12px;
}

.map-card .map-footer a i {
    transition: 0.3s;
}

.map-card .map-footer a:hover i {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE - ALL PAGES
   ============================================================ */
@media (max-width: 1100px) {
    .slide .content h1 {
        font-size: 44px;
    }
}

@media (max-width: 992px) {
    .slide .content h1 {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .md-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .md-section .container {
        text-align: left;
    }

    .hero-slider {
        height: 80vh;
        min-height: 460px;
    }

    .logo-track .client-item {
        min-width: 120px;
        height: 80px;
    }

    .logo-track .client-item img {
        max-height: 50px;
    }

    .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-section .about-image {
        min-height: 300px;
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .pdf-popup {
        padding: 20px;
    }

    .pdf-popup .popup-content {
        width: 95%;
        height: 85vh;
    }

    .about-intro .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-intro .about-text .features-grid {
        justify-content: center;
    }
    .mission-vision .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mission-vision {
        background-attachment: scroll;
    }
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .timeline::before {
        display: none;
    }
    .timeline-item::before {
        display: none;
    }
    .page-hero .hero-content h1 {
        font-size: 34px;
        text-align: center;
    }
    .page-hero .breadcrumb {
        text-align: center;
    }
    .about-intro .about-image {
        min-height: 300px;
    }
    .services-grid-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .projects-grid-section .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .project-overview .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .project-overview .main-image {
        min-height: 300px;
    }
    .project-description-section .description-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 20px;
    }
    .contact-form {
        padding: 35px 30px;
    }
    .map-card .map-container {
        min-height: 250px;
        margin: 0 20px 15px;
    }
    .map-card .map-header {
        padding: 25px 30px 15px;
    }
    .map-card .map-footer {
        padding: 15px 30px 20px;
    }
    .career-form-wrapper {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .top-bar .contact-info {
        gap: 4px 12px;
    }

    .top-bar .contact-info span {
        font-size: 12px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .slide .content h1 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .slide .content .btn-group {
        gap: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-slider {
        height: 75vh;
        min-height: 420px;
    }

    .slider-arrow {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .footer-legal {
        justify-content: center;
    }

    .slide .content {
        text-align: left;
    }

    .btn-whatsapp {
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
    }

    .btn-backtop {
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 16px;
    }

    .logo-track {
        gap: 30px;
    }

    .logo-track .client-item {
        min-width: 100px;
        height: 70px;
        padding: 8px;
    }

    .logo-track .client-item img {
        max-height: 40px;
    }

    .clients .carousel-wrapper::before,
    .clients .carousel-wrapper::after {
        width: 40px;
    }

    .md-text .quote-wrapper {
        padding: 20px;
    }

    .md-text blockquote {
        font-size: 17px;
        padding-left: 14px;
    }

    .mobile-menu {
        width: 280px;
        left: -290px;
    }

    .about-section .about-image {
        min-height: 240px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px 18px;
    }

    .pdf-popup {
        padding: 12px;
    }

    .pdf-popup .popup-content {
        width: 100%;
        height: 90vh;
        border-radius: 12px;
    }

    .pdf-popup .popup-header {
        padding: 12px 16px;
    }

    .pdf-popup .popup-header h3 {
        font-size: 14px;
    }

    .page-hero {
        padding: 50px 0 30px;
        min-height: 180px;
    }
    .page-hero .hero-content h1 {
        font-size: 28px;
        text-align: center;
    }
    .page-hero .breadcrumb {
        text-align: center;
        font-size: 12px;
    }
    .about-intro {
        padding: 50px 0;
    }
    .about-intro .about-text .features-grid {
        grid-template-columns: 1fr;
    }
    .about-intro .about-image {
        min-height: 240px;
    }
    .mission-vision {
        padding: 50px 0;
        background-attachment: scroll;
    }
    .timeline-section {
        padding: 50px 0;
    }
    .timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .timeline-item {
        padding: 24px 20px 20px;
        margin: 0;
    }
    .timeline-item .year {
        font-size: 24px;
    }
    .timeline-item .number {
        font-size: 36px;
    }
    .services-intro {
        padding: 50px 0 30px;
    }
    .services-intro h2 {
        font-size: 30px;
    }
    .services-grid-section {
        padding: 30px 0 50px;
    }
    .services-grid-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-grid-section .service-card .service-image {
        height: 160px;
    }
    .services-grid-section .service-card .service-body {
        padding: 18px 20px 22px;
    }
    .process-section {
        padding: 50px 0;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .process-item {
        padding: 20px 16px;
    }
    .why-section {
        padding: 50px 0;
    }
    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        padding: 50px 0;
    }
    .cta-section h2 {
        font-size: 28px;
    }
    .filter-section {
        padding: 30px 0 20px;
    }
    .filter-section .filter-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    .projects-grid-section {
        padding: 30px 0 50px;
    }
    .projects-grid-section .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .projects-grid-section .project-card .card-image {
        height: 200px;
    }
    .project-overview {
        padding: 50px 0 30px;
    }
    .project-overview .main-image {
        min-height: 240px;
    }
    .project-description-section {
        padding: 0 0 40px;
    }
    .project-description-section .content h2 {
        font-size: 24px;
    }
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .gallery-grid .gallery-item {
        height: 160px;
    }
    .related-projects {
        padding: 40px 0 50px;
    }
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .career-intro {
        padding: 50px 0 30px;
    }
    .career-intro h2 {
        font-size: 30px;
    }
    .career-form-section {
        padding: 30px 0 50px;
    }
    .career-form-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .career-form-wrapper .form-header h3 {
        font-size: 22px;
    }
    .career-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-info-section {
        padding: 50px 0 30px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .contact-form-section {
        padding: 40px 0 50px;
    }
    .contact-form {
        padding: 25px 20px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form h2 {
        font-size: 26px;
    }
    .map-card .map-container {
        min-height: 200px;
        margin: 0 15px 10px;
    }
    .map-card .map-header {
        padding: 20px 20px 12px;
    }
    .map-card .map-header h4 {
        font-size: 18px;
    }
    .map-card .map-footer {
        padding: 12px 20px 18px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .slide .content h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .slide .content .btn-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .slide .content .btn-group a {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 380px;
    }

    .top-bar .social-icons a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .mobile-menu {
        width: 260px;
        left: -270px;
        padding: 30px 20px;
    }

    .testimonial-card {
        flex: 0 0 260px;
    }

    .logo-track .client-item {
        min-width: 80px;
        height: 60px;
        padding: 6px;
    }

    .logo-track .client-item img {
        max-height: 32px;
    }

    .logo-track {
        gap: 20px;
    }

    .page-hero .hero-content h1 {
        font-size: 24px;
    }
    .about-intro .about-image {
        min-height: 200px;
    }
    .timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .timeline-item .number {
        font-size: 32px;
    }
    .services-intro h2 {
        font-size: 26px;
    }
    .services-intro p {
        font-size: 14px;
    }
    .services-grid-section .service-card .service-image {
        height: 140px;
    }
    .services-grid-section .service-card .service-body {
        padding: 16px 16px 20px;
    }
    .services-grid-section .service-card .service-number {
        font-size: 32px;
        top: 10px;
        right: 14px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .process-item .step-icon {
        font-size: 28px;
    }
    .why-item {
        padding: 16px;
    }
    .cta-section h2 {
        font-size: 24px;
    }
    .cta-section .cta-btn {
        width: 100%;
        justify-content: center;
    }
    .filter-section .filter-btn {
        padding: 4px 14px;
        font-size: 11px;
    }
    .projects-grid-section .project-card .card-body {
        padding: 18px 20px 22px;
    }
    .projects-grid-section .project-card .card-body h3 {
        font-size: 16px;
    }
    .project-overview .info-sidebar {
        padding: 20px;
    }
    .project-overview .info-sidebar .info-item {
        flex-direction: column;
        gap: 2px;
    }
    .project-overview .info-sidebar .info-item .value {
        text-align: left;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .gallery-grid .gallery-item {
        height: 180px;
    }
    .gallery-section .section-header h2 {
        font-size: 26px;
    }
    .related-projects .section-header h2 {
        font-size: 26px;
    }
    .career-intro h2 {
        font-size: 26px;
    }
    .career-intro p {
        font-size: 14px;
    }
    .career-form-wrapper {
        padding: 20px 16px;
    }
    .career-form-wrapper .form-header .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .career-form-wrapper .form-header h3 {
        font-size: 20px;
    }
    .career-form-wrapper .submit-btn {
        font-size: 14px;
        padding: 12px 28px;
    }
    .contact-info-card {
        padding: 24px 20px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form h2 {
        font-size: 22px;
    }
    .contact-form .submit-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================================
   LIGHTBOX / GALLERY POPUP
   ============================================================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 40px;
    animation: lightboxFadeIn 0.4s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: lightboxZoomIn 0.4s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-close:hover {
    color: #FF6F00;
    transform: rotate(90deg);
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 100000;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    cursor: pointer;
    z-index: 100000;
    transition: 0.3s;
    background: none;
    border: none;
    padding: 20px;
    line-height: 1;
}

.lightbox-nav:hover {
    color: #FF6F00;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 20px;
    }
    .lightbox-content {
        max-width: 100%;
        max-height: 85vh;
    }
    .lightbox-close {
        top: 10px;
        right: 16px;
        font-size: 30px;
    }
    .lightbox-nav {
        font-size: 30px;
        padding: 10px;
    }
    .lightbox-nav.prev {
        left: 5px;
    }
    .lightbox-nav.next {
        right: 5px;
    }
    .lightbox-counter {
        bottom: 20px;
        font-size: 12px;
        padding: 6px 16px;
    }
}
/* ============================================================
   DISABLE TEXT SELECTION & COPYING
   ============================================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in form fields (important for usability) */
input, textarea, select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Disable image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Prevent selection of text in specific elements */
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in specific elements (like code blocks) */
.allow-select {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}