

:root {
    --primary-color: #002e5f;
    --secondary-color: #8f94fb;
    --accent-color: #002e5f;
    --accent-light: #6bff00;
    --dark-color: #1f1f25;
    --light-color: #f8f9fa;
    --text-color: #6f6f83;
    --heading-color: #1f1f25;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius: 12px;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Manrope:wght@700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-color);
    line-height: 1.7;
    scroll-behavior: smooth;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--heading-color);
    font-weight: 800;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: inherit;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(78, 84, 200, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 84, 200, 0.6);
}

.btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    margin-left: 15px;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    margin-top: -96px;
}

.section-title h2 {
    font-size: 39px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title .subtitle {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 25px;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.header-top {
    background-color: var(--dark-color);
    padding: 10px 0;
    color: white;
    font-size: 14px;
    position: relative;
    z-index: 1000;
}

.header-top::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.header-top-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-info i {
    color:white;
    margin-right: 8px;
}

.header-top-social {
    display: flex;
    justify-content: flex-end;
}

.header-top-social a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
    display: inline-block;
}

.header-top-social a:hover {
    color: var(--accent-light);
    transform: translateY(-3px);
}

/* Main Navigation */
.main-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

 

        
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 28px;
            color: var(--dark-color);
            display: flex;
            align-items: center;
        }
        
        .imgLogo {
            width: auto;
            height: 55px;
            transition: transform 0.5s ease;
        }
        
        .imgLogo:hover {
            transform: scale(1.05);
        }
        
        .navbar-nav {
            display: flex;
            flex-direction: row;
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            gap:25px
        }
        
        .nav-item {
            margin: 0 8px;
            position: relative;
           font-size: 18px;
           color: black !important;
           font-weight: bold;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--dark-color);
            padding: 15px 0 !important;
            position: relative;
            transition: var(--transition);
        }
        
        /* Underline effect on hover */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Dropdown menu styles */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 15px 0;
            margin-top: 12px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-item {
            padding: 10px 25px;
            font-weight: 500;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 18px;
            width: 25px;
        }
        
        .dropdown-item:hover {
            background-color: rgba(78, 107, 255, 0.1);
            color: var(--primary-color);
            padding-left: 30px;
        }
        
        .dropdown-toggle::after {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }
        
        /* Special dropdown for Products */
        .products-dropdown .dropdown-menu {
            min-width: 250px;
        }
        
        .products-dropdown .dropdown-item {
            border-left: 3px solid transparent;
        }
        
        .products-dropdown .dropdown-item:hover {
            border-left-color: var(--primary-color);
        }
        
        /* Special dropdown for Services */
        .services-dropdown .dropdown-menu {
            min-width: 280px;
        }
        
        .services-dropdown .dropdown-item {
            border-bottom: 1px solid #f1f1f1;
        }
        
        .services-dropdown .dropdown-item:last-child {
            border-bottom: none;
        }
        
        /* Special dropdown for About Us */
        .about-dropdown .dropdown-menu {
            min-width: 220px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            background-color: #3a56e0;
            border-color: #3a56e0;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(78, 107, 255, 0.3);
        }
        
        /* Mobile Menu */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background: white;
                z-index: 1050;
                padding: 80px 30px 30px;
                transition: all 0.5s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
            }
            
            .navbar-collapse.show {
                left: 0;
            }
            
            .navbar-nav {
                flex-direction: column;
                margin-top: 20px;
            }
            
            .nav-item {
                margin: 5px 0;
                width: 100%;
            }
            
            .nav-link {
                padding: 12px 15px !important;
                border-bottom: 1px solid #f1f1f1;
                display: block;
            }
            
            .nav-link::after {
                display: none;
            }
            
            .btn {
                margin-top: 20px;
                width: 100%;
            }
            
            /* Dropdown styles for mobile */
            .dropdown-menu {
                box-shadow: none;
                border-radius: 0;
                padding: 0;
                margin: 0;
                border-left: 3px solid var(--primary-color);
                background-color: #f9f9f9;
            }
            
            .dropdown-item {
                padding: 10px 15px 10px 40px;
            }
            
            .dropdown-toggle::after {
                float: right;
                margin-top: 8px;
            }
            
            /* Mobile menu header */
            .mobile-menu-header {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                padding: 15px 20px;
                background: var(--primary-color);
                color: white;
                display: flex;
                align-items: center;
                justify-content: space-between;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }
            
            .mobile-menu-header h6 {
                color: white;
                font-size: 20px;
                margin: 0;
            }
            
            .close-menu {
                background: none;
                border: none;
                color: white;
                font-size: 24px;
                cursor: pointer;
            }
            
            /* Overlay when menu is open */
            .menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1040;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            .menu-overlay.show {
                opacity: 1;
                visibility: visible;
            }
        }
        
        /* Desktop styles */
        @media (min-width: 992px) {
            .mobile-menu-header, .close-menu, .menu-overlay {
                display: none !important;
            }
            
            .navbar-toggler {
                display: none;
            }
        }       

  
/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-area {
    background: linear-gradient(135deg, #1f1f25, #2d2d38);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;    
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.3s both;
}

.hero-btns {
    animation: fadeIn 1s ease 0.6s both;
}

.hero-carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-carousel .carousel-item {
    height: 400px;
}

.hero-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
    margin-top:200px;   
    color:black 
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

@media (max-width: 600px) {
  .hero-content p {
   
    font-size: 12px;
  }
}

/* ==========================================================================
   Services Section - Enhanced with Animations
   ========================================================================== */

.services-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(78, 84, 200, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(143, 148, 251, 0.03) 0%, transparent 25%);
    z-index: 0;
}

.service-box {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 46, 95, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 46, 95, 0.08);
    transform: translateY(0);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 46, 95, 0.12);
    border-color: transparent;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-box:hover::before {
    /* opacity:1; */   
   
}

.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
    transform: scale(1);
}

.service-box:hover .service-icon {
    animation: iconBounce 0.8s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.service-box h3 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.service-box h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
    transition: all 0.4s ease;
    transform-origin: left;
}

.service-box:hover h3::after {
    width: 60px;
}

.service-box p {
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Animation for card entrance */
.service-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }
.service-box:nth-child(5) { animation-delay: 0.5s; }
.service-box:nth-child(6) { animation-delay: 0.6s; }

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

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .service-box {
        padding: 30px 25px;
    }
    
    .service-icon {
        font-size: 54px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 80px 0;
    }
    
    .service-box {
        margin-bottom: 25px;
    }
   .weOffer{
         font-size:12px !important;
   
      }
}
/* ==========================================================================
   Customer Logo
   ========================================================================== */
.customers-section {
    background-color: #f9fafc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.marquee-container {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.marquee-header h4 {
    margin: 0;
    font-size: 24px;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: all 0.3s ease;
}

.marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.marquee-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.marquee-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .marquee-header h4 {
        font-size: 20px;
    }
    
    .marquee-item {
        width: 160px;
        height: 80px;
        margin: 0 15px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
   .AboutSub{
         margin-top:83px !important;
         }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    padding: 120px 0;
    background-color: #f9f9f9;
    position: relative;
}

.about-image {
    position: relative;
    padding-right: 50px;
    perspective: 1000px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transform: rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover img {
    transform: rotateY(0deg);
}

.exp-box {
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(78, 84, 200, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(78, 84, 200, 0); }
    100% { box-shadow: 0 0 0 0 rgba(78, 84, 200, 0); }
}

.exp-box h2 {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 0;
    line-height: 1;
}

.about-content .feature-list {
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    transition: var(--transition);
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 18px;
}


/*===========================================================================
  How It Work
  ===========================================================================*/
  .how-it-works {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f9fafc 0%, #eef2f5 100%); */
    background-color:#0d0d0d;
    position: relative;
    overflow: hidden;
    margin-top:-100px;
}

.container1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #eaeef2;
    font-weight: 700;
    position: relative;
}

.section-title1:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle1 {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-left .timeline-step {
    transform: translateX(-50px);
    opacity: 0;
}

.timeline-right .timeline-step {
    transform: translateX(50px);
    opacity: 0;
}
/* Animated state */
.timeline-left .timeline-step.animate {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.timeline-right .timeline-step.animate {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
/* Staggered animations */
.timeline-step.animate:nth-child(1) { transition-delay: 0.1s; }
.timeline-step.animate:nth-child(2) { transition-delay: 0.3s; }
.timeline-step.animate:nth-child(3) { transition-delay: 0.5s; }
.timeline-step.animate:nth-child(4) { transition-delay: 0.7s; }
.timeline-step.animate:nth-child(5) { transition-delay: 0.9s; }
.timeline-step.animate:nth-child(6) { transition-delay: 1.1s; }
.timeline-container {
    display: flex;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-left, .timeline-right {
    flex: 1;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.timeline-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    z-index: 3;
}

.timeline-left .step-number {
    right: -20px;
}

.timeline-right .step-number {
    left: -20px;
}

.step-content {
    background: white;
    padding: 23px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        padding-top: 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-left, .timeline-right {
        padding: 0;
    }
    
    .timeline-step {
        margin-bottom: 40px;
        min-height: auto;
    }
    
    .timeline-left .step-number, 
    .timeline-right .step-number {
        left: 20px;
        right: auto;
        top: 20px;
    }
    
    .step-content {
        padding: 25px 25px 25px 70px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    #hero-sec{
        font-size: 1rem !important;
    }
    .how-it-works{
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 20px 20px 20px 60px;
    }
    
    .section-title1 {
        font-size: 1.8rem;
    }
    
    .section-subtitle1 {
        font-size: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .how-it-works{
        margin-top: 0px;
    }
}

/*==========================================================================
Security Section
============================================================================*/
.advisory-services {
    padding: 100px 0;
    color: black;
    position: relative;
    overflow: hidden;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: black;
    font-weight: 700;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title2.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle2 {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.section-subtitle2.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-tabs {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.services-tabs.animate {
    opacity: 1;
    transform: translateY(0);
}

.tab-buttons {
    display: flex;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: white;
}

.tab-btn.active {
    color: white;
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: black;
}

.service-features {
    list-style-type: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: black;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.image-content:hover img {
    transform: scale(1.03);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .image-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 15px;
        text-align: center;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .section-title2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .section-title2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle2 {
        font-size: 1rem;
    }
    
    .text-content h3 {
        font-size: 1.5rem;
    }
}
/*===========================================================================
WHY CHOOSE
============================================================================*/
.why-choose-us {
    padding: 100px 0;
    background-color: #0d0d0d;
    color: white;
    position: relative;
    overflow: hidden;
}

.containerwhy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-titlewhy {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #eaeef2;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-titlewhy:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitlewhy {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.08);
    border-color: rgba(52, 152, 219, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.feature-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px;
}

.feature-stats {
    background: rgba(52, 152, 219, 0.1);
    padding: 10px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 10px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Staggered animations */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .section-titlewhy {
        font-size: 2.2rem;
    }
    
    .section-subtitlewhy {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 70px 0;
    }
    
    .section-titlewhy {
        font-size: 1.8rem;
    }
    
    .section-subtitlewhy {
        font-size: 1.1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px;
    }
}

/* ==========================================================================
   Counter Section
   ========================================================================== */

.counter-section {
    padding: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
    
}

.counter-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.counter-box::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transition);
}

.counter-box:hover::before {
    width: 120px;
    height: 120px;
}

.counter-box i {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
    opacity: 0.9;
}

.counter-box h2 {
    font-size: 50px;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
}

.counter-box p {
    font-weight: 500;
    opacity: 0.9;
}
/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.portfolio-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #f9f9f9;
    z-index: 0;
}

.portfolio-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-filter button {
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 20px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
}

.portfolio-filter button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
    color: var(--primary-color);
}

.portfolio-filter button.active::after {
    width: 40px;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: translateY(0);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-item-inner {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(31, 31, 37, 0.9), rgba(78, 84, 200, 0.7));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-content {
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 22px;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 14px;
}

.view-all-btn {
    text-align: center;
    margin-top: 50px;
}
  @media (max-width: 768px) {
            .portfolio-section {
                padding: 60px 0;
            }
            
            .portfolio-filter {
                gap: 5px;
                margin-bottom: 30px;
            }
            
            .portfolio-filter button {
                padding: 6px 14px;
                font-size: 13px;
            }
            
            .portfolio-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 18px;
            }
            
            .portfolio-item-inner {
                height: 220px;
            }
            
            .portfolio-overlay {
                padding: 20px;
            }
            
            .portfolio-content h4 {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .portfolio-section {
                padding: 50px 0;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .portfolio-filter {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            
            .portfolio-filter button {
                width: 100%;
                text-align: center;
            }
            
            .portfolio-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .portfolio-item-inner {
                height: 250px;
            }
        }

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

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

/* ==========================================================================
   Blog Section
   ========================================================================== */

.blog-section {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.blog-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    height: 100%;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-meta span {
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.blog-meta i {
    color: var(--accent-color);
    margin-right: 5px;
    font-size: 14px;
}

.blog-content h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.blog-content h4 a {
    color: var(--heading-color);
    transition: var(--transition);
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    margin-left: 10px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
    /* background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 30%); */
}

.cta-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 36px;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-btn {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
/* ==========================================================================
   Footer Section
   ========================================================================== */

.footer-section {
    padding: 100px 0 0;
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 22px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-about p {
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
}

.newsletter-form input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: none;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    border: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none !important;
}

.footer-social a:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}

.copyright {
    margin-bottom: 0;
    font-size: 14px;
}


/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 50px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-carousel {
        margin-top: 50px;
        transform: none;
    }
    
    .about-image {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .exp-box {
        bottom: -30px;
    }
    
    .navbar-nav {
        padding-top: 20px;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .header-top {
       display: none;
    }
    
   
    .btn-outline-light {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .portfolio-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 10px;
        width: 100%;
    }
}

 /* WhatsApp Icon */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 100px; /* Positioned above the arrow */
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: blink 2s infinite;
            text-decoration: none;
        }

        /* Scroll to top arrow */
        .scroll-to-top {
            position: fixed;
            width: 50px;
            height: 50px;
            bottom: 40px; /* Positioned below the WhatsApp icon */
            right: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 20px;
            box-shadow: 2px 2px 3px #999;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: #0056b3;
            transform: translateY(-5px);
        }

        /* Blinking animation */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.6; }
            100% { opacity: 1; }
        }