:root {
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: rgba(17, 24, 39, 0.14);
    --panel: #ffffff;
    --shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
    --gold: #d4af37; /* Premium Gold Color */
}

* {
    box-sizing: border-box;
}

/* ===================================
   1. SCROLL FIX & STRICT PADDING
=================================== */
html, body {
    width: 100%;
}

body {
    margin: 0;
    /* Desktop Fixed Header ki total height (Topbar + Header) */
    padding-top: 115px; 
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(1150px, calc(100% - 32px));
    margin: 0 auto;
}

/* ===================================
   2. TOPBAR (FIXED TO TOP)
=================================== */
.topbar {
    background: #05101a;
    color: #ffffff;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px; /* Fixed Height */
    z-index: 99999;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.topbar-left, .topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.topbar-item { font-weight: 700; }
.topbar-link { color: rgba(255, 255, 255, 0.92); transition: color 140ms ease; }
.topbar-link:hover { color: var(--gold); }
.topbar-sep { opacity: 0.65; }

/* ===================================
   3. SITE HEADER (STRICTLY FIXED)
=================================== */


.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* LOGO & BRAND */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo img {
    height: 45px;
    width: auto;
    display: block;
}
.brand {
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: #05101a;
}
.brand span { color: var(--gold); }

/* MENU AREA */
.header-right {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #05101a;
    cursor: pointer;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
}

/* NAV LINKS (NO BACKGROUND GLOW) */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    background: transparent !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.is-active { color: var(--gold); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

/* DROPDOWN MENU */
.dropdown {
    position: absolute;
    top: 75px;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--gold);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}
.nav-item--dropdown:hover > .dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}
.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-weight: 600;
    transition: all 0.2s;
}
.dropdown-link:hover {
    background: #f8fafc;
    color: var(--gold);
    padding-left: 25px;
}

/* ===================================
   4. HERO SECTION (STRICT TOP-LEFT & FULL WIDTH)
=================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 115px); /* Desktop height fix */
    min-height: 450px;
    overflow: hidden;
    background: #e2e8f0; /* Removed black background to stop black lines */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY (NO GLOW, NO FLEXBOX) */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: transparent !important; /* NO GLOSSY GLOW */
    z-index: 10;
    pointer-events: none; /* Allows clicking slider arrows */
}

/* 🔴 TEXT STRICTLY TOP-LEFT 🔴 */
.hero-text {
    position: absolute;
    top: 15%;  /* Forces text to stay at the Top */
    left: 5%;  /* Forces text to stay at the Left */
    max-width: 700px;
    text-align: left;
    pointer-events: auto;
}

.hero-title {
    font-size: 42px; /* Smaller, cleaner size */
    font-weight: 800;
    color: #000000; /* Pure Black */
    line-height: 1.1;
    margin: 0 0 10px 0;
    opacity: 0;
    transform: translateX(-40px); /* Left slide animation */
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    margin: 0;
    opacity: 0;
    transform: translateX(-30px);
}

/* LEFT-TO-RIGHT ANIMATION */
.hero-slide.active .hero-title { animation: slideInLeft 0.8s forwards; }
.hero-slide.active .hero-subtitle { animation: slideInLeft 0.8s 0.2s forwards; }

@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* SLIDER ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20; /* Keep above text overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-arrow:hover { background: #000; transform: translateY(-50%) scale(1.1); }

/* ===================================
   5. MOBILE RESPONSIVE (GAP FIXES)
=================================== */
@media (max-width: 991px) {
    /* Exact height match to stop Black Lines */
    body { padding-top: 70px; } 
    
    .topbar { display: none; } /* Hide topbar to save space */
    .site-header { top: 0; height: 70px; } /* Header moves to absolute top */
    .header-inner { height: 70px; }
    
    .nav-toggle { display: block; }
    .nav-list { 
        flex-direction: column; 
        gap: 0;
        background: #fff; 
        padding: 10px 0;
        border-top: 1px solid #e2e8f0;
    }
    .nav-item { height: auto; width: 100%; border-bottom: 1px solid #f1f5f9; }
    .nav-link { padding: 12px 20px; width: 100%; display: block; }
    .nav-link::after { display: none; }
    
    .dropdown { position: static; box-shadow: none; border: none; padding-left: 15px; display: none; opacity: 1; visibility: visible; transform: none; }
    .nav-item--dropdown:hover > .dropdown { display: block; }
    .dropdown-link { padding-left: 20px; }
}

@media (max-width: 768px) {
    /* MOBILE HERO ALIGNMENT */
    .hero-section {
        height: 55vh; /* Prevents stretching */
        min-height: 350px;
    }
    
    .hero-text {
        top: 10%; /* Forces text even higher on mobile */
        left: 5%;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 26px !important; /* Strict mobile size */
        margin-bottom: 8px;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
    }

    /* MOBILE HEADER LOGO SQUISH FIX */
    .nav-logo img { height: 35px !important; }
    .brand { font-size: 14px; line-height: 1.2; }
    
    /* SMALL SLIDER ARROWS */
    .slider-arrow { width: 35px; height: 35px; font-size: 18px; }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
}

/* ===================================
   6. REST OF THE CSS (ABOUT, FOOTER)
=================================== */
/* (Your existing About, Footer, Page sections below - unchanged to prevent other bugs) */
.page { padding: 24px 0 44px; }
.section, .card { border: 1px solid var(--border); background: var(--panel); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); margin: 16px 0; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* About Section Animation */
.about-main-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; background: linear-gradient(90deg,#2563eb,#e11d48,#00b09b); background-size: 100% auto; -webkit-background-clip: text; color: transparent; animation: gradientMove 5s linear infinite; }
@keyframes gradientMove { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.about-section { padding: 40px 0; background: #f8f9fb; overflow: hidden; }
.about-left, .about-right { opacity: 0; transform: translateY(60px); transition: all 1s ease; }
.about-section.show .about-left, .about-section.show .about-right { opacity: 1; transform: translateY(0); }
.about-img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; transition: transform 1.2s ease; }
.about-section.show .about-img { transform: scale(1.05); }
.about-btn { display: inline-block; padding: 10px 24px; background: linear-gradient(90deg,#111,#e11d48); color: #fff; border-radius: 30px; font-size: 14px; transition: all 0.4s ease; }
.about-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(225,29,72,0.4); }
.about-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 14px; opacity: 0; transition: opacity 1s ease; }
.about-section.show .about-text { opacity: 1; }

/* Footer */
.site-footer { position: relative; background: #ffffff; color: #1e293b; overflow: hidden; padding-top: 60px; }
.footer-inner { position: relative; z-index: 2; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-title { font-size: 18px; font-weight: 800; margin-bottom: 16px; color: #0b2a4a; }
.footer-text { color: #475569; line-height: 1.8; margin-bottom: 10px; font-size: 15px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-link { color: #475569; text-decoration: none; transition: 0.3s ease; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #e2e8f0; margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: 14px; color: #64748b; }
.developer a { color: var(--gold); font-weight: 600; }

@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }
/* ===============================
   SERVICES SECTION
================================ */

.services-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.services-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: 1px;
}





/* HOME PAGE SERVICES GRID - FORCE 4 COLUMNS */
.services-section .services-grid, 
.land-services .services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

@media (max-width: 992px) {
    .services-section .services-grid, 
    .land-services .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 400px) {
    .services-section .services-grid, 
    .land-services .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Adjust card size for 4-column layout */
.services-section .service-card,
.land-services .service-card {
    width: 100% !important;
    max-width: 100% !important;
}

.services-section .service-img img,
.land-services .service-img img {
    height: 100px !important;
}

.services-section .service-content,
.land-services .service-content {
    padding: 2px !important;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
justify-items:center;
}

@media(max-width:992px){
.services-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.services-grid{
grid-template-columns:1fr;
}
}

/* Card Design */

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Lift */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Image */

.service-img {
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

/* Image Zoom Effect */
.service-card:hover img {
    transform: scale(1.1);
}

/* Content */

.service-content {
    padding: 25px;
}

.service-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Colorful Titles */

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.color1 {
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    color: transparent;
}

.color2 {
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    color: transparent;
}

.color3 {
    background: linear-gradient(90deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    color: transparent;
}

/* ===============================
   PROFESSIONAL HERO SECTION
================================ */
/* ===============================
   WHY CHOOSE US SECTION
================================ */

.why-section {
    padding: 90px 0;
    background: #f4f7fb;
    text-align: center;
}

.why-heading {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.why-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(60px);
}

.why-card.show {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 42px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.3);
}

/* Colorful Titles */

.why-title {
    font-size: 16px;
    font-weight: 700;
}

/* Gradient Text Colors */

.c1 { background: linear-gradient(90deg,#ff512f,#dd2476); -webkit-background-clip:text; color:transparent; }
.c2 { background: linear-gradient(90deg,#00c6ff,#0072ff); -webkit-background-clip:text; color:transparent; }
.c3 { background: linear-gradient(90deg,#00b09b,#96c93d); -webkit-background-clip:text; color:transparent; }
.c4 { background: linear-gradient(90deg,#f7971e,#ffd200); -webkit-background-clip:text; color:transparent; }
.c5 { background: linear-gradient(90deg,#8e2de2,#4a00e0); -webkit-background-clip:text; color:transparent; }
.c6 { background: linear-gradient(90deg,#ff416c,#ff4b2b); -webkit-background-clip:text; color:transparent; }
.c7 { background: linear-gradient(90deg,#11998e,#38ef7d); -webkit-background-clip:text; color:transparent; }
.c8 { background: linear-gradient(90deg,#fc4a1a,#f7b733); -webkit-background-clip:text; color:transparent; }

/* Responsive */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   PREMIUM ABOUT IMAGE EFFECT
================================ */

/* Wrapper important */
.about-right {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

/* Image base */
.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.22,.61,.36,1),
                filter 1s ease;
    transform: scale(1);
}

/* Scroll reveal light zoom */
.about-section.show .about-img {
    transform: scale(1.06);
}

/* Hover premium zoom */
.about-right:hover .about-img {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.05);
}

/* Optional soft overlay glow */
.about-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.about-right:hover::after {
    opacity: 1;
}
/* ===============================
   PROFESSIONAL CTA SECTION
================================ */

.pro-cta {
    margin: 80px 0;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.pro-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.pro-cta-inner {
    display: flex;
    align-items: center;
    background: linear-gradient(120deg,#dbeafe,#bfdbfe,#dbeafe);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* LEFT GREEN CONE STYLE */
.pro-cta-left {
    background: linear-gradient(135deg,#84cc16,#4d7c0f);
    color: #fff;
    padding: 80px 60px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    min-width: 320px;
}

.pro-cta-left h4 {
    font-size: 20px;
    letter-spacing: 2px;
    opacity: .9;
}

.pro-cta-left h2 {
    font-size: 44px;
    font-weight: 800;
}

/* RIGHT CONTENT */
.pro-cta-right {
    padding: 70px;
    flex: 1;
}

/* Gradient Heading */
.pro-cta-heading {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;

    background: linear-gradient(90deg,#2563eb,#e11d48,#16a34a);
    -webkit-background-clip: text;
    color: transparent;
}

/* BUTTONS */
.pro-cta-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.pro-btn {
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .4s ease;
    display: inline-block;
}

/* Call */
.pro-call {
    background: linear-gradient(90deg,#2563eb,#1d4ed8);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* Email */
.pro-email {
    background: linear-gradient(90deg,#e11d48,#be123c);
    color: #fff;
    box-shadow: 0 10px 25px rgba(225,29,72,0.3);
}

.pro-btn:hover {
    transform: scale(1.08);
}

/* Section hover zoom */
.pro-cta-inner:hover {
    transform: scale(1.01);
    transition: transform .5s ease;
}

/* Responsive */
@media (max-width: 768px) {

    .pro-cta-inner {
        flex-direction: column;
    }

    .pro-cta-left {
        clip-path: none;
        text-align: center;
        width: 100%;
        padding: 70px;
    }

    .pro-cta-right {
        text-align: center;
        padding: 50px;
    }
}

/* ===============================
   REVIEW SECTION
================================ */

.review-section {
    padding: 110px 0;
    background: #f4f7fb;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.review-section.show {
    opacity: 1;
    transform: translateY(0);
}

.review-header {
    text-align: center;
    margin-bottom: 60px;
}

.review-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg,#2563eb,#9333ea);
    -webkit-background-clip: text;
    color: transparent;
}

.review-subtitle {
    color: #555;
    font-size: 16px;
}

/* SLIDER */

.review-wrapper {
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD */

.review-card {
    min-width: 340px;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* TOP */

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-user h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.review-user span {
    font-size: 13px;
    color: #777;
}

.review-rating {
    text-align: right;
}

.review-rating strong {
    font-size: 16px;
    color: #111;
}

.stars {
    font-size: 14px;
    letter-spacing: 2px;
    color: #f59e0b;
}

/* TEXT */

.review-text {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}
/* ===============================
   PREMIUM FLOATING BUTTONS
================================ */

.floating-contact{
position:fixed;
right:-80px;
bottom:50px;
display:flex;
flex-direction:column;
gap:14px;
z-index:9999;
opacity:0;
transition:all .5s ease;
}

/* show animation */
.floating-contact.show{
right:20px;
opacity:1;
}

/* base button */
.float-btn{
width:52px;
height:52px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
transition:.3s;
position:relative;
text-decoration:none;
}

/* icon fix */
.float-btn img{
width:26px;
height:26px;
object-fit:contain;
display:block;
}

/* glow effect */
.float-btn::before{
content:"";
position:absolute;
width:100%;
height:100%;
border-radius:50%;
background:inherit;
filter:blur(10px);
opacity:.6;
z-index:-1;
}

/* hover */
.float-btn:hover{
transform:scale(1.1);
}

/* colors */
.whatsapp{
background:#25D366;
}

.call{
background:#2563eb;
}



/* ===============================
   CTA SECTION
================================ */

.cta-modern{
padding:120px 0;
background:#f3f3f3;
overflow:hidden;
font-family:system-ui;
}

.cta-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
padding:0 20px;
flex-wrap:wrap;
}

/* left */

.cta-left{
flex:1;
position:relative;
}

.cta-title{
font-size:60px;
font-weight:700;
line-height:1.05;
margin-bottom:25px;
cursor:default;
transition:transform .3s ease;
}

.cta-text{
font-size:18px;
line-height:1.7;
max-width:550px;
color:#333;
margin-bottom:40px;
}

/* buttons */

.cta-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-main{
background:#0b5d3b;
color:#fff;
padding:16px 34px;
border-radius:6px;
font-weight:600;
letter-spacing:1px;
transition:.3s;
text-decoration:none;
}

.btn-main:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.btn-outline{
border:2px solid #0b5d3b;
color:#0b5d3b;
padding:16px 34px;
border-radius:6px;
font-weight:600;
transition:.3s;
text-decoration:none;
}

.btn-outline:hover{
background:#0b5d3b;
color:#fff;
transform:scale(1.05);
}


/* right design */

.cta-right{
flex:1;
position:relative;
height:450px;
min-width:300px;
}

/* shapes */

.shape{
position:absolute;
transition:transform .6s ease;
}

.s1{
width:380px;
height:380px;
background:#ebd38d;
clip-path:polygon(0 0,100% 100%,0 100%);
right:140px;
top:0;
}

.s2{
width:360px;
height:360px;
background:#e6c478;
clip-path:polygon(100% 0,100% 100%,0 100%);
right:0;
top:120px;
}

.s3{
width:260px;
height:260px;
background:#f1c24a;
clip-path:polygon(0 0,100% 100%,0 100%);
right:120px;
bottom:0;
}

.s4{
width:200px;
height:200px;
background:#0b5d3b;
clip-path:polygon(100% 0,100% 100%,0 100%);
right:0;
bottom:60px;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media(max-width:768px){

.cta-title{
font-size:40px;
}

.cta-container{
flex-direction:column;
gap:50px;
}

.cta-right{
height:300px;
}

}
/* SHAPE HOVER ZOOM */

.cta-modern:hover .shape{

transform:scale(1.1);

}

/* RESPONSIVE */

@media(max-width:900px){

.cta-container{

flex-direction:column;

text-align:center;

}

.cta-title{

font-size:48px;

}

.cta-right{

height:300px;

}

}
/* GLOBAL RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: "Poppins", sans-serif;
color:#1e293b;
line-height:1.7;
background:#f8fafc;
overflow-x:hidden;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* SECTION HEADER */

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:36px;
font-weight:700;
margin-bottom:12px;
}

.section-header p{
color:#64748b;
max-width:650px;
margin:auto;
}

/* STANDARDIZED PAGE HEROS */
.about-hero, .director-hero, .testimonials-hero, .flat-hero, 
.apartment-hero, .construction-hero, .team-hero, .gallery-hero, 
.career-hero, .contact-hero, .pd-property-hero {
    background: linear-gradient(135deg, #eaf4ff, #4da3ff) !important;
    padding: 40px 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 200px !important;
    width: 100% !important;
    color: #0f172a !important;
}

.about-hero h1, .about-hero .about-title, .about-hero .hero-title,
.director-hero h1, .director-hero .director-title, 
.testimonials-hero h1, 
.flat-hero h1, .flat-hero .flat-title, 
.apartment-hero h1, .apartment-hero .apartment-title, 
.construction-hero h1, 
.team-hero h1, 
.gallery-hero h1, 
.career-hero h1, 
.contact-hero h1, 
.pd-property-hero h1, .pd-property-hero .pd-property-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.about-hero p, .about-hero .about-lead, .about-hero .hero-sub,
.director-hero p, .director-hero .director-subtitle, 
.testimonials-hero p, 
.flat-hero p, .flat-hero .flat-sub, 
.apartment-hero p, .apartment-hero .apartment-sub, 
.construction-hero p, 
.team-hero p, 
.gallery-hero p, 
.career-hero p, 
.contact-hero p, 
.pd-property-hero p, .pd-property-hero .pd-property-sub {
    font-size: 20px !important;
    color: #1e293b !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    opacity: 0.9 !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

/* HERO (Standardized) */

.about-hero, .about-title, .about-lead {
    /* Styles handled by global hero definition above */
}

/* COMPANY SECTION */

.about-company{

padding:100px 0;

background:white;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:12px;

transition:transform .5s ease;

}

.about-image img:hover{

transform:scale(1.05);

}

.about-content p{

margin-bottom:18px;

color:#475569;

}

/* MISSION */

.mission-vision{

padding:100px 0;

background:#f1f5f9;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.mission-card{

background:white;

padding:40px;

border-radius:12px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:all .3s ease;

}

.mission-card:hover{

transform:translateY(-8px);

}

.mission-card h3{

font-size:24px;

margin-bottom:10px;

color:#1e293b;

}

/* STATS */

.stats-section{

padding:100px 0;

background:#0f172a;

color:white;

text-align:center;

}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

@media(max-width:992px){
.stats-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.stats-grid{
grid-template-columns:1fr;
}
}

.stat{

padding:30px;

border-radius:12px;

background:rgba(255,255,255,0.05);

transition:all .3s ease;

}

.stat:hover{

background:#2563eb;

}

.stat h3{

font-size:42px;

font-weight:700;

margin-bottom:10px;

}

/* VALUES */

.values-section{

padding:100px 0;

background:white;

}

.values-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

@media(max-width:992px){
.values-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.values-grid{
grid-template-columns:1fr;
}
}

.value-card{

background:#f8fafc;

padding:30px;

border-radius:12px;

transition:all .3s ease;

border:1px solid #e2e8f0;

}

.value-card:hover{

transform:translateY(-6px);

box-shadow:0 12px 25px rgba(0,0,0,.08);

}

/* SERVICES */

.about-services{

padding:100px 0;

background:#f1f5f9;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:40px;

}

.service-card{

background:rgb(255, 255, 255);

padding:25px;

border-radius:12px;

box-shadow:0 8px 20px rgba(0,0,0,.06);

transition:all .3s ease;

text-align:center;

}

.service-card img{

width:100%;

height:200px;

object-fit:cover;

border-radius:8px;

margin-bottom:15px;

}

.service-card:hover{

transform:translateY(-8px);

}

/* TEAM */

.team-section{

padding:100px 0;

background:white;

}

.team-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:40px;

text-align:center;

}

.team-card{

background:#f8fafc;

padding:30px;

border-radius:12px;

transition:all .3s ease;

}

.team-card img{

width:120px;

height:120px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

transition:transform .3s ease;

}

.team-card:hover img{

transform:scale(1.1);

}

.team-card:hover{

transform:translateY(-6px);

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

/* CTA */

.about-cta{

padding:120px 0;

background:linear-gradient(120deg,#2563eb,#1e40af);

color:white;

text-align:center;

}

.about-cta h2{

font-size:36px;

margin-bottom:15px;

}

.about-cta p{

max-width:600px;

margin:auto;

margin-bottom:30px;

}

.cta-btn{

display:inline-block;

padding:14px 35px;

background:white;

color:#1e3a8a;

border-radius:8px;

font-weight:600;

text-decoration:none;

transition:all .3s ease;

}

.cta-btn:hover{

background:#0f172a;

color:white;

}

/* ANIMATIONS */

@keyframes fadeDown{

from{opacity:0;transform:translateY(-30px)}

to{opacity:1;transform:translateY(0)}

}

@keyframes fadeUp{

from{opacity:0;transform:translateY(30px)}

to{opacity:1;transform:translateY(0)}

}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

.mission-grid{

grid-template-columns:1fr;

}

.values-grid{

grid-template-columns:1fr 1fr;

}

.services-grid{

grid-template-columns:1fr;

}

.team-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:600px){

.about-title{

font-size:34px;

}

.section-header h2{

font-size:28px;

}

}

.director-hero, .director-title, .director-subtitle {
    /* Standardized in global hero */
}






/* QUOTE */

.director-quote{

padding:100px 0;

background:#0f172a;

color:white;

text-align:center;

}

.director-quote blockquote{

font-size:28px;

max-width:800px;

margin:auto;

font-style:italic;

}


/* CTA */

.director-cta{

padding:100px 0;

text-align:center;

background:linear-gradient(120deg,#2563eb,#1e40af);

color:white;

}

.director-btn{

display:inline-block;

margin-top:20px;

padding:14px 35px;

background:white;

color:#1e3a8a;

border-radius:8px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.director-btn:hover{

background:#0f172a;

color:white;

}


/* RESPONSIVE */

@media(max-width:991px){

.director-grid{

grid-template-columns:1fr;

}

.vision-grid{

grid-template-columns:1fr;

}

}

.testimonials-hero {
    /* Standardized in global hero */
}

.testimonials-section{

padding:100px 0;

background:#f8fafc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:white;

padding:30px;

border-radius:12px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-6px);

}

.stars{

color:#f59e0b;

font-size:18px;

margin-bottom:10px;

}

.client{

display:flex;

align-items:center;

margin-top:20px;

gap:15px;

}

.client img{

width:50px;

height:50px;

border-radius:50%;

object-fit:cover;

}


/* VIDEO */

.video-testimonial{

padding:100px 0;

background:white;

text-align:center;

}

.video-box{

max-width:800px;

margin:auto;

border-radius:12px;

overflow:hidden;

}


/* CTA */

.testimonial-cta{

padding:100px 0;

background:#2563eb;

color:white;

text-align:center;

}

.cta-btn{

display:inline-block;

padding:14px 30px;

background:white;

color:#1e3a8a;

border-radius:8px;

text-decoration:none;

margin-top:20px;

}


/* RESPONSIVE */

@media(max-width:900px){

.testimonial-grid{

grid-template-columns:1fr;

}

}
.avatar{

width:50px;
height:50px;

border-radius:50%;

background:#2563eb;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-weight:600;

font-size:18px;

}
.flat-hero, .flat-title, .flat-sub {
    /* Standardized in global hero */
}

.flat-about{

padding:100px 0;

background:#f8fafc;

}

.flat-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.flat-image img{

width:100%;

border-radius:10px;

transition:transform .4s;

}

.flat-image img:hover{

transform:scale(1.05);

}

/* FLAT CARDS GRID */
.flat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.flat-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.flat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.flat-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.flat-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 15px;
    font-weight: 600;
}

.flat-card p {
    margin: 8px 15px;
    color: #666;
    font-size: 0.95rem;
}

.flat-card .view-btn {
    margin: 15px;
    padding: 12px 25px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.flat-card .view-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}



/* FEATURES */

.flat-features {
    padding: 80px 0;
    background: #f8fafc;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 170px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #102a43;
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: #455a64;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}


/* GALLERY */

.flat-gallery{

padding:100px 0;

background:#f8fafc;

}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-item {
width: 100%;
overflow: hidden;
border-radius: 8px;
aspect-ratio: 1/1;
cursor: pointer;
background: #f0f0f0;
}

.gallery-grid img{
width:100%;
height: 100%;
object-fit: cover;
border-radius:8px;
transition:.4s;
display: block;
}

.gallery-grid img:hover{
transform:scale(1.08);
}


/* INVEST */

.flat-invest{

padding:100px 0;

background:white;

text-align:center;

}

.invest-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:30px;

}

.invest-card{

padding:30px;

background:#2563eb;

color:white;

border-radius:10px;

}


/* CTA */

.flat-cta{

padding:100px 0;

background:#0344ea;

color:white;

text-align:center;

}

.cta-btn{

display:inline-block;

margin-top:20px;

padding:14px 30px;

background:#2563eb;

color:white;

border-radius:8px;

text-decoration:none;

}


/* RESPONSIVE */

@media(max-width:900px){

.flat-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:1fr;

}

.gallery-grid{

grid-template-columns:1fr;

}

.invest-grid{

grid-template-columns:1fr;

}

}
/* HERO */

.apartment-hero, .apartment-title, .apartment-sub {
    /* Standardized in global hero */
}


/* INTRO */

.apartment-intro{
padding:110px 0;
background:#f8fafc;
}

.apartment-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.apartment-image img{
width:100%;
border-radius:12px;
transition:.5s;
}

.apartment-image img:hover{
transform:scale(1.05);
}

.apartment-content h2{
font-size:34px;
margin-bottom:20px;
color:#0f172a;
}

.apartment-content p{
margin-bottom:15px;
line-height:1.7;
}


/* TYPES */

.apartment-types{
padding:110px 0;
background:white;
}

.section-title{
text-align:center;
font-size:38px;
margin-bottom:60px;
}

.type-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.type-card{
background:#f1f5f9;
padding:40px;
border-radius:12px;
transition:.4s;
position:relative;
overflow:hidden;
}

.type-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.type-card h3{
margin-bottom:10px;
color:#2563eb;
}


/* AMENITIES */

.apartment-amenities{
padding:110px 0;
background:#f8fafc;
}

.amenity-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.amenity-card{
padding:35px;
background:white;
border-radius:10px;
text-align:center;
transition:.4s;
font-weight:600;
}

.amenity-card:hover{
background:#2563eb;
color:white;
transform:translateY(-8px);
}


/* GALLERY */

.apartment-gallery{
padding:110px 0;
background:white;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
transition:.5s;
}

.gallery-grid img:hover{
transform:scale(1.08);
}


/* LOCATION */

.location-section{
padding:110px 0;
background:#f8fafc;
text-align:center;
}

.location-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.location-card{
background:white;
padding:30px;
border-radius:10px;
transition:.3s;
}

.location-card:hover{
background:#2563eb;
color:white;
}


/* INVEST */

.apartment-invest{
padding:110px 0;
background:white;
text-align:center;
}

.invest-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.invest-card{
padding:40px;
background:#2563eb;
color:white;
border-radius:12px;
transition:.3s;
}

.invest-card:hover{
background:#1e40af;
transform:translateY(-10px);
}


/* CTA */

.apartment-cta{
padding:120px 0;
background:#0f172a;
color:white;
text-align:center;
}

.cta-btn{
display:inline-block;
margin-top:25px;
padding:14px 35px;
background:#2563eb;
border-radius:8px;
text-decoration:none;
color:white;
transition:.3s;
}

.cta-btn:hover{
background:#1e40af;
}


/* RESPONSIVE */

@media(max-width:1000px){

.apartment-grid{
grid-template-columns:1fr;
}

.type-grid{
grid-template-columns:1fr;
}

.amenity-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.location-grid{
grid-template-columns:1fr;
}

.invest-grid{
grid-template-columns:1fr;
}

}
/* GLOBAL CONTAINER */

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HERO */

.construction-hero {
    /* Standardized in global hero */
}

/* OVERVIEW SECTION */

.construction-overview{
padding:90px 0;
background:#f8fafc;
}

.grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.image{
display:flex;
justify-content:center;
}

.image img{
width:100%;
max-width:520px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.12);
transition:.4s;
}

.image img:hover{
transform:scale(1.05);
}

/* TEXT */

.content h2{
font-size:34px;
margin-bottom:20px;
color:#0f172a;
}

.content p{
margin-bottom:16px;
line-height:1.7;
color:#475569;
}

/* SERVICES */

.construction-services{
padding:100px 0;
background:white;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:60px;
color:#0f172a;
}

/* GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

@media(max-width:992px){
.services-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.services-grid{
grid-template-columns:1fr;
}
}

/* CARD */

.service-card{
background:#f1f5f9;
padding:35px;
border-radius:12px;
transition:.35s;
border:1px solid #e2e8f0;
cursor:pointer;
}

.service-card h3{
margin-bottom:12px;
font-size:22px;
color:#0f172a;
}

.service-card p{
color:#475569;
line-height:1.6;
}

/* HOVER EFFECT */

.service-card:hover{
background:#2563eb;
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.service-card:hover h3{
color:white;
}

.service-card:hover p{
color:#e0e7ff;
}

/* PROCESS */

.construction-process{
padding:100px 0;
background:#f8fafc;
}

.process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.process-step{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
transition:.35s;
border:1px solid #e5e7eb;
}

.process-step span{
font-size:28px;
color:#2563eb;
font-weight:bold;
display:block;
margin-bottom:10px;
}

.process-step:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* GALLERY */

.construction-gallery{
padding:100px 0;
background:white;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.07);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* STATS */

.construction-stats{
padding:100px 0;
background:#0f172a;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.stat h3{
font-size:44px;
margin-bottom:10px;
color:#38bdf8;
}

.stat p{
opacity:.85;
}

/* CTA */

.construction-cta{
padding:110px 0;
text-align:center;
background:linear-gradient(120deg,#2563eb,#1e40af);
color:white;
}

.cta-btn{
display:inline-block;
margin-top:25px;
padding:14px 36px;
background:white;
color:#1e3a8a;
border-radius:8px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.cta-btn:hover{
background:#0f172a;
color:white;
}

/* MOBILE */

@media(max-width:992px){

.grid-2{
grid-template-columns:1fr;
text-align:center;
}

.image img{
max-width:100%;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.gallery-grid{
grid-template-columns:1fr 1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr;
}

}
.team-hero {
    /* Standardized in global hero */
}

.team-leader{
padding:90px 0;
background:#f8fafc;
}

.leader-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.leader-img img{
width:100%;
border-radius:12px;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:50px;
}

.team-members{
padding:100px 0;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.team-card{
background:white;
padding:30px;
text-align:center;
border-radius:10px;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.team-card img{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.team-card:hover{
transform:translateY(-8px);
}

.team-values{
padding:100px 0;
background:#f1f5f9;
}

.values-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.value-card{
background:white;
padding:25px;
border-radius:10px;
text-align:center;
}

.team-stats{
padding:100px 0;
background:#0f172a;
color:white;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
}

.stat h3{
font-size:40px;
color:#38bdf8;
}

.team-cta{
padding:110px 0;
background:linear-gradient(120deg,#2563eb,#1e40af);
color:white;
text-align:center;
}

.cta-btn{
display:inline-block;
margin-top:20px;
padding:14px 32px;
background:white;
color:#1e3a8a;
border-radius:8px;
text-decoration:none;
}

@media(max-width:900px){

.leader-grid{
grid-template-columns:1fr;
}

.team-grid{
grid-template-columns:1fr;
}

.values-grid{
grid-template-columns:1fr 1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}
.gallery-hero {
    /* Standardized in global hero */
}

.gallery-filter{
padding:40px 0;
text-align:center;
}

.filter-btn{
padding:10px 20px;
margin:6px;
border:none;
background:#e2e8f0;
border-radius:6px;
cursor:pointer;
}

.filter-btn.active{
background:#2563eb;
color:white;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:80px 0;
}

.gallery-item{
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.gallery-item img{
width:100%;
transition:.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
align-items:center;
justify-content:center;
}

.lightbox img{
max-width:90%;
max-height:80%;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}
/* GLOBAL */

.career-page{
font-family:system-ui;
color:#1f2937;
}

/* HERO */

.career-hero {
    /* Standardized in global hero */
}

/* SECTION TITLE */

.section-title{
font-size:38px;
font-weight:800;
text-align:center;
margin-bottom:60px;
color:#0f172a;
}

/* BENEFITS */

.career-benefits{
padding:120px 0;
background:#f8fafc;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.benefit-card{
background:white;
padding:40px 30px;
border-radius:16px;
text-align:center;
position:relative;
overflow:hidden;
transition:all .4s ease;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.benefit-card::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg,#2563eb,#6366f1);
opacity:0;
transition:.4s;
}

.benefit-card h3{
font-size:22px;
font-weight:700;
margin-bottom:12px;
position:relative;
}

.benefit-card p{
font-size:15px;
position:relative;
color:#475569;
}

.benefit-card:hover{
transform:translateY(-12px) scale(1.05);
box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.benefit-card:hover::before{
opacity:.1;
}

/* JOBS */

.career-jobs{
padding:120px 0;
background:white;
}

.job-list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.job-card{
background:linear-gradient(120deg,#f1f5f9,#ffffff);
padding:35px;
border-radius:16px;
position:relative;
overflow:hidden;
transition:.4s;
border:1px solid #e2e8f0;
}

.job-card::after{
content:"";
position:absolute;
top:0;
left:0;
height:100%;
width:4px;
background:#2563eb;
}

.job-card h3{
font-size:22px;
font-weight:700;
margin-bottom:10px;
}

.job-card p{
color:#475569;
margin-bottom:10px;
}

.job-card span{
font-weight:600;
color:#2563eb;
font-size:14px;
}

.job-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* BUTTON */

.apply-btn{
margin-top:15px;
padding:12px 26px;
background:linear-gradient(120deg,#2563eb,#4f46e5);
color:white;
border:none;
border-radius:8px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.apply-btn:hover{
transform:scale(1.08);
box-shadow:0 10px 25px rgba(37,99,235,.4);
}

/* PROCESS */

.career-process{
padding:120px 0;
background:#f8fafc;
}

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.process-step{
background:white;
padding:40px;
border-radius:16px;
text-align:center;
transition:.4s;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.process-step span{
font-size:34px;
font-weight:800;
color:#2563eb;
display:block;
margin-bottom:10px;
}

.process-step h4{
font-size:20px;
font-weight:700;
margin-bottom:8px;
}

.process-step:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* FORM */

.career-form{
padding:120px 0;
background:white;
}

.apply-form{
max-width:650px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.apply-form input,
.apply-form textarea,
.apply-form select{
padding:14px;
border:1px solid #cbd5e1;
border-radius:8px;
font-size:15px;
transition:.2s;
}

.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus{
outline:none;
border-color:#2563eb;
box-shadow:0 0 0 3px rgba(37,99,235,.2);
}

.apply-form button{
background:linear-gradient(120deg,#2563eb,#4f46e5);
color:white;
padding:14px;
border:none;
border-radius:8px;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.apply-form button:hover{
transform:scale(1.06);
box-shadow:0 12px 30px rgba(37,99,235,.4);
}

/* RESPONSIVE */

@media(max-width:1000px){

.benefits-grid{
grid-template-columns:1fr 1fr;
}

.job-list{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.benefits-grid{
grid-template-columns:1fr;
}

.job-list{
grid-template-columns:1fr;
}

}
.contact-hero {
    /* Standardized in global hero */
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:50px;
}

.contact-info{
padding:100px 0;
background:#f8fafc;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.contact-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-card:hover{
transform:translateY(-10px) scale(1.05);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.contact-card h3{
margin-bottom:10px;
font-size:22px;
}

.contact-card a{
display:inline-block;
margin-top:10px;
color:#2563eb;
font-weight:600;
}

.contact-form-section{
padding:100px 0;
background:white;
}

.contact-form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
}

.contact-form button{
padding:12px;
background:#2563eb;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}



.contact-cta{
padding:110px 0;
background:linear-gradient(120deg,#2563eb,#1e40af);
color:white;
text-align:center;
}

.cta-btn{
display:inline-block;
margin-top:20px;
padding:14px 32px;
background:white;
color:#1e3a8a;
border-radius:8px;
text-decoration:none;
}

@media(max-width:900px){

.contact-grid{
grid-template-columns:1fr;
}

}
.services-main{
padding:100px 0;
background:#f8fafc;
}

.section-title{
font-size:36px;
text-align:center;
margin-bottom:60px;
}

/* grid */

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

/* card */

.service-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
transition:0.4s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.service-img img{
width:100%;
border-radius:10px;
margin-bottom:20px;
}

.service-btn{
display:inline-block;
margin-top:15px;
padding:10px 20px;
background:#2563eb;
color:white;
border-radius:6px;
}



/* process */

.service-process{
padding:100px 0;
background:white;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.process-card{
background:#eef2ff;
padding:30px;
border-radius:10px;
text-align:center;
}






/* cta */

.services-cta{
padding:100px 0;
text-align:center;
background:#2563eb;
color:white;
}



/* responsive */

@media(max-width:900px){

.services-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

}
.director-section{
width:100%;
padding:70px 20px;
background:#f4f8fb;
display:flex;
justify-content:center;   /* horizontal center */
align-items:center;       /* vertical align */
}

.director-card{
width:100%;
max-width:1100px;
margin:auto;              /* center fix */
display:flex;
align-items:flex-start;
gap:30px;
background:#ffffff;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
}

.director-image{
flex-shrink:0;   /* image shrink nahi hogi */
overflow:hidden;
border-radius:8px;
}

.director-image img{
width:200px;     /* photo thoda bada */
height:auto;
transition:transform 0.5s ease;
}

.director-card:hover{
transform:scale(1.02);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.director-card:hover .director-image img{
transform:scale(1.1);
}
.service-process{
padding:90px 20px;
background:linear-gradient(135deg,#f5f9ff,#eef4ff);
}

.section-title{
text-align:center;
font-size:36px;
font-weight:700;
margin-bottom:60px;
color:#1b2a4e;
}

/* GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

/* CARD */

.process-card{
background:#ffffff;
padding:35px 25px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .35s ease;
cursor:pointer;

/* scroll style animation */
opacity:0;
transform:translateY(40px);
animation:cardReveal .9s ease forwards;
}

/* delay for cards */

.process-card:nth-child(2){animation-delay:.15s;}
.process-card:nth-child(3){animation-delay:.3s;}
.process-card:nth-child(4){animation-delay:.45s;}

/* NUMBER */

.process-card span{
display:block;
font-size:42px;
font-weight:800;
color:#2d6cdf;
margin-bottom:10px;
}

/* TITLE */

.process-card h4{
font-size:20px;
margin-bottom:8px;
color:#1d2b50;
}

/* TEXT */

.process-card p{
font-size:14px;
color:#666;
line-height:1.6;
}

/* HOVER EFFECT */

.process-card:hover{
transform:scale(1.08);
background:#2d6cdf;
color:white;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.process-card:hover span,
.process-card:hover h4,
.process-card:hover p{
color:white;
}

/* SCROLL STYLE REVEAL */

@keyframes cardReveal{
to{
opacity:1;
transform:translateY(0);
}
}
.services-projects{
padding:100px 20px;
background:#f7f9ff;
overflow:hidden;
}

.project-slider{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
transition:transform .6s ease;
}

.project-slide{
flex:1 1 320px;
max-width: 100%;
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.1);
transition:.4s ease;

/* scroll animation */
opacity:0;
transform:translateY(50px);
animation:projectReveal .9s ease forwards;
}

.project-slide:nth-child(2){animation-delay:.2s;}
.project-slide:nth-child(3){animation-delay:.4s;}

.project-slide img{
width:100%;
height:210px;
object-fit:cover;
transition:transform .6s ease;
}

.project-slide h4{
padding:18px;
text-align:center;
font-size:18px;
}

/* hover zoom */

.project-slide:hover{
transform:translateY(-10px) scale(1.08);
box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.project-slide:hover img{
transform:scale(1.15);
}

/* scroll reveal */

@keyframes projectReveal{
0%{
opacity:0;
transform:translateY(60px);
}
100%{
opacity:1;
transform:translateY(0);
}
}
.team-values{
padding:60px 20px;
background:#f5f7fb;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:40px;
color:#222;
}

.values-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.value-card{
background:linear-gradient(135deg,#444646,#6d84ed);
padding:30px 20px;
border-radius:12px;
color:#fff;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.value-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.value-card .icon{
font-size:40px;
margin-bottom:15px;
}

.value-card h3{
font-size:20px;
margin-bottom:10px;
}

.value-card p{
font-size:14px;
line-height:1.6;
}

/* mobile responsive */

@media(max-width:992px){
.values-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.values-grid{
grid-template-columns:1fr;
}
}
/* HERO */

.gallery-hero {
    /* Standardized in global hero */
}



/* SECTION */

.gallery-section{
padding:60px 20px;
background:#f7f7f7;
}



/* TITLE */

.gallery-title{
text-align:center;
font-size:30px;
margin-bottom:40px;
color:#222;
position:relative;
}

.gallery-title::after{
content:"";
width:70px;
height:4px;
background:#ff9800;
display:block;
margin:10px auto;
border-radius:2px;
}



/* GRID */

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}



/* BOX */

.gallery-item{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
transition:0.3s;
}



/* IMAGE */

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
display:block;
transition:0.4s;
}



/* HOVER EFFECT */

.gallery-item:hover{
transform:translateY(-6px);
box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

.gallery-item:hover img{
transform:scale(1.1);
}



/* LIGHTBOX */

.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.lightbox-img{
max-width:90%;
max-height:90%;
}

.close-lightbox{
position:absolute;
top:40px;
right:50px;
font-size:40px;
color:#fff;
cursor:pointer;
}



/* RESPONSIVE */

@media(max-width:1000px){

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.gallery-grid{
grid-template-columns:1fr;
}

.gallery-item img{
height:200px;
}

.gallery-hero h1{
font-size:30px;
}

}
/* HERO */

.property-hero{
padding:120px 0;
background:linear-gradient(120deg,#2563eb,#60a5fa);
color:white;
text-align:center;
}

.property-title{
font-size:48px;
margin-bottom:15px;
}

.property-sub{
font-size:18px;
opacity:.9;
}



/* PLOT SECTION */

.plot-section{
padding:100px 0;
background:linear-gradient(180deg,#eef6ff,#ffffff);
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:10px;
}

.section-sub{
text-align:center;
color:#555;
margin-bottom:60px;
}



/* GRID */

.plot-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}



/* CARD */

.plot-card{
background:white;
border-radius:14px;
overflow:hidden;
border-top:4px solid #2563eb;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
transition:.35s;
cursor:pointer;
}

.plot-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.15);
}



/* IMAGE */

.plot-image{
overflow:hidden;
}

.plot-image img{
width:100%;
height:200px;
object-fit:cover;
transition:.5s;
}

.plot-card:hover img{
transform:scale(1.08);
}



/* INFO */

.plot-info{
padding:20px;
}

.plot-location{
font-size:20px;
margin-bottom:12px;
}



/* META BOX */

.plot-meta{
background:#f3f6fb;
padding:10px 15px;
border-radius:6px;
display:flex;
justify-content:space-between;
font-size:14px;
}



/* CTA */

.property-cta{
padding:100px 0;
background:#2563eb;
color:white;
text-align:center;
}

.cta-btn{
display:inline-block;
margin-top:20px;
background:white;
color:#2563eb;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.cta-btn:hover{
background:#e0ecff;
}
.pd-property-hero {
    /* Standardized in global hero */
}

.pd-property-features{
padding:80px 0;
background:#f5f7fb;
}

.pd-section-title{
text-align:center;
font-size:32px;
margin-bottom:10px;
}

.pd-section-sub{
text-align:center;
color:#666;
margin-bottom:50px;
}

.pd-feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.pd-feature-box{
background:#fff;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 6px 18px rgba(0,0,0,.08);
transition:.3s;
}

.pd-feature-box:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.pd-feature-icon{
font-size:32px;
margin-bottom:10px;
}

.pd-property-cta{
padding:80px 0;
background:#0f172a;
color:#fff;
text-align:center;
}

.pd-cta-btn{
display:inline-block;
margin-top:15px;
background:#2563eb;
color:#fff;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
transition:.3s;
}

.pd-cta-btn:hover{
background:#1d4ed8;
}

@media(max-width:1024px){
.pd-feature-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.pd-feature-grid{
grid-template-columns:1fr;
}
}
.pd-plot-section{
padding:80px 0;
background:linear-gradient(to bottom,#f1f6ff,#ffffff);
}

.pd-plot-title{
text-align:center;
font-size:32px;
margin-bottom:50px;
}

.pd-plot-grid,
.flat-grid,
.flat-cards-grid,
.services-grid,
.status-grid,
.feature-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

/* Force support for existing legacy selectors */
.services-section .services-grid,
.land-services .services-grid,
.pd-plot-grid,
.flat-grid,
.flat-cards-grid,
.status-grid,
.feature-grid,
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr)) !important;
}

/* Plot card styling */
.pd-plot-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border-top: 4px solid #2b7cff;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.pd-plot-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

.pd-plot-img{
height:160px;
overflow:hidden;
}

.pd-plot-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.pd-plot-card:hover img{
transform:scale(1.08);
}

.pd-plot-body{
padding:18px;
text-align:center;
}

.pd-location{
font-size:20px;
margin-bottom:10px;
}

.pd-area-box{
display:inline-block;
background:#eef4ff;
padding:6px 16px;
border-radius:20px;
font-size:14px;
margin-bottom:15px;
}

.pd-btn-box{
border-top:1px solid #eee;
padding-top:12px;
}

.pd-plot-btn{
display:inline-block;
background:linear-gradient(45deg,#2b7cff,#00a8ff);
color:#fff;
padding:8px 18px;
border-radius:6px;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.pd-plot-btn:hover{
background:linear-gradient(45deg,#005bea,#0078ff);
}

@media(max-width:1024px){
.pd-plot-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.pd-plot-grid{
grid-template-columns:1fr;
}
}
.services-grid a{
text-decoration:none;
color:inherit;
display:block;
}
.nav-logo img{
height:50px;
width:auto;
display:block;
}
.flat-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.flat-card,
.service-card,
.status-card,
.pd-plot-card,
.feature-card,
.feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
}

.flat-card:hover,
.service-card:hover,
.status-card:hover,
.pd-plot-card:hover,
.feature-card:hover,
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

.flat-card {
    padding: 18px;
}

.service-card {
    border: 1px solid #e8edf3;
}

.status-card, .feature-card, .feature-box, .pd-plot-card {
    flex: 1;
}

.flat-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.view-btn{
background:#007bff;
color:#fff;
border:none;
padding:8px 20px;
border-radius:5px;
cursor:pointer;
}

.flat-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
}

.modal-content{
background:#fff;
padding:30px;
border-radius:10px;
width:400px;
text-align:center;
}

.close{
position:absolute;
right:20px;
top:15px;
font-size:22px;
cursor:pointer;
}
.construction-status{
padding:80px 0;
background:#f5f7fb;
}

.status-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.status-card{
background:linear-gradient(180deg,#eaf4ff,#ffffff);
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
border-top:4px solid #2b7cff;
transition:.3s;
text-align:center;
}

.status-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.status-icon{
width:60px;
height:60px;
background:linear-gradient(135deg,#2b7cff,#6bb6ff);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
margin:0 auto 15px;
}

.status-title{
font-size:20px;
font-weight:700;
margin-bottom:10px;
color:#2b7cff;
}

.status-list{
margin-top:15px;
text-align:left;
padding-left:18px;
}

.status-list li{
margin-bottom:6px;
font-size:14px;
color:#555;
}
/* DIRECTOR SECTION PROFESSIONAL FIX */

.director-section{
padding:80px 0;
}

.vision-grid{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
max-width:1100px;
margin:auto;
}

.director-card{
display:flex;
align-items:flex-start;
gap:20px;

background:#ffffff;
padding:25px;

border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);

width:480px;
max-width:100%;

transition:0.3s ease;
}

.director-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.director-image{
flex-shrink:0;
}

.director-image img{
width:110px;
height:110px;
object-fit:cover;
border-radius:10px;
}

.director-content{
flex:1;
}

.director-content h2{
font-size:20px;
margin:0 0 5px;
}

.director-role{
font-size:14px;
color:#2b7cff;
font-weight:600;
display:block;
margin-bottom:8px;
}

.director-content p{
font-size:14px;
line-height:1.6;
color:#555;
margin:0;
}


/* MOBILE FIX */

@media(max-width:768px){

.director-card{
flex-direction:column;
text-align:center;
align-items:center;
}

.director-image img{
width:100px;
height:100px;
}

}
/* =========================
   LEADERSHIP PRINCIPLES
========================= */

.director-vision{
padding:90px 0;
background:#f5f7fb;
}

.section-header{
text-align:center;
max-width:750px;
margin:0 auto 50px;
}

.section-header h2{
font-size:34px;
font-weight:700;
margin-bottom:10px;
}

.section-header p{
font-size:16px;
color:#555;
line-height:1.6;
}

/* GRID */

.vision-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

/* CARD DESIGN */

.vision-card{

background:linear-gradient(180deg,#eef6ff,#ffffff);

padding:35px 30px;

border-radius:14px;

border-top:4px solid #2b7cff;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

transition:all 0.3s ease;

text-align:center;

position:relative;

}

/* ICON CIRCLE */

.vision-icon{

width:60px;
height:60px;

margin:0 auto 15px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:linear-gradient(135deg,#2b7cff,#66b2ff);

color:#fff;

font-size:24px;

}

/* TITLE */

.vision-card h3{
font-size:20px;
margin-bottom:10px;
font-weight:700;
}

/* TEXT */

.vision-card p{
font-size:14px;
line-height:1.7;
color:#555;
}

/* HOVER EFFECT */

.vision-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,0.15);

}
/* =========================
   DIRECTOR QUOTE
========================= */

.director-quote{

padding:80px 0;

background:linear-gradient(135deg,#eaf4ff,#cde4ff);

text-align:center;

}

.quote-box{

max-width:800px;

margin:auto;

padding:30px;

}

.quote-box blockquote{

font-size:22px;

font-weight:500;

line-height:1.7;

color:#1a1a1a;

position:relative;

}

.quote-author{

display:block;

margin-top:15px;

font-size:14px;

color:#2b7cff;

font-weight:600;

}
/* =========================
   DIRECTOR CTA
========================= */

.director-cta{

padding:90px 0;

background:#ffffff;

text-align:center;

}

.cta-box{

max-width:700px;

margin:auto;

}

.cta-box h2{

font-size:34px;

font-weight:700;

margin-bottom:10px;

}

.cta-box p{

font-size:16px;

color:#555;

margin-bottom:30px;

}

/* BUTTON */

.director-btn{

display:inline-block;

padding:14px 36px;

background:linear-gradient(135deg,#2b7cff,#66b2ff);

color:#fff;

border-radius:8px;

font-weight:600;

text-decoration:none;

transition:0.3s;

}

.director-btn:hover{

transform:translateY(-3px);

box-shadow:0 10px 20px rgba(0,0,0,0.15);

}
/* HERO SECTION */

.pro-hero{
position:relative;
height:90vh;
overflow:hidden;
}

/* BACKGROUND IMAGE */

.hero-bg{
position:absolute;
width:100%;
height:75%;
top:0;
left:0;
object-fit:cover;
z-index:1;
}

/* CONTAINER */

.hero-container{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
height:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
padding:0 20px;
}

/* LEFT TEXT */

.hero-left{
max-width:520px;
color:#0b2545;
animation:heroFade 1.2s ease forwards;
}

.hero-left h1{
font-size:32px;
font-weight:600;   /* bold */
line-height:1.2;
margin-bottom:10px;
}

.hero-left p{
font-size:17px;
font-weight:300;   /* thin */
line-height:1;
margin-bottom:20px;
max-width:300px;
}

/* BUTTON */

.hero-btn{
display:inline-block;
padding:14px 32px;
background:linear-gradient(45deg,#ff7a18,#ffb347);
border-radius:30px;
color:white;
text-decoration:none;
font-weight:600;
transition:all .3s ease;
}

.hero-btn:hover{
transform:translateY(-5px) scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* RIGHT SIDE BOXES */

.hero-right{
display:flex;
flex-direction:column;
gap:25px;
}

.hero-box{
background:rgba(255,255,255,0.95);
padding:25px;
border-radius:12px;
width:320px;
box-shadow:0 12px 30px rgba(0,0,0,.15);
transition:all .35s ease;
animation:boxFade 1.5s ease forwards;
}

.hero-box:hover{
transform:translateY(-8px) scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.hero-box h3{
font-size:22px;
font-weight:700;
color:#0b2545;
margin-bottom:10px;
}

.hero-box p{
font-size:14px;
font-weight:300;
color:#444;
}

/* TEXT ANIMATION */

@keyframes heroFade{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

/* BOX ANIMATION */

@keyframes boxFade{
0%{
opacity:0;
transform:translateX(40px);
}
100%{
opacity:1;
transform:translateX(0);
}
}

/* SCROLL ZOOM EFFECT */

.pro-hero:hover .hero-bg{
transform:scale(1.05);
transition:transform 6s ease;
}

/* RESPONSIVE */

@media(max-width:992px){

.hero-container{
flex-direction:column;
text-align:center;
justify-content:center;
}

.hero-right{
flex-direction:row;
justify-content:center;
}

.hero-box{
width:auto;
}

.hero-left h1{
font-size:36px;
}

.hero-left p{
font-size:15px;
}

}



