/* Base Styles & Modern Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0f2b48;
    --secondary-blue: #1d4e89;
    --primary-orange: #ef5a24;
    --accent-orange: #ff6b35;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --sidebar-width: 270px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(15, 43, 72, 0.08), 0 8px 10px -6px rgba(15, 43, 72, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(15, 43, 72, 0.15);
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition-fast: all 0.25s ease-in-out;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}
.primary-text{
    color: #174488;
}
.primary-bg{
    background: #174488;
}
.secondary-bg{
    background: #e16029;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: #ffffff;
    padding: 20px 0 15px 0;
    z-index: 1000;
    box-shadow: 4px 0 25px rgba(15, 43, 72, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.04);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.sidebar::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.logo-container {
    text-align: center;
    padding: 0 20px;
}

.logo-img {
    max-width: 140px;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.03);
}

.nav-links {
    padding: 0 16px;
}

.nav-links .nav-item {
    margin-bottom: 4px;
}

.nav-links .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 10px 18px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.nav-links .nav-link:hover {
    color: var(--primary-orange);
    background-color: rgba(239, 90, 36, 0.08);
    transform: translateX(4px);
}

.nav-links .nav-link.active {
    color: #444;
    /* background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue)); */
    background: #ddd;
    border: 1px solid #666;
    box-shadow: 0 4px 12px rgba(15, 43, 72, 0.25);
    font-weight: 700;
}

.mobile-header img{
    height: 100px;
}
.offcanvas-header img{
    height: 80px;
}
.sidebar-bottom .social-icons a{
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

/* PAGE HEADER */
.page-header .overlay{
    background: linear-gradient(rgba(29, 78, 137, 0.6), rgb(23 68 136)); 
    z-index: 1;
}
.page-header .container{
    z-index: 2;
}

/* Sidebar Bottom Contact & Social */
.sidebar-bottom {
    padding: 15px 18px 10px 18px;
    width: 100%;
}

.sidebar-contact-card {
    background: rgba(15, 43, 72, 0.03);
    border: 1px solid rgba(15, 43, 72, 0.08);
    border-radius: 12px;
    padding: 10px 10px;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.sidebar-contact-card:hover {
    background: rgba(239, 90, 36, 0.05);
    border-color: rgba(239, 90, 36, 0.2);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
    word-break: break-all;
}

.sidebar-contact-item i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(239, 90, 36, 0.12);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    margin-right: 8px;
    transition: var(--transition-fast);
}

.sidebar-contact-item:hover {
    color: var(--primary-orange);
}

.sidebar-contact-item:hover i {
    background: var(--primary-orange);
    color: #ffffff;
    transform: scale(1.1);
}

.sidebar .social-icons a {
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.sidebar .social-icons a:hover {
    color: #ffffff;
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(239, 90, 36, 0.3);
}

/* Mobile Header & Offcanvas Drawer */
.mobile-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-offcanvas {
    width: 300px !important;
}

.mobile-offcanvas .offcanvas-header {
    background: var(--primary-blue) !important;
    padding: 20px;
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
}

/* Hero Carousel Slider - Full Height (100vh) */
.hero-slider-section {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    /* height: 100dvh; */
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    /* height: 100vh;
    height: 100dvh; */
}

.hero-carousel .carousel-item {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    transition: transform 1.2s ease-in-out, opacity 0.8s ease-in-out;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 43, 72, 0.88) 0%, rgba(15, 43, 72, 0.55) 60%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-carousel .carousel-caption-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    /* background: rgba(239, 90, 36, 0.25); */
    border: 1px solid var(--primary-orange);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 1.15;
    margin-top: 10px;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 400;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    color: #ddd;
}

.btn-hero-primary {
    background: #e06029;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(239, 90, 36, 0.4);
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background: #d84915;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(239, 90, 36, 0.5);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    transition: var(--transition-smooth);
}

.btn-hero-outline:hover {
    background: #ffffff;
    color: var(--primary-blue);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Hide Carousel Left & Right Arrow Buttons for clean full screen view */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none !important;
}

.hero-carousel .carousel-indicators {
    bottom: 10px;
    gap: 10px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 36px;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0;
    transition: var(--transition-fast);
}

.hero-carousel .carousel-indicators .active {
    width: 50px;
    background-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(239, 90, 36, 0.8);
}

/* Carousel Animations */
.carousel-item.active .animate-fade-up {
    animation: fadeInUp 0.9s ease forwards;
}

.carousel-item.active .animate-delay-1 { animation-delay: 0.2s; }
.carousel-item.active .animate-delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter / Highlights Section */
/* .stat-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.03);
    text-center: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-blue), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
} */

.stats-section{
    background: #174488;
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

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

.stat-item{
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    transition: .3s;
}

.stat-item:hover{
    transform: translateY(-8px);
}

.stat-item i{
    font-size: 40px;
    color: #e16029;
}

.stat-content h2{
    margin: 0;
    font-size: 38px;
    font-weight: 600;
}

.stat-content p{
    margin-top: 8px;
    font-size: 14px;
    color: #d1d5db;
    text-transform: capitalize;
    letter-spacing: 1px;
}

@media (max-width: 992px){
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .stats-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item{
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* About Section Enhancements */
.about-img-container {
    position: relative;
    padding: 15px;
}

.about-img-container img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-orange);
}

/* Section Header Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.title-underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-blue));
    border-radius: 2px;
}

/* Project Cards Enhancements */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    transition: var(--transition-smooth);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 43, 72, 0.95) 0%, rgba(15, 43, 72, 0.4) 60%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.project-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Testimonial Cards */
.testimonial-item {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(239, 90, 36, 0.3);
}

.quote-icon {
    font-size: 2.2rem;
    color: rgba(239, 90, 36, 0.2);
    margin-bottom: 15px;
}

/* Footer Section */
.footer {
    background: #0b1f35;
    color: #94a3b8;
}
.footer img{
   width: 120px;
}
.footer h6 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer a {
    color: #cbd5e1;
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

/* Floating Action Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-orange);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(239, 90, 36, 0.5);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-contact-btn:hover {
    background: #d84915;
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

/* Floating WhatsApp Action Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: #25d366;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    background: #128c7e;
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
}

/* New Sections & Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 25s linear infinite;
    align-items: center;
    gap: 3rem;
}

.marquee-content img {
    height: 90px;
    transition: filter 0.3s ease;
    flex-shrink: 0;
}

.marquee-content img:hover {
    transform: scale(1.2);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); } /* Assuming content is duplicated for smooth loop */
}

/* Enhanced Project Cards */
.project-card-enhanced {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card-enhanced .img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-card-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-card-enhanced:hover img {
    transform: scale(1.05);
}

.project-card-enhanced .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card-enhanced .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.project-card-enhanced .btn-explore {
    margin-top: auto;
    align-self: flex-start;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.project-card-enhanced .btn-explore:hover {
    color: var(--primary-orange);
    gap: 12px;
}

/* Services Section */
.services .section-title{
    font-size: 2.3rem;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.service-box {
    padding: 40px 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(239, 90, 36, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(239, 90, 36, 0.1);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-fast);
}
.service-box h4{
    font-size: 20px;
}

.service-box:hover .service-icon {
    background: var(--primary-orange);
    color: white;
}

/* Why Choose Us */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    background: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Project Filters */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 90, 36, 0.15) 0%, transparent 70%);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    :root {
        --sidebar-width: 0px;
    }
    
    .sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-carousel .carousel-item {
        height: 75vh;
        height: 75dvh;
        min-height: 480px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 42px;
        height: 42px;
    }

    .hero-carousel .carousel-control-prev { left: 10px; }
    .hero-carousel .carousel-control-next { right: 10px; }
}


/* GOOGLE REVIEW BUTTON */
.section-titlee {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}
.google-review-btn {
        display: inline-block;
        margin-top: 70px;
        /* padding: 12px 24px; */
		padding: 0px 10px 0 0;
        background-color: #4285F4;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
		font-size: 17px;
        font-weight: 600;
        transition: background-color 0.3s;
    
    }

	.google-review-btn img{
		width: 50px;
		height: 50px;
	}

    a.google-review-btn:hover {
        background-color: #357ae8;
		color: #fff;
    }

    /* ABOUT PAGE */
    .kraft-about-section{
    padding:100px 0;
    background:#fff;
    }

.kraft-about-image img{
    width:100%;
    display:block;
}

  .kraft-about-section .section-subtitle{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#174488;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

  .kraft-about-section .section-title{
    font-size:36px;
    font-weight:700;
    letter-spacing: 1.4px;
    color:#1b2d4f;
    line-height:1.3;
    margin-bottom:10px;
}

.about-text{
    color:#666;
    line-height:1.9;
    margin-bottom:10px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:35px 0;
}

.feature-card{
    display:flex;
    gap:15px;
    padding:22px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-card i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f36b21;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.feature-card h5{
    font-size:18px;
    color:#1b2d4f;
    margin-bottom:8px;
    font-weight:700;
}

.feature-card p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.7;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    padding:14px 30px;
    background:#f36b21;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#1b2d4f;
    color:#fff;
}

@media(max-width:991px){

  .kraft-about-section .section-title{
    font-size:34px;
}

.about-features{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.kraft-about-section{
    padding:70px 0;
}

  .kraft-about-section .section-title{
    font-size:28px;
}

}

/* Mission vision section */
.construction-vm-section{
    background:#f7f8fa;
}

.construction-vm-section .section-subtitle{
    display:inline-block;
    color:#d89a00;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.construction-vm-section .section-title{
    font-size:52px;
    font-weight:800;
    color:#222;
    line-height:1.15;
    margin-bottom:20px;
}

.construction-vm-section .section-title span{
    color:#f4a300;
}

.construction-vm-section .section-desc{
    color:#666;
    line-height:1.9;
    max-width:450px;
    margin:auto;
}

.vm-card{
    position:relative;
    display:flex;
    align-items:center;
    gap: 10px;
    justify-content:space-between;
    border-radius:24px;
    padding:50px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.vm-card::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    right:-70px;
    bottom:-70px;
    background:rgba(255,255,255,.12);
}

.vision-card{
    background:#ee9164;
}

.mission-card{
    background:#0f4fa8;
}

.vm-content{
    width:72%;
}

.vm-item{
    margin-bottom:35px;
}

.vm-item:last-child{
    margin-bottom:0;
}

.vm-item h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:12px;
    display:flex;
    align-items:center;
}

.vm-item h4::before{
    content:"✓";
    margin-right:12px;
    font-size:22px;
}

.vision-card h4{
    color:#174488;
}

.mission-card h4{
    color:#ffd34e;
}

.vm-item p{
    line-height:1.8;
    margin:0;
    font-size:16px;
}

.vision-card p{
    color:#333;
}

.mission-card p{
    color:#f1f1f1;
}

.vm-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.vm-icon i{
    font-size:60px;
}

.vision-card .vm-icon i{
    color:#2756ff;
}

.mission-card .vm-icon i{
    color:#f4a300;
}

.vm-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.vm-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.vm-image:hover img{
    transform:scale(1.08);
}

@media(max-width:991px){

    .vm-card{
        flex-direction:column;
        text-align:center;
        padding:40px 30px;
    }

    .vm-content{
        width:100%;
        margin-top:35px;
    }

    .vm-icon{
        width:140px;
        height:140px;
    }

    .vm-icon i{
        font-size:55px;
    }

    .section-title{
        font-size:40px;
    }

    .vm-image img{
        height:320px;
    }

}

@media(max-width:576px){

    .construction-vm-section .section-title{
        font-size:32px;
    }

    .vm-card{
        padding:30px 20px;
    }

    .vm-item h4{
        font-size:24px;
    }

    .vm-icon{
        width:120px;
        height:120px;
    }

    .vm-icon i{
        font-size:48px;
    }

}

/* SERVICES PAGE */
.premium-services-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    }
            .premium-services-section::before {
                content: '';
                position: absolute;
                top: -50%; left: -50%;
                width: 200%; height: 200%;
                background: radial-gradient(circle, rgba(239,90,36,0.04) 0%, rgba(255,255,255,0) 60%);
                animation: rotateBg 40s linear infinite;
            }
            @keyframes rotateBg {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
            .premium-card {
                background: rgba(255, 255, 255, 0.7);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.8);
                border-radius: 24px;
                padding: 20px 30px;
                height: 100%;
                position: relative;
                z-index: 2;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: 0 10px 30px -10px rgba(15, 43, 72, 0.05);
                display: flex;
                flex-direction: column;
            }
            .premium-card:hover {
                transform: translateY(-12px);
                box-shadow: 0 25px 50px -12px rgba(15, 43, 72, 0.15), 0 0 0 2px rgba(239, 90, 36, 0.3) inset;
                background: #ffffff;
            }
            .premium-icon-box {
                width: 65px;
                height: 65px;
                border-radius: 18px;
                background: linear-gradient(135deg, #1d4e89 0%, #0f2b48 100%);
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.6rem;
                margin-bottom: 25px;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                box-shadow: 0 10px 20px rgba(15, 43, 72, 0.2);
            }
            .premium-card:hover .premium-icon-box {
                background: linear-gradient(135deg, #ff6b35 0%, #ef5a24 100%);
                transform: scale(1.15) rotate(8deg);
                box-shadow: 0 15px 25px rgba(239, 90, 36, 0.35);
            }
            .premium-card-title {
                font-weight: 800;
                color: #0f2b48;
                margin-bottom: 15px;
                font-size: 1.35rem;
                letter-spacing: -0.01em;
                transition: color 0.3s ease;
            }
            .premium-card:hover .premium-card-title {
                color: #ef5a24;
            }
            .premium-card-text {
                color: #64748b;
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 30px;
                flex-grow: 1;
            }
            .premium-link {
                display: inline-flex;
                align-items: center;
                font-weight: 700;
                color: #1d4e89;
                text-decoration: none;
                font-size: 0.85rem;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                transition: all 0.3s ease;
                padding: 10px 0;
                border-top: 1px solid rgba(0,0,0,0.05);
                width: 100%;
                margin-top: 10px;
            }
            .premium-link i {
                margin-left: 8px;
                transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .premium-card:hover .premium-link {
                color: #ef5a24;
                border-top-color: rgba(239, 90, 36, 0.15);
            }
            .premium-card:hover .premium-link i {
                transform: translateX(8px);
            }

    /* CONTACT PAGE */
    .contact-address i{
        color: #fff;
    }
    .secondary{
        background-color: #e16029;
        color: #fff;
    }
    .secondary:hover{
        background-color: #f8976d;
        color: #fff;
    }

/*==============================
CEO TESTIMONIAL SECTION
===============================*/

.testimonial-section{
    /* background:#171b26; */
    padding:80px 0 0;
    position:relative;
    overflow:hidden;
}

.testimonial-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.03) 0%, transparent 40%);
}

.testimonial-card{
    display:flex;
    align-items:center;
    background:#fff;
    overflow:hidden;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}
.testimonial-image{
    flex:0 0 42%;
}

.testimonial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.testimonial-content{
    flex:1;
    padding:50px;
    position:relative;
}

.quote-mark{
    font-size:70px;
    color:#174488;
    opacity:.9;
    margin-bottom:20px;
}

.testimonial-text{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.testimonial-author h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:5px;
    color:#111;
    text-transform: capitalize;
}

.testimonial-author span{
    font-size:14px;
    letter-spacing:1.4px;
    color:#777;
    text-transform:uppercase;
}

.dots{
    position:absolute;
    width:70px;
    height:14px;
    background-image:radial-gradient(#fff 1.6px, transparent 1.6px);
    background-size:10px 10px;
    z-index:1;
}

.dots-top{
    top:50px;
    right:120px;
}

.dots-bottom{
    bottom:50px;
    left:120px;
}

/* Responsive */

@media(max-width:991px){

.testimonial-card{
    flex-direction:column;
}

.testimonial-image{
    flex:100%;
}

.testimonial-content{
    padding:40px 30px;
}

.quote-mark{
    font-size:55px;
}

}

@media(max-width:768px){

.testimonial-section{
    padding:70px 15px;
}

.testimonial-content{
    padding:30px 20px;
}

.quote-mark{
    font-size:45px;
}

.testimonial-text{
    font-size:15px;
}

.testimonial-author h4{
    font-size:20px;
}

.dots{
    display:none;
}
}

/* =======================================
   ENHANCED VISION & SPACING (All Sections)
   ======================================= */
.main-content section.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.main-content section {
    position: relative;
    z-index: 1;
}

.project-card-enhanced, .service-box, .testimonial-item {
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px -10px rgba(15, 43, 72, 0.08);
}

.project-card-enhanced:hover, .service-box:hover, .testimonial-item:hover {
    box-shadow: 0 20px 40px -15px rgba(15, 43, 72, 0.15);
    border-color: rgba(239, 90, 36, 0.3);
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

@media(max-width:768px) {
    .main-content section.py-5 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ENGINEER SECTION */
.engineer-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.engineer-section h2{
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 2px;
}

.engineer-card{
    /* background: #fff; */
    border-radius: 18px;
    overflow: hidden;
    transition: .35s ease;
    border: 1px solid #ececec;
    /* box-shadow: 0 15px 40px rgba(0,0,0,.06); */
    display: flex;
    flex-direction: column;
    height: 100%;
}
.engineer-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.engineer-card-img-wrapper{
    position: relative;
    padding: 15px;
    /* background: linear-gradient(135deg,#f4f4f4,#e9eef3); */
}
.engineer-icon-bg{
    width: 350px;
    height: 350px;
    margin: auto;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}
.engineer-icon-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.engineer-card-body{
    text-align: center;
    padding: 15px 25px;
}
.engineer-name{
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.engineer-specialty{
    color: #666;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.engineer-card-body::before{
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: #e16029;
    margin: 0 auto 18px;
    border-radius: 20px;
}
@media(max-width:991px){
    .engineer-icon-bg{
        width:150px;
        height:150px;
    }
}
@media(max-width:576px){
    .engineer-card-img-wrapper{
        padding:25px;
    }
    .engineer-icon-bg{
        width:130px;
        height:130px;
    }
    .engineer-name{
        font-size:20px;
    }

}

/* SERVICE DETAIL */
.service-header{
    background: #174488;
    color: #fff;
}
.service-header p{
    font-size: 18px;
    letter-spacing: 1px;
}
.service-detail{
    background: #eee;
    color: #000;
}
.service-detail .container{
   max-width: 900px;
   width: 100%;
}
.service-detail hr{
    border-top: 4px solid #ffffff; 
    opacity: 1; 
    margin-bottom: 50px;
}
.service-detail p{
    line-height: 1.8; 
    text-align: justify;
}
.service-detail img{
   border-width: 5px !important;
   border-color: #000 !important;
}
.service-detail .benefits-list{
   line-height: 1.6;  
}


/* BLOG */
.card-img-top{
    height:200px;
    object-fit: cover;
}