
        /* --- General Setup --- */
        body {
            background-color: #0b111a; /* Dark background color */
            color: #ffffff; /* Default text color */
            font-family: 'Montserrat', sans-serif; /* Applied Google Font */
            overflow-x: hidden; /* Prevents horizontal scrolling */
        }

        /* ===== FULL SCREEN LOADER ===== */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Center Content */
.loader-content {
    text-align: center;
}

/* Logo Image */
.logo {
    width: 180px;
    animation: pulse 1.5s infinite alternate;
}

/* Smooth Zoom Animation */
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
/* Full screen loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a; /* blue background */
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Logo size */
.loader-logo {
    width: 40vh;
    height: 40vh;
    
}

/* Center everything nicely */
#loader p {
    font-size: 25px;
}

        /* --- Navbar Styling --- */
        .custom-navbar {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle bottom border */
        }
        
        /* Logo Styling */
        .navbar-brand {
            font-weight: 900;
            font-size: 1.5rem;
            line-height: 1;
            letter-spacing: 1px;
        }
        .navbar-brand span {
            display: block;
            font-size: 0.65rem;
            font-weight: 400;
            letter-spacing: 2px;
            color: #a0aabf;
        }

        /* Navigation Links */
        .nav-link {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 12px;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #007bff !important; /* Turns blue on hover */
        }

        /* Top Right Icons (Search & Cart) */
        .nav-icon-btn {
            background-color: #ffffff;
            color: #000000;
            width: 35px;
            height: 35px;
            border-radius: 50%; /* Makes it a perfect circle */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-left: 15px;
            font-size: 0.9rem;
            transition: transform 0.2s ease;
        }
        .nav-icon-btn:hover {
            transform: scale(1.1); /* Slight grow effect on hover */
        }
        /* Custom Dropdown Hover Color to match theme */
.dropdown-menu-dark .dropdown-item {
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: #007bff; /* Bright blue background on hover */
    color: #ffffff;
}
        /* --- Hero Section Styling --- */
        .hero-section {
            padding: 80px 0;
            min-height: 85vh; /* Takes up at least 85% of screen height */
            display: flex;
            align-items: center; /* Vertically centers the content */
            position: relative;
        }
        .hero-title {
      font-size: 60px;
      font-weight: bold;
    }

    .hero-subtitless {
      font-size: 18px;
      margin-top: 20px;
      color: #ccc;
    }

    #typing-word {
      color: #00d4ff;
      border-right: 3px solid #00d4ff;
      padding-right: 5px;
    }
  

        /* Left Side Text */
        .hero-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: #a0aabf;
            margin-bottom: 25px;
            line-height: 1.6;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        /* Buttons */
        .btn-custom {
            padding: 14px 30px;
            border-radius: 50px; /* Pill shape */
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .btn-outline-dark {
            background-color: #2a3342;
            color: #ffffff;
            border: none;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        .btn-outline-dark:hover {
            background-color: #3b475c;
            color: white;
        }

        .btn-primary-blue {
            background-color: #0066cc;
            color: #ffffff;
            border: none;
            margin-bottom: 15px;
        }
        .btn-primary-blue:hover {
            background-color: #005bb5;
            color: white;
        }

        /* Floating bottom-left icon */
        .floating-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background-color: #004b99;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }

        /* --- Right Side Graphics & Responsiveness --- */
        
        /* Wrapper needed to hold the absolute-positioned nodes over the image */
        .graphics-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        /* sevice  */
        .service-card {
        transition: all 0.3s ease;
        border: 1px solid #eaeaea;
        border-radius: 10px;
        background: #fff;
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #0d6efd; /* Primary color border on hover */
    }
    .icon-box {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #e9ecef;
        color: #0d6efd;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .dark-service-section {
        background-color: #0f172a; /* Deep tech blue/black */
        color: #f8fafc;
    }
    .dark-card {
        background: #1e293b;
        border: 1px solid #334155;
        border-radius: 12px;
        transition: 0.3s ease;
    }
    .dark-card:hover {
        background: #253348;
        border-color: #38bdf8; /* Light blue glow effect */
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
    }
    .service-link {
        color: #38bdf8;
        text-decoration: none;
        font-weight: 600;
        transition: 0.2s;
    }
    .service-link:hover {
        color: #bae6fd;
        text-decoration: underline;
    }

        /* The circular node styling */
        .info-node {
            position: absolute;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            border: 1px solid rgba(0, 102, 204, 0.6);
            background-color: transparent;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 10;
        }
        .info-node:hover {
            background-color: rgba(0, 102, 204, 0.2);
            box-shadow: 0 0 15px rgba(0, 102, 204, 0.5);
        }

        /* Positioning the nodes using percentages so they scale with the image */
        .node-1 { top: 5%; left: 15%; }
        .node-2 { top: 15%; right: 5%; }
        .node-3 { top: 45%; left: -5%; }
        .node-4 { bottom: 15%; right: 15%; }
        .node-5 { bottom: 5%; left: 20%; }

        /* The background circle wireframe (simulated) */
        .circle-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 85%;
            aspect-ratio: 1/1; /* Keeps it a perfect circle */
            border-radius: 50%;
            border: 1px solid rgba(0, 102, 204, 0.2);
            z-index: 1;
        }

        /* The Drone Image */
        .drone-img {
            width: 100%;
            height: 455px;
            max-width: 450px; /* Limits size on huge screens */
            position: relative;
            z-index: 5;
            display: block;
            margin: 0 auto;
        }

        /* --- Media Queries for Mobile Responsiveness --- */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem; /* Smaller title on tablets/phones */
            }
            .hero-section {
                text-align: center; /* Center text on mobile */
                padding: 40px 0;
            }
            .graphics-wrapper {
                margin-top: 50px; /* Space between text and image on mobile */
            }
            /* Hide the bottom-left floating badge on mobile to save space */
            .floating-badge {
                display: none; 
            }
            /* Make nodes slightly smaller on mobile */
            .info-node {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }
    
/* about section */
/* ==============================================
   ABOUT US SECTION (WHITE THEME) STYLING
   ============================================== */
.about-section-light {
    background-color: #ffffff; /* Pure white background */
    padding: 100px 0;
    color: #333333; /* Dark gray default text */
    overflow: hidden; 
}

/* Subtitle */
.section-subtitle-light {
    color: #0b0c0c; /* Bright blue */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Main Heading */
.about-title-light {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1a1e24; /* Very dark navy/black for high contrast */
}

/* Paragraph text */
.about-description-light {
    color: #555555; /* Medium gray for readable body text */
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Bulleted List */
.about-list-light li {
    font-size: 1.05rem;
    color: #222222; /* Almost black for list items */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.about-list-light li i {
    color: #101011; /* Bright blue checkmarks */
    font-size: 1.3rem;
    margin-right: 15px;
}

/* --- Image and Floating Box Styling (Light Mode) --- */
.about-img-wrapper-light {
    position: relative;
    z-index: 1;
}

.floating-stat-box-light {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: #ffffff; /* White card */
    border-left: 4px solid #121213; /* Blue accent line */
    padding: 25px 35px;
    border-radius: 8px;
    /* Soft, elegant shadow for the white theme */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); 
    z-index: 2;
}

.stat-number-light {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1e24; /* Dark text */
    margin-bottom: 0;
    line-height: 1;
}

.stat-text-light {
    color: #666666; /* Gray text */
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .about-title-light {
        font-size: 2.2rem;
    }
    
    .floating-stat-box-light {
        bottom: -15px;
        right: 15px;
        padding: 15px 25px;
    }
    
    .stat-number-light {
        font-size: 2rem;
    }
}

/* sevice section */
/*/* ==============================================
   SERVICES IMAGE GRID SECTION (WHITE THEME)
   ============================================== */
.professional-services-section-light {
    background-color: #f8f9fa; /* Soft light grey background */
    padding: 100px 0;
    color: #333333;
}

/* --- Header Text Styling --- */
.section-subtitle-light {
    color: #0066cc;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.services-main-title-light {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1a1e24; /* Dark contrast color */
}

.services-main-desc-light {
    color: #555555; /* Medium grey for readability */
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.6;
}

/* --- Image Grid Styling --- */
.grid-img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden; /* Keeps the zoomed image inside the box */
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Soft shadow for light theme */
    cursor: pointer;
    min-height: 200px; /* Base height for stacked images */
    background-color: #ffffff;
}

/* The Image itself */
.grid-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops perfectly without stretching */
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth, high-end zoom */
    z-index: 0;
}

/* Hover Effect: Zoom the image in */
.grid-img-container:hover img {
    transform: scale(1.08);
}

/* Dark Gradient Overlay (Ensures white text is always readable over photos) */
.grid-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
    pointer-events: none; /* Allows clicks to pass through to the image */
}

/* The Text Overlay inside the image */
.grid-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2; /* Sits above the dark gradient */
    transition: transform 0.3s ease;
}

/* Slight text bump up when you hover over the image */
.grid-img-container:hover .grid-text-overlay {
    transform: translateY(-5px);
}

/* --- The Blue Button Styling --- */
.btn-blue {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px; /* Gives it the pill shape */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #004b99;
    color: #ffffff;
    transform: translateY(-2px); /* Button lifts up slightly on hover */
}        /* testinmonal  */
        /* --- Testimonials Section Styling --- */
.testimonials-section {
    background-color: #0b111a;
    padding: 80px 0 100px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden; /* Prevents arrows from causing horizontal scroll */
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Swiper Overrides --- */
.testimonials-swiper {
    padding: 20px 10px; /* Gives room for the hover shadow/lift effect */
}

.swiper-slide {
    height: auto; /* Ensures all cards stretch to the same height */
}

/* --- Individual Testimonial Card --- */
.feedback-card {
    background-color: #212833;
    padding: 40px 30px;
    border-radius: 5px;
    height: 100%; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.quote-text {
    color: #a0aabf;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

/* --- Author Info Formatting --- */
.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.author-details p {
    font-size: 0.85rem;
    color: #a0aabf;
    margin-bottom: 0;
}

/* --- Slider Navigation Arrows --- */
.slider-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.slider-arrow:hover {
    background-color: #0056b3;
}

.slider-arrow.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.arrow-prev { left: 0px; }
.arrow-next { right: 0px; }

/* --- Pagination Dots --- */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    position: static !important; /* Overrides default swiper absolute positioning */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #4a5568 !important;
    opacity: 1 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background-color: #ffffff !important;
    transform: scale(1.3);
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
    .slider-arrow { display: none; } /* Hide arrows on mobile, rely on swipe */
}

/* feature section */
/* ==============================================
   FEATURES VIDEO TABS SECTION STYLING
   ============================================== */
.features-tabs-section {
    /* Deep gradient going from very dark blue to a subtle dark purple/blue */
    background: linear-gradient(135deg, #02050d 0%, #060d24 50%, #110e2d 100%);
    padding: 120px 0;
    color: #ffffff;
}

.features-main-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

/* --- Custom Tab Navigation Styling --- */
.custom-feature-tabs {
    border-bottom: none;
}

.custom-feature-tabs .nav-link {
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Thin subtle line between items */
    padding: 25px 0;
    color: #6c757d; /* Greyed out inactive text color */
    border-radius: 0;
    transition: all 0.3s ease;
    width: 100%;
}

/* Hover effect on inactive tabs */
.custom-feature-tabs .nav-link:hover:not(.active) {
    color: #a0aabf;
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.custom-feature-tabs .nav-link h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

/* Hide paragraph description by default */
.custom-feature-tabs .nav-link .tab-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d1d5db;
    transition: all 0.4s ease-in-out;
}

/* --- ACTIVE TAB STATE --- */
.custom-feature-tabs .nav-link.active {
    color: #ffffff;
    background: transparent;
    border-bottom: 2px solid #ffffff; /* Thicker white line for active item */
}

/* Show paragraph description when tab is active */
.custom-feature-tabs .nav-link.active .tab-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

/* Ensure the video fills its container smoothly */
.video-feature {
    object-fit: cover;
    background-color: #000; /* Fallback color while loading */
}

/* Responsiveness for text */
@media (max-width: 991px) {
    .features-main-heading {
        font-size: 2.2rem;
    }
    .custom-feature-tabs .nav-link h3 {
        font-size: 1.8rem;
    }
}
/* footer  */
/* ==============================================
   FOOTER SECTION STYLING
   ============================================== */
.site-footer {
    background-color: #080c13; /* Slightly darker than the body for separation */
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Montserrat', sans-serif;
}

.footer-brand {
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
}

.footer-brand span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #a0aabf;
    margin-top: 4px;
}

.footer-heading {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-text {
    color: #a0aabf;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #007bff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-link,
.footer-links a {
    color: #a0aabf;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-links a:hover {
    color: #007bff;
}

/* Newsletter Form */
.newsletter-form .custom-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px; /* Pill shape */
    padding: 12px 20px;
    font-size: 0.9rem;
}

.newsletter-form .custom-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #007bff;
    box-shadow: none;
    outline: none;
    color: #ffffff;
}

.newsletter-form .custom-input::placeholder {
    color: #6c757d;
}

/* Ensure the blue button matches the theme */
.newsletter-form .btn-primary-blue {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.newsletter-form .btn-primary-blue:hover {
    background-color: #0056b3;
}
/* team section */
/* ==============================================
   OUR TEAM SECTION STYLING (SWIPER - WHITE THEME)
   ============================================== */
.team-section-light {
    background-color: #ffffff; 
    padding: 100px 0;
    color: #333333;
    overflow: hidden; /* Prevents horizontal scroll from arrows */
}

/* Header Text */
.team-main-title-light {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1a1e24; 
}

.team-main-desc-light {
    color: #555555; 
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.6;
}

/* --- Team Cards (Light Mode) --- */
.team-swiper {
    /* Padding allows the drop shadow on hover to not get cut off by overflow */
    padding: 10px 10px 30px; 
}

.team-swiper .swiper-slide {
    height: auto; /* Makes all cards equal height */
}

.team-card-light {
    background-color: #ffffff; 
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #eaeaea; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
    height: 100%;
    transition: all 0.4s ease;
}

.team-card-light:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); 
    border-color: transparent;
}

/* Profile Image */
.team-img-wrapper-light {
    margin-bottom: 25px;
    display: inline-block;
    border-radius: 50%;
    padding: 5px; 
    border: 2px dashed rgba(0, 102, 204, 0.3); 
    transition: all 0.4s ease;
}

.team-img-light {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff; 
}

.team-card-light:hover .team-img-wrapper-light {
    border-color: #0066cc; 
    transform: scale(1.05);
}

/* Text & Typography */
.team-name-light {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1e24; 
}

.team-role-light {
    color: #0066cc; 
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Icons */
.team-social-light a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f1f3f5; 
    color: #6c757d; 
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.team-social-light a:hover {
    background-color: #0066cc; 
    color: #ffffff; 
    transform: translateY(-3px);
}

/* --- Team Slider Controls --- */
.team-slider-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    color: #0066cc;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.team-slider-arrow:hover {
    background-color: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

.team-arrow-prev { left: -10px; }
.team-arrow-next { right: -10px; }

/* Hide arrows on smaller screens so they don't block the cards */
@media (max-width: 1200px) {
    .team-slider-arrow { display: none; }
}

/* Team Pagination Dots */
.team-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: static !important; /* Overrides default swiper absolute positioning */
}

.team-slider-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cccccc !important; /* Light grey dots */
    opacity: 1 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.team-slider-dots .swiper-pagination-bullet-active {
    background-color: #0066cc !important; /* Blue active dot */
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .team-main-title-light {
        font-size: 2rem;
    }
}
/* contact us  */
/* ==============================================
   CONTACT US SECTION STYLING (DARK THEME)
   ============================================== */
.contact-section {
    background-color: #edeef3; /* Very deep blue/black to contrast the white team section */
    padding: 100px 0;
    color: #0a0a0a;
}

/* Typography */
.contact-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-desc {
    color: #a0aabf;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 102, 204, 0.1);
    color: #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background-color: #007bff;
    color: #0e0c0c;
    transform: translateY(-3px);
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #110f0f;
}

.contact-info-text {
    color: #8a95a5;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-link {
    color: #8a95a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff;
}

/* --- Contact Form Card --- */
.contact-form-card {
    background-color: #111622; /* Slightly lighter dark slate */
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

/* Custom Dark Inputs */
.custom-form-input {
    background-color: rgba(255, 255, 255, 0.03); /* Glass-like dark background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #0f0d0d;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Change placeholder color */
.custom-form-input::placeholder {
    color: #6c757d;
}

/* Dropdown select specific styling */
select.custom-form-input {
    color: #6c757d; /* Matches placeholder color initially */
}
select.custom-form-input option {
    background-color: #111622;
    color: #ffffff;
}

/* Input Focus State (Glowing Blue Border) */
.custom-form-input:focus {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.15); /* Soft blue glow */
    color: #ffffff;
}

/* Button utility class */
.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-main-title {
        font-size: 2.2rem;
    }
    .contact-form-card {
        padding: 40px 25px;
    }
}
/* gallery section */
/* ==============================================
   IMAGE GALLERY SECTION STYLING (WHITE THEME)
   ============================================== */
.gallery-section-light {
    background-color:  #060913;; /* Soft light grey background */
    padding: 100px 0;
    color: #333333;
}

/* Header Text */
.section-subtitle-light {
    color: #0066cc;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.gallery-main-title-light {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #a1a2a3; /* Dark contrast color */
}

.gallery-main-desc-light {
    color: #b1afaf; /* Medium grey text */
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.6;
}

/* --- Gallery Grid Items --- */
.gallery-item-light {
    position: relative;
    overflow: hidden; 
    cursor: pointer;
    background-color: #ffffff; /* White background behind image */
    border: 5px solid #ffffff; /* Creates a clean white photo frame effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft resting shadow */
    transition: all 0.4s ease;
}

.gallery-item-light:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); /* Deeper shadow on hover */
    transform: translateY(-5px); /* Lifts the whole frame up slightly */
}

/* The Images */
.gallery-img-light {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    display: block;
    border-radius: 2px; /* Slight rounding inside the white frame */
}

/* The Hover Overlay */
.gallery-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.75); /* Deep transparent blue overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transition: opacity 0.4s ease;
}

.gallery-overlay-light i {
    color: #ffffff; /* White magnifying glass */
    font-size: 2.5rem;
    transform: scale(0.5); 
    transition: transform 0.4s ease;
}

/* --- Hover Effects --- */
.gallery-item-light:hover .gallery-img-light {
    transform: scale(1.1); /* Zooms the image in slightly */
}

.gallery-item-light:hover .gallery-overlay-light {
    opacity: 1; /* Fades the blue overlay in */
}

.gallery-item-light:hover .gallery-overlay-light i {
    transform: scale(1); /* Magnifying glass pops up to full size */
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .gallery-main-title-light {
        font-size: 2.2rem;
    }
    .gallery-img-light {
        height: 250px; 
    }
}
/* Custom Styles */
        .hero-sectionw {
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1920') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .text-primary-custom {
            color: #0d6efd;
        }
        .value-card {
            border: none;
            background: #f8f9fa;
            border-radius: 10px;
            transition: 0.3s;
            height: 100%;
        }
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(221, 205, 205, 0.1);
        }
        .icon-wrapper {
            width: 60px;
            height: 60px;
            background: #e9ecef;
            color: #0d6efd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }