/* RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. TOP UTILITY BAR STYLES */
.top-bar {
    background-color: #f8f9fa; 
    font-size: 20px;
    letter-spacing: 1px;
    width: 100%;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 20;
    border-bottom: 1px solid #e9ecef;
}

.top-bar .container {
    max-width: 100%;     /* Expands the top bar container to full screen width */
    padding-left: 35px;  /* Drops the gap to 20px, moving 'FOLLOW US ON' right to the left edge */
    padding-right: 40px; /* Retains clean spacing on the right side for phone/email text */
}


/* Ensure the main top bar wrapper can wrap elements when space shrinks */
.top-bar-container, .top-header, .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows text to drop smoothly instead of clipping out */
    padding: 8px 15px;
    width: 100%;
}

/* Tablet & Mobile Breakpoint for the Top Bar */
@media (max-width: 768px) {
    .top-bar-container, .top-header, .top-bar {
        flex-direction: column; /* Stack contact info above social links */
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .social-links, .follow-us-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        width: 100%;
    }
}

.bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #495057; /* Dark gray label color */
    margin-left: -5px;
}

/* Social link icons default state */
.social-links a {
    color: #212529; /* Deep black icon color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff5722; /* Industrial Orange Accent */
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #212529; /* Deep black text for phone & email */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* Icon colors next to contact numbers */
.contact-info i {
    color: #ff5722; /* Retains corporate orange identity for icons */
}

/* HOVER STATES: Changes text/icons to vibrant orange when moused over */
.social-links a:hover,
.contact-info a:hover {
    color: #ff5722; 
}

/* 2. MAIN HEADER & NAVIGATION STYLES */
.main-header {
    background-color: #ffffff; 
    width: 100%;
    position: absolute; /* relative se badal kar absolute kijiye */
    top: 41px; /* Top bar ke thik niche set karne ke liye */
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.main-header .container {
    max-width: 100% !important;   /* Container ko full screen width dega */
    padding-left: 20px !important;  /* Isko 20px ya 10px karne se border line bilkul left me chali jayegi */
    padding-right: 40px !important; /* Right side ke menu links ke liye space */
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Industrial Logo Branding */
.logo {
    display: flex;
    flex-direction: column;
    border-left: 4px solid #ff5722; /* Ye aapki orange border line hai */
    padding-left: 12px;
    
    /* IS LINE KO ADD YA MODIFY KIJIYE: */
    margin-left: 15px; /* Agar aur left le jana hai toh isko -20px ya -30px tak badha sakte hain */
}


.logo-main {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #212529;
    line-height: 1;
    margin-left: -15px;
    padding-left: 12px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6c757d;
    margin-top: 4px;
}

/* Nav Bar Section */
        
       .nav-menu {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: flex-end !important;
            gap: 25px !important;
            position: relative !important;
        }
        
        .nav-menu > a {
            text-decoration: none !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #333333 !important;
            letter-spacing: 0.5px !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 5px !important;
            white-space: nowrap !important;
            transition: color 0.3s ease !important;
        }
        
        .nav-menu > a:hover, .nav-menu > a.active {
            color: #ff5722 !important;
        }
        
        .dropdown-item-container {
            position: relative !important;
            display: inline-block !important;
        }
        
        .dropdown-trigger {
            text-decoration: none !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #333333 !important;
            letter-spacing: 0.5px !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 5px !important;
            white-space: nowrap !important;
            transition: color 0.3s ease !important;
        }
        
        .dropdown-item-container:hover .dropdown-trigger {
            color: #ff5722 !important;
        }
        
        .nav-arrow {
            font-size: 10px !important;
            transition: transform 0.3s ease !important;
        }
        
        .clean-dropdown-box {
            position: absolute !important;
            top: 100% !important;
            left: 50% !important;
            transform: translateX(-50%) translateY(10px) !important;
            background-color: #ffffff !important;
            min-width: 240px !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
            border-top: 3px solid #ff5722 !important;
            border-radius: 0 0 4px 4px !important;
            padding: 10px 0 !important;
            margin-top: 15px !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
            z-index: 99999 !important;
            display: flex !important;
            flex-direction: column !important;
        }
        
        .clean-dropdown-box a {
            display: block !important;
            width: 100% !important;
            padding: 12px 20px !important;
            color: #333333 !important;
            font-size: 13.5px !important;
            font-weight: 600 !important;
            text-transform: none !important;
            letter-spacing: 0px !important;
            text-align: left !important;
            box-sizing: border-box !important;
            transition: background-color 0.2s ease, color 0.2s ease !important;
        }
        
        .clean-dropdown-box a:hover {
            background-color: #fff2ee !important;
            color: #ff5722 !important;
        }
        
        .dropdown-item-container:hover .clean-dropdown-box {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateX(-50%) translateY(0) !important;
        }
        
        .dropdown-item-container:hover .nav-arrow {
            transform: rotate(180deg) !important;
        }


/* 3. HERO SECTION & SLIDER STYLES */

.hero-section {
    position: relative;
    width: 100%;
    /* You can freely scale this height to fit your monitor sizing */
    height: 750px; 
    overflow: hidden;
    background-color: #000; 
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Image scaling mechanics */
.slide-img {
    position: absolute;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    object-fit: fill;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 1200ms ease-in-out, visibility 1200ms ease-in-out;
    z-index: 1;
    transform: scale(1) translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform, opacity;
}

/* Active slide rendering */
.slide-img.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    animation: superSmoothZoom 7000ms linear forwards;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    animation: hardwareSmoothZoom 7000ms ease-in-out forwards;
}

/* Smooth motion effect */
@keyframes ForcefulSmoothZoom {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.04); /* 5% clean fluid continuous zoom in */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; 
    z-index: 3; 
    pointer-events: none; 
}

.hero-content {
    position: absolute; 
    bottom: 12%; 
    left: 60px;
    z-index: 4; 
}

.about-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 balanced columns on desktop */
    gap: 12px; 
    max-width: 550px;
    align-items: start;
    width: 100%;
}

/* Base style for every grid card block */
.gallery-item {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    object-fit: fill !important;
}

/* Height alignments balanced out for clean calculations */
.img-tall {
    height: 260px; 
}

.img-wide {
    height: 180px; 
}

.about-gallery .gallery-item:nth-child(2) {
    margin-top: 30px; /* Increase this (e.g., 20px, 25px) to push it further down */
}

.about-gallery .gallery-item:nth-child(4) {
    margin-top: -65px; /* Adjust this value up or down to eliminate the empty column gap */
}

/* If real HTML <img> tags are used within the layout */
.about-gallery img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

@media (min-width: 769px) {
    .about-gallery .gallery-item:nth-child(2) {
        margin-top: 15px; 
    }
    .about-gallery .gallery-item:nth-child(4) {
        margin-top: -50px; /* Pulls 4th image tightly below 2nd on big monitors */
    }
}

@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: 1fr; /* Switch to a single straight vertical stack layout */
        gap: 15px;
        max-width: 100%;
    }
    
    /* Give all images uniform, proportional heights on mobile so they don't stretch */
    .img-tall, .img-wide, .gallery-item {
        height: 220px !important;
        margin-top: 0 !important; /* Completely cancels the desktop offsets */
        margin-bottom: 0 !important;
    }
}


/* RESPONSIVE DESIGN FOR TABLETS/MOBILES */
@media (max-width: 992px) {
    .nav-menu {
        display: none; /* In a real project, replace this with a hamburger menu toggler */
    }
    .hero-content h1 { font-size: 40px; }
    .hero-content h2 { font-size: 28px; }
}

@media (max-width: 600px) {
    .top-bar { display: none; }
    .main-header { top: 0; }
    .hero-content h1 { font-size: 32px; }
    .hero-content h2 { font-size: 22px; }
}

/* KEYFRAMES FOR THE ZOOM IN & ZOOM OUT EFFECT */
@keyframes slowZoom {
    0% {
        transform: scale(1); /* Normal scale size at start */
    }
    100% {
        transform: scale(1.08); /* Zooms in gently by 8% */
    }
}

/* product section */

.products-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Section Header Typography */
.products-header {
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #555555;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #222222;
    letter-spacing: 1px;
}

/* Responsive 4-Column Grid Sizing */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Individual Product Cards matching reference placeholder shapes */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-img-box {
    width: 100%;
    height: 240px;
    background-color: #f5f5f5; /* Light uniform frame gray backdrop */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Clean image scale containment */
.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keeps product profile crisp and uncropped */
}

/* Gentle drop shadow lift when hovering cards */
.product-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #222222;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Orange Action Link Button Box */
.products-action {
    margin-top: 20px;
}

.view-more-btn {
    display: inline-block;
    background-color: #ff5722; /* Signature corporate orange color */
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.view-more-btn i {
    font-size: 11px;
    margin-left: 6px;
}

.view-more-btn:hover {
    background-color: #e64a19;
    transform: translateY(-1px);
}

/* RESPONSIVE DESIGN FOR SCREEN BREAKPOINTS */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 20px;
    }
    .section-title { font-size: 30px; }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr; /* Single column on phones */
    }
    .product-img-box { height: 200px; }
}



/* footer */

.main-footer {
    background-color: #1a1a1a; /* Dark gray premium canvas */
    color: #aaaaaa; /* Soft gray readable font color */
    padding-top: 60px;
    font-family: 'Montserrat', sans-serif;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col {
    flex: 1;
}

/* Column 1: Brand details styling */
.brand-info p {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 25px;
}

.brand-info .logo-main {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.brand-info .logo-sub {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ff5722; /* Vivid brand orange tracking line */
    display: block;
    margin-top: 2px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ff5722; /* Orange glow shift on mouse hover */
}

/* Column 2: Quick Links Navigation styling */
.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.quick-links a:hover {
    color: #ff5722;
    padding-left: 5px; /* Tiny active offset animation effect */
}

/* Column 3: Contact & Address grid fields */
.contact-item {
    margin-bottom: 18px;
}

.contact-item h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p, 
.contact-item a {
    font-size: 13px;
    line-height: 1.5;
    color: #aaaaaa;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff5722;
}

/* Bottom Bright Copyright bar layout */
.footer-bottom {
    background-color: #ff5722; /* Deep solid orange signature highlight bar */
    color: #ffffff;
    padding: 15px 0;
    font-size: 12px;
}

.bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
    width: 100%;
}

.bottom-content p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN FOR MEDIUM TABLET & MOBILES */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column; /* Stack columns on tiny viewports */
        gap: 30px;
    }
    .bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* icons */

.fb-color { color: #1877F2 !important; }
.insta-color { color: #E4405F !important; }
.ln-color { color: #0077B5 !important; }
.yt-color { color: #FF0000 !important; }

/* about section */

.about-hero {
    background: #f4f6f8;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    padding: 140px 50px 35px 50px; 
    border-bottom: 1px solid #e1e4e6;
    box-sizing: border-box;
    margin-top: 10px;
}

.about-hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
}

.about-hero h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    color: #1a1a1a;
    text-transform: uppercase;
    display: block !important;
    visibility: visible !important;
}

.about-hero p {
    display: none;
}

/* 2. Main Narrative Story Block Area */
.about-story-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content .sub-heading {
    font-size: 12px;
    font-weight: 700;
    color: #ff5722;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 25px;
}

.story-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 18px;
}

.story-content .lead-p {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.6;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: fill;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Floating Badge Overlay over Right Side Image Container */
.exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #ff5722;
    color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
    font-family: 'Montserrat', sans-serif;
    z-index: 5;
    width: 160px;
    min-height: 110px;
}

.exp-badge h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-badge p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. Three Column Vision and Mission Grid Cards Layout */


.vision-mission-section {
    background-color: #f8f9fa; /* Light clean off-white block backdrop */
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

/* Smooth card rising lift transition on hover interactions */
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-bottom: 3px solid #ff5722; /* Pops up an orange underline on hover states */
}

.card-icon {
    font-size: 40px;
    color: #ff5722;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.vision-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #666666;
}

/* RESPONSIVE MEDIA QUERIES BREAKPOINTS */
@media (max-width: 992px) {
    .story-wrapper {
        flex-direction: column; /* Stack details vertically on tablets/mobiles */
        gap: 50px;
    }
    .vision-grid {
        grid-template-columns: 1fr; /* 3 horizontal grids drop into single row layers */
        gap: 25px;
    }
    .story-image img { height: 320px; }
    .exp-badge { bottom: 10px; left: 10px; padding: 15px; }
    .exp-badge h3 { font-size: 24px; }
}

.leadership-section {
    background-color: #ffffff;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.leadership-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-header .sub-heading {
    font-size: 12px;
    font-weight: 700;
    color: #ff5722; /* Signature Brand Orange Color Tint */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.leadership-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #212529;
}

/* Master Executive Grid Box Column Constraints */
.executive-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Expands spatial margin gap breathing room between the two large rows */
    max-width: 1100px;
    margin: 0 auto;
}

/* Individual Content Row Capsule */
.executive-block {
    display: flex;
    background-color: #f8f9fa; /* High-contrast soft slate off-white card backing */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    align-items: center;
    gap: 40px;
    border-left: 4px solid #ff5722; /* Premium brand accent strip line anchor left side */
}

/* Reverses the horizontal row flow specifically for the Managing Director's row block */
.executive-block.reverse-layout {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid #ff5722; /* Shifts structural brand accent strip line to the right side */
}

/* Profiles Column Sizing Constraints (Keeps images uniform and compact) */
.executive-photo-col {
    flex: 0 0 220px; /* Lock solid boundary size width to prevent text from shifting photo sizes */
    text-align: center;
}

.executive-img-box {
    width: 160px;
    height: 160px; /* Fixed small, elegant portrait framework circle layout */
    border-radius: 50%; /* Trims headshot images into perfectly round executive badges */
    overflow: hidden;
    margin: 0 auto 15px auto;
    border: 3px solid #ff5722; /* Encapsulates profile picture inside a matching brand orange ring */
}

.executive-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents portrait face scaling from warping or looking chapti */
}

.executive-photo-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.executive-photo-col .designation {
    font-size: 11.5px;
    font-weight: 700;
    color: #ff5722;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Message Text Block Layout Columns */
.executive-text-col {
    flex: 1;
    position: relative;
}

.quote-icon {
    font-size: 28px;
    color: rgba(255, 87, 34, 0.15); /* Translucent large orange vector quote graphic mark */
    margin-bottom: 10px;
}



/* RESPONSIVE LAYOUT BREAKPOINTS FOR TABLETS & PHONE PORTRAITS */
@media (max-width: 768px) {
    .executive-block, 
    .executive-block.reverse-layout {
        flex-direction: column; /* Collapses horizontal row alignments into single column stacks */
        padding: 30px 20px;
        gap: 25px;
        border-left: 4px solid #ff5722;
        border-right: none;
    }
    .executive-photo-col {
        flex: 1;
    }
    .leader-message {
        text-align: left; /* Changes text block alignment to natural standard left edge layout for small mobile glass viewports */
    }
}

/* contact us */

.contact-section {
    background-color: #f8f9fa; /* Clear soft off-white backdrop */
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: start;
}

/* Left Section Info Grid Fields */
.contact-info-col {
    flex: 1.1;
    color: #333333;
}

.contact-info-col .sub-heading {
    font-size: 12px;
    font-weight: 700;
    color: #ff5722; /* Core corporate brand orange identity color */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-info-col h2 {
    font-size: 34px;
    font-weight: 800;
    color: #212529;
    line-height: 1.25;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 35px;
}

.info-blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item-block {
    display: flex;
    align-items: start;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.info-icon-box {
    font-size: 26px;
    color: #ff5722;
    background: rgba(255, 87, 34, 0.08); /* 8% alpha translucent background pill link */
    width: 55px;
    height: 55px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.info-text-box p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #555555;
}

.info-text-box a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text-box a:hover {
    color: #ff5722;
}
/* map */
.map-card-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #ff5722;
    margin-top: 50px;
}

.map-card-container h3 {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.map-card-container p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
}

/* Wrapper to isolate the map window frame smoothly */
.google-map-frame {
    width: 100%;
    border-radius: 6px;
    overflow: hidden; /* Clips iframe border-radius edge cleanly */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.google-map-frame iframe {
    display: block; /* Removes baseline white gap beneath iframe boxes */
}

/* card details */

/* Right Column: Spec List Descriptions Configurations */
.product-specs-info {
    flex: 1.4;
    color: #333333;
}

/* Orange Highlights Backdrop custom match for your reference visual look */
.features-highlight-list {
    background-color: #ff5722;
    color: #ffffff;
    padding: 30px 30px 30px 50px;
    border-radius: 6px;
    list-style-type: square;
    margin: 0 0 35px 0;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.15);
}

.features-highlight-list li {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.features-highlight-list li:last-child {
    margin-bottom: 0;
}

.application-use-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.application-use-box p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0 0 18px 0;
    text-align: justify;
}