

body,html{
      font-family: "Chivo", sans-serif !important;
}

        * {
            box-sizing: border-box;
        }

/* --- THEME VARIABLES --- */
    :root {
        --theme-navy: #061a3a;
        --theme-orange: #ff8e2b;
        --text-dark: #1a1a1a;
        --white: #ffffff;
    }
a{
    text-decoration: none  !important;
}

    /* --- 1. TOP BAR --- */
    .top-bar {
       
        font-size: 14px;
        font-weight: 500;
       
    }
    .top-bar .container-fluid{
 background-color: var(--theme-navy);
        color: var(--white);
        padding: 15px;
        padding-right: 20px;
        padding-left: 20px;
        max-width: 1500px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;

    }
    .navbar .container-fluid{
        max-width: 1400px;
    }
    .tb-icon { color: var(--theme-orange); font-size: 13px; margin-right: 6px; }
    .social-link { color: var(--white); transition: 0.3s; margin-left: 15px; }
    .social-link:hover { color: var(--theme-orange); }

    /* --- 2. MAIN NAVBAR --- */
    .navbar-custom {
        background: var(--white);
        padding:0px 0 !important;
        transition: all 0.3s ease;
        box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    }

    /* Sticky Animation State */
    .navbar-custom.scrolled {
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 10px 0; /* Shrink slightly on scroll */
    }

    .navbar-brand img { max-height: 105px; width: auto; transition: 0.3s; }

    /* Desktop Links Styling */
    .nav-link {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--theme-navy) !important;
        padding: 10px 38px !important;
        border-radius: 30px;
        transition: 0.3s;
    }

    .nav-link:hover, .nav-link.active {
        background-color: var(--theme-navy);
        color: var(--white) !important;
    }

.dropdown-toggle::after{
    display: none !important;
}
/* 2. Make Navbar Sticky */
#mainNav {
    /* This makes it stick to the top when you scroll past the top bar */
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 50px;
    z-index: 1020;
    background-color: #fff; /* Ensure background is solid */
    transition: box-shadow 0.3s ease;
}

/* 3. Style for when the user has scrolled (added via JS) */
#mainNav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* Adds shadow when sticky */
}
    /* Dropdown Hover Logic (Desktop Only) */
    @media (min-width: 992px) {
        .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }

    /* --- Premium Dropdown Styling --- */

/* 1. The Container */
.dropdown-menu.service-dropdown {
    border: none;
    border-radius: 0; /* Square professional edges */
    border-top: 3px solid #ff9900; /* Orange Accent Bar */
    padding: 0;
    margin-top: 15px; /* Spacing from nav */
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Deep shadow */
    min-width: 260px; /* Wider to fit text comfortably */
    display: block; /* Required for animation setup */
    
    /* Hidden State for Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. Reveal Animation on Hover */
.nav-item:hover .dropdown-menu.service-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
}

/* 3. The List Items */
.service-dropdown .dropdown-item {
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    border-bottom: 1px solid #f4f4f4;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

/* Remove border from last item */
.service-dropdown li:last-child .dropdown-item {
    border-bottom: none;
}

/* 4. The Icon Styling */
.service-dropdown .dropdown-item i {
    color: #ff9900; /* Orange icons initially */
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

/* 5. HOVER EFFECT (The Slide) */
.service-dropdown .dropdown-item:hover {
    background-color: #0e2038; /* Navy Blue background */
    color: #ffffff;
    padding-left: 35px; /* This creates the Slide Effect */
}

/* Change icon color to white on hover */
.service-dropdown .dropdown-item:hover i {
    color: #ffffff;
}

/* Optional: Add a tiny accent line on the left during hover */
.service-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: #ff9900;
    transition: width 0.3s;
}

.service-dropdown .dropdown-item:hover::before {
    width: 4px;
}

    /* --- ACTIONS --- */
    .search-btn-circle {
        width: 45px; height: 45px;
        background-color: var(--theme-navy);
        color: var(--white);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; transition: 0.3s;
    }
    .search-btn-circle:hover { background-color: var(--theme-orange); }

    .btn-lets-talk {
        background-color: var(--theme-orange) !important;
        color: var(--white) !important;
        padding: 12px 32px !important;
        border-radius: 50px !important;
        font-size: 13px  !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        border: none;
        transition: 0.3s;
    }
    .btn-lets-talk:hover { background-color: var(--theme-navy); color: #fff; }

    /* --- MOBILE OFFCANVAS --- */
    .offcanvas { width: 300px !important; }
    .offcanvas-header { justify-content: space-between; }
    .mobile-nav-link {
        font-size: 14px; font-weight: 600; color: var(--theme-navy);
        padding: 12px 0; border-bottom: 1px solid #eee; display: block; text-decoration: none;
    }
    .mobile-dropdown-list { list-style: none; padding-left: 15px; background: #f9f9f9; display: none; }
    .mobile-dropdown-list.show { display: block; }
    .mobile-dropdown-list li a { padding: 10px 0; display: block; font-size: 13px; color: #555; text-decoration: none; }

    /* --- FLOATING BUTTONS --- */
    .left-float-buttons { position: fixed; top: 50%; left: 0; transform: translateY(-50%); z-index: 1500; display: flex; flex-direction: column; }
    .btn-floating { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: #d01818; color: #fff; text-decoration: none; transition: 0.3s; font-size: 20px; }
    .btn-floating:hover { width: 55px; color: #fff; }
    .btn-floating + .btn-floating { border-top: 1px dashed #fff; }

    /* --- GO TOP --- */
    #goTopBtn {
        position: fixed; bottom: 20px; right: 20px;
        background: var(--theme-orange); color: #fff;
        width: 40px; height: 40px; border-radius: 5px;
        display: none; align-items: center; justify-content: center;
        cursor: pointer; border: none; z-index: 1050;
    }

@media screen and (min-width:300px) and (max-width:768px) {
    .navbar{
    top: 0px;
}
}


/* caorusel */
/* --- 1. DESIGN TOKENS --- */
:root {
  --theme-orange: #ff5100; /* High-Energy Orange */
  --theme-black: #0a0a0a;
  --theme-white: #ffffff;
}


/* --- 2. LAYOUT & HEIGHT --- */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: 100%; /* Almost full screen */

  overflow: hidden;
}

.carousel-item {
  height: 85vh;

}


.img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slight movement effect */
  animation: subtlePan 10s infinite alternate ease-in-out;
}

@keyframes subtlePan {
  0% { transform: scale(1); object-position: center; }
  100% { transform: scale(1.1); object-position: center; }
}

/* The "Mask" - This creates the black-to-transparent fade */
.gradient-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This gradient makes text readable on left, image visible on right */
  background: linear-gradient(90deg, 
    #000000 0%, 
    rgba(0,0,0,0.95) 25%, 
    rgba(0,0,0,0.6) 50%, 
    rgba(0,0,0,0) 100%);
  z-index: 2;
}

/* --- 4. TYPOGRAPHY (The Magazine Look) --- */
.content-layer {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-left: 8%; /* Indent */
}

.text-group {
  max-width: 650px;
  color: var(--theme-white);
}

/* The small "Category" text */
.tag-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--theme-orange);
  margin-bottom: 20px;
  font-weight: 700;
}
/* Orange dash before text */
.tag-line::before {
  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--theme-orange);
}

/* The Massive Headline */
.mega-title {
  font-family: 'Anton', sans-serif;
  font-size: 5rem; /* Huge font */
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
  /* Cool outline effect on the span */
}
.mega-title span {
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-white);
  display: block; /* Put on new line */
}

.description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}

/* --- 5. MODERN BUTTONS --- */
.action-area {
  display: flex;
  gap: 0; /* Connected buttons */
}

.btn-sharp {
  padding: 20px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid var(--theme-orange);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-fill {
  background: var(--theme-orange);
  color: #000;
}
.btn-fill:hover {
  background: #fff;
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* --- 6. CONTROLS & PROGRESS BAR --- */

/* Square Controls Bottom Right */
.controls-box {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 10;
  background: #111;
}



/* Add .controls-box before the class to make it stronger than Bootstrap */
.controls-box .carousel-control-prev, 
.controls-box .carousel-control-next {
  position: relative; /* This ensures they sit inside your box */
  width: 50px;
  height: 50px;
  opacity: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  margin: 0; /* Reset any Bootstrap margins */
}

/* Add hover effect for better visibility */
.controls-box .carousel-control-prev:hover, 
.controls-box .carousel-control-next:hover {
  background: var(--theme-orange);
  border-color: var(--theme-orange);
}

/* The Animated Progress Bar */
.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}
.progress-bar-fill {
  height: 100%;
  background: var(--theme-orange);
  width: 0;
}

/* Animation trigger for progress bar */
.carousel-item.active .progress-container .progress-bar-fill {
  width: 100%;
  /* Duration matches the data-bs-interval (6s) */
  transition: width 6s linear; 
}
/* Important: Reset width when not active */
.carousel-item:not(.active) .progress-container .progress-bar-fill {
  width: 0;
  transition: none;
}

/* --- 7. ENTRANCE ANIMATIONS --- */
.carousel-item.active .animate-in {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

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

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .cinematic-hero, .carousel-item { height: 85vh; }
  .mega-title { font-size: 3.5rem; }
  
  /* On mobile, gradient goes from bottom up */
  .gradient-mask {
    background: linear-gradient(0deg, 
    #000000 0%, 
    rgba(0,0,0,0.95) 40%, 
    rgba(0,0,0,0) 100%);
  }
  
  .content-layer {
    padding-left: 20px;
    padding-right: 20px;
    align-items: flex-end; /* Text at bottom */
    padding-bottom: 120px; /* Space for controls */
  }
  
  .description {
    display: none; /* Hide desc on mobile for cleaner look */
  }
  
  .action-area {
    flex-direction: row;
    width: 100%;
  }
  .btn-sharp { width: 50%; text-align: center; padding: 15px 0; }
  
  /* Hide big controls on mobile, just swipe */
  .controls-box { display: none; } 
}

/* section2 */

  /* --- 1. Variables --- */
        :root {
            --primary-blue: #0B1B35;
            --primary-orange: #F58634;
            --light-bg: #f4f6f9;
            --text-grey: #666;
            --card-shadow: 0 10px 30px rgba(11, 27, 53, 0.08);
            --hover-shadow: 0 20px 40px rgba(245, 134, 52, 0.15);
        }


         .why-choose-us {
            padding: 40px 0;
        }

        /* --- 2. Header --- */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .badge {
            color: var(--primary-orange);
            background: rgba(245, 134, 52, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title h2 {
            font-size: 42px;
            color: var(--primary-blue);
            font-weight: 700;
            margin: 0;
        }

        /* --- 3. The Unique Card Design --- */
        .feature-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            position: relative;
            overflow: hidden; /* Clips the watermark number */
            transition: all 0.4s ease;
            height: 100%; /* Ensures equal height in grid */
            border-bottom: 4px solid transparent;
            box-shadow: var(--card-shadow);
            z-index: 1;
        }

        /* Hover Effect */
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
            border-bottom: 4px solid var(--primary-orange);
        }

        /* The Watermark Number (01, 02..) */
        .watermark-number {
            position: absolute;
            top: -10px;
            right: 0px;
            font-size: 100px;
            font-weight: 900;
            color: rgba(11, 27, 53, 0.03); /* Very subtle opacity */
            line-height: 1;
            z-index: -1;
            transition: all 0.4s ease;
        }

        .feature-card:hover .watermark-number {
            color: rgba(245, 134, 52, 0.08); /* Turns orange-tinted on hover */
            transform: scale(1.1);
        }

        /* Icon Styling */
        .icon-wrapper {
            width: 70px;
            height: 70px;
            background-color: #fff;
            border: 2px dashed var(--primary-orange); /* Unique dashed border */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .icon-wrapper i {
            font-size: 28px;
            color: var(--primary-orange);
            transition: all 0.4s ease;
        }

        .feature-card:hover .icon-wrapper {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }

        .feature-card:hover .icon-wrapper i {
            color: #fff;
        }

        /* Text Styling */
        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--text-grey);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Grid spacing fix */
        .row-gap {
            row-gap: 30px;
        }




        /* sheros-section */

     

        /* --- HERO SECTION --- */
        .hero-section {
            background: 
                linear-gradient(rgba(26, 31, 36, 0.85), rgba(26, 31, 36, 0.9)), 
                url('images/banner-blur-bg.jpg'); 
            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            
            padding-top: 80px; /* Top spacing */
            padding-bottom: 0px; /* Image touches bottom */
            min-height: 85vh; /* Ensure it takes up most of the screen */
            
            color: #fff;
            
            /* FLEX SETTINGS - UPDATED */
            display: flex;
            align-items: stretch; /* Allows the row to fill the height */
            position: relative;
            overflow: hidden; 
        }

        /* --- LEFT COLUMN TEXT --- */
        .hero-section .sub-title {
            color: #ff5e14;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .hero-section .sub-title i {
            font-size: 14px;
        }

        .hero-section .main-title {
            font-size:40px; /* Adjusted for better balance */
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .hero-section .description {
            color: #b0b0b0;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 45px;
            max-width: 90%;
            font-weight: 500;
        }

        /* --- ACTION AREA (Button + Phone) --- */
        .hero-section .action-group {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px; 
        }

        .hero-section .btn-theme {
            background-color: #ff5e14;
            color: #fff;
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: 0.3s;
            text-decoration: none;
        }

        .hero-section .btn-theme:hover {
            background-color: #fff;
            color: #ff5e14;
        }

        .hero-section .btn-theme i {
            transform: rotate(45deg);
            font-size: 14px;
        }

        .hero-section .phone-wrapper {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .hero-section .phone-icon-circle {
            width: 55px;
            height: 55px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1f24;
            font-size: 20px;
            transition: 0.3s;
        }

        .hero-section .phone-wrapper:hover .phone-icon-circle {
            background-color: #ff5e14;
            color: #fff;
        }

        .hero-section .phone-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-section .phone-text span {
            font-size: 14px;
            color: #5fa5f8;
            font-weight: 700;
            margin-bottom: 2px;
            text-transform: capitalize;
        }

        .hero-section .phone-text a {
            color: #ffffff;
            font-size: 20px;
            font-weight: 800;
            text-decoration: none;
            line-height: 1.2;
        }

        /* --- RIGHT COLUMN (Image & Badge) --- */
        .hero-section .image-column {
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-end; /* This aligns the image inside the column to the bottom */
            justify-content: center;
        }

        .hero-section .hero-person-img {
            max-width: 100%;
            height: auto;
            position: relative;
            bottom: -5px; 
            z-index: 1;
        }

        /* --- BADGE STYLING (Added support for SVG) --- */
         .hero-section  .rotating-badge {
            position: absolute;
          top: 57%;
    right: 116px;
    width: 130px;
    height: 130px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
        }

         .hero-section   .rotating-text {
            width: 100%;
            height: 100%;
            animation: spin 15s linear infinite;
        }
        
        /* Styles the text inside the SVG */
           .hero-section .rotating-text text {
            font-size: 26px;
            font-weight: 700;
            font-family: 'Manrope', sans-serif;
            fill: #1a1f24; 
            letter-spacing: 2px;
        }

          .hero-section  .badge-icon {
            position: absolute;
            font-size: 24px;
            color: #ff5e14;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        /* --- RESPONSIVE FIXES --- */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 100px;
                text-align: center;
                height: auto;
                display: block; /* Disable flex centering on mobile */
            }
            .sub-title { justify-content: center; }
            .main-title { font-size: 40px; }
            .description { margin: 0 auto 40px auto; }
            .action-group { justify-content: center; gap: 20px; }
            
            /* On mobile, reset image alignment */
            .col-lg-6.align-self-end {
                align-self: auto !important;
            }
            .image-column { margin-top: 50px; }
            .rotating-badge { right: 10%; top: -20px; }
          
        }


/* about us */
       /* --- 1. CSS VARIABLES --- */
        :root {
            --primary-orange: #ff5e14;
            --dark-blue: #0b1b35;
            --text-grey: #686868;
            --white: #ffffff;
            --light-bg: #f4f7fa;
            --gradient: linear-gradient(135deg, #0b1b35 0%, #162a4b 100%);
        }

       

        /* --- 2. LAYOUT --- */
        .about_us {
            padding: 40px 0;
            background-color: var(--white);
            overflow: hidden;
        }


      

   

        /* --- 3. IMAGE & ROTATING BADGE --- */
        .image-wrapper {
            position: relative;
            z-index: 1;
            padding-right: 30px;
            margin-bottom: 30px;
        }

        .main-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            /* min-height: 550px; */
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .rotating-badge {
            position: absolute;
            top: 40px; /* Moved to bottom for better balance */
            right: -20px;
            width: 150px;
            height: 150px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            z-index: 2;
        }

        .rotating-text {
            width: 100%; height: 100%;
            animation: spin 20s linear infinite;
        }

        .rotating-text text {
            font-size: 18.5px;
            font-weight: 800;
            letter-spacing: 3px;
            fill: var(--dark-blue);
        }

        .badge-icon {
            position: absolute;
            font-size: 32px;
            color: var(--primary-orange);
        }

        @keyframes spin { 100% { transform: rotate(360deg); } }

        /* --- 4. TEXT CONTENT --- */
        .content-wrapper { padding-left: 40px; }

        /* Subheader */
               .about_us .sub-title {
            color: var(--primary-orange);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            background: rgba(255, 94, 20, 0.08);
            display: inline-flex;
            padding: 8px 16px;
            border-radius: 30px;
        }

        /* Heading */
        h2.main-title {
            font-size: 40px;
            line-height: 1.2;
            color: var(--dark-blue);
            margin: 0 0 20px 0;
            font-weight: 800;
        }

        .description {
            color: var(--text-grey);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* --- 5. INFO GRID (List + Contact) --- */
        .info-grid {
            display: flex;
            flex-direction: column; /* Stacked layout for cleaner look with lots of data */
            gap: 30px;
            border-top: 1px solid #eee;
            padding-top: 30px;
        }

        /* Feature List (Grid Layout) */
        .service-list {
            list-style: none;
            padding: 0; margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 Columns */
            gap: 15px 20px;
        }

          .about_us  .service-list li {
            position: relative;
            padding-left: 25px;
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 15px;
            display: flex;
            align-items: center;
        }

          .about_us  .service-list li i {
            position: absolute;
            left: 0;
            color: var(--primary-orange);
            font-size: 14px;
        }

        /* Contact Box (The "Stunning" Part) */
        .contact-box {
            background: var(--gradient);
            padding: 25px 30px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            box-shadow: 0 10px 30px rgba(11, 27, 53, 0.2);
            margin-top: 10px;
        }

        .contact-text small {
            display: block;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .contact-text a {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            line-height: 1;
            transition: 0.3s;
        }

        .contact-text a:hover { color: var(--primary-orange); }

        .call-icon-circle {
            width: 50px; height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-orange);
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .col-left, .col-right { flex: 0 0 100%; max-width: 100%; }
            .col-left { margin-bottom: 50px; padding-right: 15px; }
            .content-wrapper { padding-left: 0; }
            h2.main-title { font-size: 32px; }
            .rotating-badge { width: 100px; height: 100px; bottom: 20px; right: 20px; }
            .badge-icon { font-size: 24px; }
        }

    



        
        /* marqwu */
         /* --- MODERN MARQUEE STYLES --- */
        .service-marquee {
            background-color: #ff5e14; /* Theme Orange */
            padding: 22px 0; /* Slightly slimmer for modern look */
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 10;
            box-shadow: 0 4px 20px rgba(255, 94, 20, 0.3); /* Soft glow shadow */
        }

        .marquee-track {
            display: flex;
            align-items: center;
            width: fit-content;
            animation: scroll-left 25s linear infinite; /* Slower, smoother scroll */
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 20px; /* Tighter gap for modern feel */
            padding-right: 60px; /* More space between items */
        }

        .marquee-text {
            color: #ffffff;
            font-size: 25px; /* Requested size */
            font-weight: 700;
            text-transform: uppercase; /* Modern, clean look */
            letter-spacing: 1px; /* Adds elegance */
            font-family: 'Manrope', sans-serif;
            margin: 0;
        }

        .marquee-icon {
            color: rgba(255, 255, 255, 0.8); /* Slightly transparent icon */
            font-size: 18px; /* Smaller icon size */
            transform: rotate(-45deg);
        }

        /* The Animation */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Hover Effect: Pause and brighten */
        .service-marquee:hover .marquee-track {
            animation-play-state: paused;
        }


        @media screen and (min-width:300px)  and (max-width:768px){
            .top-bar{
                display: none;
            }
            #letsbtn{
                display: none;
            }
            #mainNav{
                top: 0;
            }
            .content-layer{
                top: 0;
            }
            .section-title h2{
                font-size: 27px;
            }
            section{
                padding: 10px 0px !important;
            }
            .hero-section .main-title{
                font-size: 27px;
            }
            .image-column {
        margin-top: 0px;
        margin-bottom: 22px;
        }
        .image-wrapper{
            padding-right: 0px;
            margin-bottom: 0px;;
        }
        .service-list { grid-template-columns: 1fr; } /* 1 column on mobile */
         
            .contact-text a { font-size: 24px; }
            .service-marquee {
                   padding: 29px 4px;
            }
            .marquee-text{
                font-size: 18px;
            }
            .slider-section .section-header h2 {
                     font-size: 27px !important;
                     margin-top: 10px;
                   }
                  
                   li{
                    list-style: none;
                   }
        }