/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Sticky Navbar Container */
.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #0a192f; /* Midnight Navy */
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    border-bottom: 3px solid #f39c12; /* Safety Gold */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Logo & Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    height: 100px;
    width: auto;
    border-radius: 50%; /* Perfect circle for your logo */
    border: 2px solid #f39c12;
    animation: logoFadeIn 1.2s ease-out;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Links Layout */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.btn-quote {
    background-color: #f39c12;
    color: #0a192f;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-quote:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #f39c12;
    border-radius: 2px;
}
/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    overflow: hidden;
    background-color: #000;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Text Readability */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.8), transparent);
}

/* Slide Text Content */
.slide-content {
    position: absolute;
    left: 10%;
    z-index: 10;
    color: white;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f39c12; /* Gold Theme */
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-slider {
    display: inline-block;
    padding: 12px 30px;
    background: #f39c12;
    color: #0a192f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-slider:hover {
    background: white;
    transform: translateY(-3px);
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #f39c12;
}

/* Content Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slide-content h2 { font-size: 2rem; }
    .slide-content { left: 5%; padding-right: 5%; }
}
:root {
    --primary-blue: #1a2b48;
    --accent-red: #d32f2f;
    --text-gray: #555;
}

.services-section {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

/* Grid Layout */
.services-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Card Styling */
.service-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.text-right {
    text-align: right;
    justify-content: flex-end;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Icon Borders */
.service-icon {
    min-width: 60px;
    height: 60px;
    border: 2px solid var(--accent-red);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: auto;
}

/* Central Image */
.services-image {
    flex: 0 0 300px;
    text-align: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        flex-direction: column;
    }
    .text-right {
        text-align: left;
        flex-direction: row-reverse;
    }
    .services-image {
        order: -1;
    }
}
/* Center Column Styling */
.services-image {
    flex: 0 0 350px; /* Adjust width based on your design preference */
    display: flex;
    align-items: flex-end; /* Aligns the man to the bottom of the section */
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-image img {
    max-width: 100%;
    height: auto;
    display: block;
    /* If your image still has a black background, this helps it blend 
       with a white/light section background: */
    mix-blend-mode: screen; 
    
    /* Subtle drop shadow to give depth like the original */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    
    /* Ensures the image doesn't get too tall on large screens */
    max-height: 550px; 
    object-fit: contain;
}

/* Mobile Tweak: Ensure the man stays centered and appropriately sized */
@media (max-width: 992px) {
    .services-image {
        flex: 0 0 auto;
        order: -1; /* Keeps him at the top on mobile */
        margin-bottom: 30px;
    }
    
    .services-image img {
        max-height: 400px;
    }
}
/* Reduce the gap below the title and subtitle */
.section-header {
    margin-bottom: 20px !important; /* Decreased from 50px */
}

/* Ensure the grid doesn't have unnecessary top padding */
.services-grid {
    margin-top: 0 !important;
    padding-top: 0 !important;
    align-items: flex-start; /* Keeps items aligned to the top */
}
.services-image {
    margin-top: -80px; /* Pulls the image upward into the space */
    display: flex;
    align-items: flex-start;
}

.services-image img {
    max-height: 500px; /* Adjust this to prevent the image from pushing the section down */
    width: auto;
}


.achievements-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.header-container {
    margin-bottom: 60px;
    display: inline-block;
    text-align: left;
}

h2 {
    font-size: 2.2rem;
    margin: 0;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #b91c1c;
    margin-top: 10px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.8;
    fill: white;
}

.number-wrapper {
    display: flex;
    align-items: baseline;
}

.number, .symbol {
    font-size: 4rem;
    font-weight: 700;
}

.label {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .number, .symbol { font-size: 3rem; }
    .stats-grid { gap: 40px; }
}

/* Animations */
@keyframes logoFadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .brand-name { font-size: 1rem; }
    
    .hamburger { display: flex; }

    .nav-actions { display: none; }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 83px; /* Just below navbar */
        height: calc(100vh - 83px);
        width: 100%;
        background-color: #0a192f;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .nav-links.active { right: 0; }

    .mobile-only-btn {
        margin-top: 20px;
        background: #f39c12;
        color: #0a192f !important;
        padding: 12px 30px;
        border-radius: 5px;
    }
}
.clients-section {
    padding: 20px 0; /* Reduced height significantly */
    background-color: #ffffff; /* Removed black background */
    text-align: center;
    overflow: hidden;
}

.header-container {
    margin-bottom: 20px;
    display: inline-block;
}

h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
    font-family: sans-serif;
}

.underline {
    width: 45px;
    height: 3px;
    background-color: #b91c1c;
    margin: 5px auto 0;
}

.slider-container2 {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 20vh;
    background-color:white;
}

.logo-track {
    display: flex;
    /* (Width per slide 280px) * (14 total slides) */
    width: calc(280px * 14); 
    animation: scroll 25s linear infinite;
}

.logo-slide {
    width: 280px; /* Increased width to accommodate larger logos */
    height: 120px; /* Specific height for the logo area */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%; /* Increased size of the logo */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-slide img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 7)); }
}

/* Optional: Pause on hover */
.slider-container:hover .logo-track {
    animation-play-state: paused;
}
/* Container Background */
.cta-banner {
    background-color: #1a2332; /* Dark Navy/Blue */
    padding: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 20px;
}

/* Icon Styling */
.icon-box {
    background-color: #ffffff;
    border: 2px solid #c62828; /* Red border from screenshot */
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 60px;
    height: 60px;
}

/* Text Styling */
.cta-text h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.cta-text a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-text a:hover {
    color: #f44336;
}

/* Button Styling */
.inquiry-btn {
    background-color: #c62828;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.inquiry-btn:hover {
    background-color: #e53935;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
.main-footer {
    background-color: #0f172a; /* Slightly darker navy for the footer */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-family: 'Segoe UI', sans-serif;
    border-top: 70px solid #c62828; /* The red accent */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

/* Red underline effect for headers */
.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #c62828;
    margin-top: 8px;
}

.footer-col p {
    line-height: 1.6;
    color: #cbd5e1; /* Soft grey-white for better readability */
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px; /* Subtle slide effect */
}

.footer-logo {
    height: 100px;
    width: auto;
    border-radius: 50%;
    border: 2px solid #f39c12;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 13px;
    color: #94a3b8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        margin: 8px auto 0 auto;
    }
}

.hero-banner {
  position: relative;
  height: 250px; 
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color:white;
  text-align: center;
  
  /* Using a high-quality skyline image that matches your screenshot */
  background: url('images/banner4.jpg') no-repeat center center/cover;
  
  /* This creates the slight 'stretched' cinematic look from your sample */
  background-attachment: scroll; 
}
/*---------about------*/
.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.content-side {
    flex: 2;
    padding-top: 130px;
}

.section-title {
    font-size: 24px;
    border-left: 5px solid var(--primary-blue);
    padding-left: 15px;
    margin-bottom: 20px;
}

.description {
    line-height: 1.6;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Stats Styling */
.stats-grid {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    flex: 1;
    border: 1px solid #ddd;
    border-top: 3px solid var(--accent-red);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-card h3 {
    margin: 0;
    font-size: 2rem;
}

.stat-card p {
    margin: 5px 0 0;
    font-weight: bold;
    font-size: 0.8rem;
    color: var(--accent-red);
}

/* Vision & Mission */
.mission-vision {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.mv-box {
    flex: 1;
    border-left: 2px solid #ccc;
    padding-left: 20px;
}

.mv-box h4 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.1rem;
}

/* Image/Man Height Styling */
.image-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.person-container {
    text-align: right;
    width: 100%;
}

.man-image {
    /* Adjusting height to match the proportion in the image */
    height: 600px; 
    width: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

.caption {
    margin-top: 15px;
    padding-right:120px;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 0.9rem;

}
/*----services---*/
.solutions-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 30px auto;
    flex-wrap: wrap; /* Allows cards to stack on smaller screens */
}

.card {
    background: #fff;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

/* Image Section with Overlay */
.image-wrapper {
    position: relative;
    height: 250px;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    color: white;
    padding: 15px;
    text-align: center;
}

.title-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Text Content Section */
.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Button Styling */
.read-more {
    text-decoration: none;
    display: inline-flex;
    align-self: flex-end; /* Aligns button to the right */
    background-color: #0c0e33; /* Dark Navy */
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    overflow: hidden;
    align-items: center;
}

.read-more:hover {
    background-color: #1a1d52;
}

.read-more {
    padding: 0 0 0 15px;
    height: 40px;
}

.arrow {
    background-color: #c42021; /* Red arrow box */
    padding: 10px 12px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .solutions-container {
        flex-direction: column;
        align-items: center;
    }
}
/*contact*/

.contact-container {
display: flex;
    width: 90%;
    max-width: 1100px;
    height: 600px; /* Consistent height for the split look */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Map Section - Exactly 50% */
.map-section {
    flex: 1; 
    height: 100%;
}

.map-section iframe {
    display: block; /* Removes tiny gap at bottom of iframe */
}

/* Form Section - Exactly 50% */
.form-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.contact-form h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 5px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;

}
.contact-form button:hover {
    background-color: #0056b3;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }
    .map-section {
        height: 350px;
        width: 100%;
    }
    .form-section {
        width: 100%;
        padding: 40px 20px;
    }
}

/* Fixed Display Container */
.fixed-container {
    width: 100%;
    max-width: 1100px; /* Limits width for large screens */
    margin: 40px auto;
    padding: 20px;
}

.content-header {
    text-align: center;
    margin-bottom: 40px;
}

.tag {
    color: #00d4ff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: bold;
}

.content-header h1 {
    font-size: 2.8rem;
    margin: 10px 0;
}

/* The Display Card - Fixed Grid */
.display-card {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 Split */
    background: #101827;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the space without distortion */
    display: block;
}

.info-area {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-area h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.info-area p {
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 35px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
}

.feature-list i {
    color: #00d4ff;
}

/* Button Fixed at bottom of text area */
.action-btn {
    background: #00d4ff;
    color: #050b16;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    width: fit-content;
}

.action-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .display-card {
        grid-template-columns: 1fr; /* Stacks image and text on mobile */
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
}
/* ============================================================
   RESPONSIVENESS: TABLETS (Up to 1024px)
   ============================================================ */
@media screen and (max-width: 1024px) {
    /* Adjust Navbar spacing */
    .navbar {
        padding: 10px 3%;
    }

    /* Adjust the Bespoke Services Grid */
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .services-column {
        width: 100%;
        gap: 20px;
    }

    /* Reset right-aligned text for better flow */
    .text-right {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }

    /* Achievements section adjustment */
    .stats-grid {
        gap: 30px;
    }
}

/* ============================================================
   RESPONSIVENESS: MOBILE PHONES (Up to 768px)
   ============================================================ */
@media screen and (max-width: 768px) {
    /* Branding adjustment */
    .brand-name {
        font-size: 1rem;
    }

    /* Slider adjustments */
    .slider-container {
        height: 60vh; /* Shorter height for mobile */
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Bespoke Services Image - Make it less dominant */
    .services-image {
        margin-top: 20px;
        flex: 0 0 auto;
    }

    .services-image img {
        max-height: 300px;
    }

    /* Stats/Achievements text size */
    .number, .symbol {
        font-size: 2.5rem;
    }

    /* CTA Banner adjustment */
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cta-text h2 {
        font-size: 18px;
    }

    /* Footer adjustment */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        margin: 8px auto 0 auto;
    }

/* --- Tablet View (max-width: 1024px) --- */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 10px 3%; /* Reduce padding for more space */
    }

    .slide-content h2 {
        font-size: 2.5rem; /* Slightly smaller text for tablets */
    }

    .container {
        max-width: 95%; /* Expand containers to use more screen width */
    }
}

/* --- Mobile View (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    /* Navbar Adjustments */
    .hamburger {
        display: flex; /* Show the hamburger menu icon */
    }

    .nav-links {
        display: none; /* Hide the standard menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column; /* Stack links vertically */
        background-color: #0a192f;
        padding: 20px;
        text-align: center;
    }

    /* Show links when 'active' class is added via JavaScript */
    .nav-links.active {
        display: flex;
    }

    .nav-actions {
        display: none; /* Hide buttons like "GET A QUOTE" to save space */
    }

    /* Slider/Hero Section */
    .slider-container {
        height: 60vh; /* Reduce height for smaller screens */
    }

    .slide-content {
        left: 5%;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Grid/Column Adjustments */
    .services-section .container {
        display: flex;
        flex-direction: column; /* Stack services vertically */
    }
    
    .footer-container {
        grid-template-columns: 1fr; /* Single column footer */
        text-align: center;
    }
}
/* ============================================================
   SPECIFIC MOBILE OPTIMIZATION (PHONES ONLY)
   ============================================================ */
@media screen and (max-width: 768px) {
    /* Stack the text and image vertically */
    .about-container {
        flex-direction: column; /* Stacks children vertically */
        padding: 20px;
        gap: 20px;
    }

    .content-side, .image-side {
        width: 100%; /* Ensure both sections take full width */
        flex: none;
    }

    /* Adjust the Mission/Vision columns to stack on top of each other */
    .mission-vision {
        display: flex;
        flex-direction: column; /* Stack mission and vision vertically */
        gap: 15px;
        margin-top: 20px;
    }

    .mv-box {
        border-left: 3px solid #b91c1c; /* Keep the red accent line */
        padding-left: 15px;
    }

    /* Center and resize the owner image for mobile */
    .image-side {
        order: 2; /* Ensures the image comes AFTER the text */
        text-align: center;
    }

    .man-image {
        height: auto;
        max-height: 350px; /* Prevent the image from being too tall */
        width: 80%; /* Shrink slightly for a cleaner look */
        margin: 0 auto;
    }

    .caption {
        padding-right: 0; /* Remove the large padding from desktop */
        text-align: center;
        width: 100%;
    }

    /* Adjust typography for mobile readability */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .description {
        font-size: 1rem;
        text-align: justify;
    }
}/* ============================================================
   RESPONSIVENESS: TABLETS (Up to 1024px)
   ============================================================ */
@media screen and (max-width: 1024px) {
    /* Hide the central security guard image for tablets */
    .services-image {
        display: none !important;
    }

    /* Adjust the grid to fill the space left by the hidden image */
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .services-column {
        width: 100%;
        gap: 20px;
    }

    /* Align all service cards to the left for better readability */
    .text-right {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
}

/* ============================================================
   RESPONSIVENESS: MOBILE PHONES (Up to 768px)
   ============================================================ */
@media screen and (max-width: 768px) {
    /* Hide the central security guard image for mobile */
    .services-image {
        display: none !important;
    }

    /* Stack everything vertically */
    .about-container {
        flex-direction: column;
        padding: 20px;
    }

    /* Ensure the Mission and Vision columns stack vertically */
    .mission-vision {
        flex-direction: column;
        gap: 20px;
    }

    /* Adjust image sizing for the Owner/Director */
    .man-image {
        height: auto;
        max-height: 350px;
        width: 100%;
    }

    /* Adjust the main slider height for smaller screens */
    .slider-container {
        height: 50vh;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }
}/* ============================================================
   SOLUTIONS PAGE RESPONSIVENESS (PHONES & TABLETS)
   ============================================================ */

/* --- Tablet View (max-width: 1024px) --- */
@media screen and (max-width: 1024px) {
    .solutions-container {
        padding: 20px;
        gap: 20px;
        /* Creates a 2-column grid for tablets */
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
    }

    .card {
        max-width: 100%; /* Allow cards to fill the grid cells */
    }

    .hero-banner {
        height: 200px; /* Slightly shorter banner for tablets */
    }
}

/* --- Mobile Phone View (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    .solutions-container {
        /* Switches to a single column for phones */
        grid-template-columns: 1fr; 
        padding: 15px;
    }

    .card {
        min-width: 100%;
    }

    .image-wrapper {
        height: 200px; /* Reduce image height to save vertical space */
    }

    .title-overlay h3 {
        font-size: 1rem; /* Slightly smaller titles */
    }

    .card-content {
        padding: 15px;
    }

    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* Hero Section Adjustment */
    .hero-content h1 {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .hero-banner {
        height: 180px;
    }
}