/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Hero Search Overlay Styles */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    width: 85%;
    max-width: 700px;
}

.hero-content {
    background: transparent;
    padding: 35px 25px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
    border: none;
    box-shadow: none;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.search-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 0.95rem;
    background: transparent;
    color: #333;
    border-radius: 45px;
    font-weight: 500;
}

.search-input::placeholder {
    color: #666;
    font-weight: 400;
}

.search-btn {
    background: linear-gradient(135deg, #034f9d 0%, #0066cc 50%, #4A90E2 100%);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(3, 79, 157, 0.4);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(3, 79, 157, 0.6);
    background: linear-gradient(135deg, #0066cc 0%, #4A90E2 50%, #667eea 100%);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.search-suggestion-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
}

.search-suggestion-item:hover {
    background-color: #f8f9fa;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .carousel-caption-custom {
        width: 90%;
        max-width: 500px;
    }
    
    .hero-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .search-container {
        max-width: 380px;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .carousel-caption-custom {
        width: 95%;
        max-width: 350px;
    }
    
    .hero-content {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        max-width: 300px;
        margin-bottom: 18px;
    }
    
    .search-container {
        max-width: 320px;
    }
    
    .search-input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
    }
}

/* Global responsive improvements */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container improvements */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    overflow-x: hidden;
}

/* Row improvements */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* Mobile-first responsive columns */
@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-12 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    
    .row > [class*="col-"] {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Text responsive improvements */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.1rem !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.3rem !important; }
    h3 { font-size: 1.1rem !important; }
    h4 { font-size: 1rem !important; }
}

/* Image responsive improvements */
img {
    max-width: 100%;
    height: auto;
}

/* Statistics section responsive improvements */
.stat-item {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .stat-item {
        text-align: center;
        margin-bottom: 40px;
    }
}

/* Client logos responsive improvements */
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

/* Blog Card Styles */
.blog-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #034f9d, #0066cc);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(3, 79, 157, 0.3);
}

.blog-date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h4 {
    color: #034f9d;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h4 {
    color: #0066cc;
}

.blog-content p {
    color: #5f6870;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #888;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #034f9d;
}

.read-more {
    color: #034f9d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0066cc;
    gap: 12px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Section Styles */
.blogs-section {
    padding: 60px 0;
}

.blogs-header {
    text-align: center;
    margin-bottom: 50px;
}

.blogs-header .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blogs-header .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #034f9d, #0066cc);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.blogs-header .section-description {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Expandable content animations */
.expanding {
    animation: expandContent 0.3s ease-out;
}

@keyframes expandContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.full-content {
    transition: all 0.3s ease;
}

.short-content {
    transition: all 0.3s ease;
}

/* Enhanced read more button */
.read-more .button-text {
    transition: all 0.3s ease;
}

.read-more:hover .button-text {
    color: #764ba2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-card {
        margin-bottom: 30px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h4 {
        font-size: 18px;
    }
    
    .blogs-header .section-title {
        font-size: 28px;
    }
}


/* Enhanced Responsive Design Improvements */

/* Base container improvements */
.container1 {
    /* background-image: url("/Images/right-words.png"); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* keeps the background fixed */
    width: 100%;
     /* makes sure it fills at least full screen height */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Improved slider responsiveness */
#imageSlider {
    margin-top: 0; /* Remove space below header */
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100vh; /* Full viewport height for all slider images */
    object-fit: cover; /* Ensures images cover the area without distortion */
}

/* Mobile-first slider adjustments */
@media (max-width: 768px) {
    #imageSlider {
        height: 60vh; /* Reduced height on mobile */
    }
    
    .carousel-item img {
        height: 60vh;
    }
    
    .container1 {
        background-attachment: scroll; /* Fixed backgrounds can cause issues on mobile */
    }
}

@media (max-width: 480px) {
    #imageSlider {
        height: 50vh; /* Even smaller on very small screens */
    }
    
    .carousel-item img {
        height: 50vh;
    }
}

/* Fade transition effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive carousel controls */
@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        width: 8%;
    }
}

#header{
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* Modern glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0; /* Increased padding for better visual balance */
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle border */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); /* Soft shadow */
}

/* Header with enhanced background when scrolled */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* Header container for proper alignment */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px; /* Increased horizontal padding */
}

.logo {
    height: 75px; /* Slightly reduced for better proportion */
    margin-left: 0; /* Removed margin for cleaner alignment */
    flex-shrink: 0;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.logo:hover {
    transform: scale(1.05); /* Subtle hover animation */
}

.nav-menu {
    display: flex;
    gap: 35px; /* Increased gap for better spacing */
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50; /* Professional dark color */
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 18px; /* Better padding for click area */
    border-radius: 25px; /* Rounded buttons */
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #034f9d 0%, #0066cc 100%); /* Beautiful gradient */
    transform: translateY(-2px); /* Lift effect */
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); /* Glow effect */
}

/* Dropdown styling improvements */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-menu li a {
    color: #2c3e50;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 2px 8px;
    background: transparent;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #034f9d 0%, #0066cc 100%);
    color: white;
    transform: translateX(5px);
}

/* Desktop navigation menu - visible by default */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        left: auto !important;
        top: auto !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Hide mobile menu toggle on desktop by default */
.mobile-menu-toggle {
    display: none;
}

/* Tablet responsive styles - Medium screens between 768px and 1075px */
@media (min-width: 768px) and (max-width: 1075px) {
    .header {
        padding: 0 25px !important;
        max-width: 100% !important;
    }
    
    .logo {
        height: 65px !important;
        margin-left: 0 !important;
    }
    
    .nav-menu {
        gap: 20px !important;
    }
    
    .nav-menu li a {
        font-size: 13px !important;
        padding: 10px 14px !important;
        font-weight: 600 !important;
    }
    
    /* Adjust dropdown for medium screens */
    .dropdown-menu {
        min-width: 160px !important;
    }
    
    .dropdown-menu li a {
        font-size: 12px !important;
        padding: 8px 16px !important;
    }
    
    /* Hide mobile menu toggle on tablet */
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    #header {
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        padding: 12px 0 !important;
    }
    
    .header {
        padding: 0 20px !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .logo {
        height: 55px !important;
        margin-left: 0 !important;
        margin-right: 10px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: scale(1.05);
    }
    
    .hamburger-line {
        width: 24px;
        height: 3px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none !important;
    }
}

/* Enhanced Statistics Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #034f9d 0%, #0066cc 50%, #4A90E2 100%);
    color: white;
    text-align: center;
    font-family: "Poppins", Sans-serif !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.stats-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    font-family: "Poppins", Sans-serif !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.stats-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.stats-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.stats-grid {
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 20px 15px;
    margin-bottom: 30px;
    font-family: "Poppins", Sans-serif !important;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-icon {
    margin-bottom: 25px;
    position: relative;
}

.icon-background {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.stat-card:hover .icon-background {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.icon-background svg {
    color: #034f9d;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    z-index: 1;
    position: relative;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-family: "Poppins", Sans-serif !important;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    color: #FFED4E;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: white;
    font-family: "Poppins", Sans-serif !important;
    text-transform: uppercase;
}

.stat-description {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Poppins", Sans-serif !important;
    line-height: 1.4;
    font-style: italic;
}

/* Enhanced Responsive Design for Stats */
@media (max-width: 992px) {
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-main-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-card {
        padding: 35px 20px;
    }
    
    .icon-background {
        width: 70px;
        height: 70px;
    }
    
    .icon-background svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-main-title {
        font-size: 2rem;
    }
    
    .stats-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        margin: 0 -10px;
    }
    
    .stat-item {
        margin-bottom: 25px;
        padding: 10px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .icon-background {
        width: 60px;
        height: 60px;
    }
    
    .icon-background svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-main-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .stats-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .stats-grid {
        margin: 0 -5px;
    }
    
    .stat-item {
        margin-bottom: 20px;
        padding: 5px;
    }
    
    .stat-card {
        padding: 20px 10px;
        margin: 0;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .stat-description {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .icon-background {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .icon-background svg {
        width: 25px;
        height: 25px;
    }
    
    .stats-divider {
        width: 60px;
        height: 3px;
    }
}
    


/* Mobile-only styles */
@media (max-width: 768px) {
    /* Override Bootstrap d-flex class on mobile */
    .nav-menu.d-flex {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column !important;
        padding: 80px 0 20px 0;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        margin-right: 0 !important;
        gap: 0 !important;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex !important;
        overflow-y: auto;
        will-change: left;
        backface-visibility: hidden;
    }
    
    /* Show mobile menu when active - slide in from left */
    .nav-menu.d-flex.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 5px 19px !important;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
        display: block !important;
        margin: 0 !important;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .nav-menu li a {
        color: inherit;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li:hover {
        background-color: #f8f9fa;
        color: #2181C2 !important;
        padding-left: 30px !important;
    }
   
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown-menu {
        position: static !important;
        background: #f8f9fa !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .nav-menu .dropdown-menu li {
        padding: 15px 35px !important;
        border-bottom: 1px solid #e0e0e0 !important;
        font-size: 14px !important;
        background: #f8f9fa;
    }
    
    .nav-menu .dropdown-menu li:hover {
        background-color: #e9ecef !important;
        padding-left: 40px !important;
    }
    
    .logo {
        height: 45px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px; /* Even smaller logo on very small screens */
        margin-left: 10px;
    }
    
    .mobile-menu-toggle {
        margin-right: 10px;
    }
    
    .nav-menu.d-flex {
        width: 85%;
        padding-top: 70px;
    }
}





.nav-menu li {
    color: #838383 !important; /* Updated color with !important */
    text-decoration: none;
    font-family: "Poppins", Sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative; /* For dropdown positioning */
}

/* Animated border bottom effect */
.nav-menu li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #034f9d, #0066cc);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Show border on hover */
.nav-menu li:hover::after {
    width: 100%;
}

/* Show border for active page - alternative approach */
.nav-menu li a.active {
    position: relative;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #034f9d, #0066cc);
    transform: translateX(-50%);
}

.nav-menu li a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li:hover {
    color: #2181C2 !important;
}

.nav-menu li:active,
.nav-menu li.active,
.nav-menu li a.active {
    color: white !important;
}

/* Dropdown Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    list-style: none;
    margin: 0;
    border: 1px solid #e0e0e0;
    display: block !important;
}

/* Show dropdown on hover */
.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Also show when hovering over the dropdown menu itself */
.nav-menu .dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.nav-menu .dropdown-menu li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: none !important;
    width: 100% !important;
    display: block !important;
}

.nav-menu .dropdown-menu li a {
    padding: 12px 20px;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    display: block;
    transition: all 0.2s ease;
    border-radius: 0;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu .dropdown-menu li:hover a {
    background-color: #f8f9fa;
    color: #2181C2 !important;
    padding-left: 25px;
    transform: translateX(5px);
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Menu text color when header is scrolled */
#header.scrolled .nav-menu li {
    color: #333 !important; /* Dark text for white background */
}

#header.scrolled .nav-menu li:hover {
    color: #2181C2 !important;
}

#header.scrolled .nav-menu li:active,
#header.scrolled .nav-menu li.active {
    color: #2181C2 !important;
}

/* Modern Hero Section */
#Hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Modern Grid Layout */
#Hero .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

#Hero .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin: 7px;
    padding: 0;
}

/* Modern Card Design */
#Hero .col-auto {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    margin: 0;
    padding: 0;
    width: 500px;
    height: 250px;
    transform: translateY(0);
}

#Hero .col-auto:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

#Hero .col-auto img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#Hero .col-auto:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Modern Caption Design */
#Hero .col-auto .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    border-radius: 0 0 20px 20px;
    /* opacity: 0; */
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

#Hero .col-auto:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay Effect */
#Hero .col-auto .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(3, 79, 157, 0.3), rgba(0, 102, 204, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 1;
}

#Hero .col-auto:hover .overlay {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #Hero .row {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #Hero {
        padding: 40px 15px;
        margin-top: 0;
    }
    
    #Hero .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #Hero .col-auto {
        width: 350px;
        height: 220px;
    }
    
    #Hero .col-auto img {
        width: 350px;
        height: 220px;
    }
    
    #Hero .col-auto .image-caption {
        font-size: 16px;
        padding: 30px 15px 15px;
    }
}

@media (max-width: 480px) {
    #Hero {
        padding: 20px 10px;
        margin-top: 0;
    }
    
    #Hero .col-auto {
        width: 280px;
        height: 180px;
        border-radius: 15px;
    }
    
    #Hero .col-auto img {
        width: 280px;
        height: 180px;
        border-radius: 15px;
    }
    
    #Hero .col-auto .image-caption {
        border-radius: 0 0 15px 15px;
    }
}

/* Clients Section Styles */
.main {
    padding: 80px 0;
    /* background-color: #ffffff; */
}

/* Container2 styles for carousel section */
.container2 {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Mobile responsive adjustments for container2 and main gap */
@media (max-width: 768px) {
    .container2 {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .main {
        padding: 40px 0;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .container2 {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .main {
        padding: 30px 0;
        margin-top: 0;
    }
}

.heading-title {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    padding: 0 63px;
}

.heading-title::before,
.heading-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background-color: #333;
}

.heading-title::before {
    left: 0;
}

.heading-title::after {
    right: 0;
}

.heading-title h2 {
    font-size: 24px !important;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Poppins", Sans-serif !important;
}

.clients-description {
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 40px;
    }
    
    .heading-title::before,
    .heading-title::after {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }
    
    .client-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .heading-title {
        padding: 0 30px;
    }
    
    .heading-title::before,
    .heading-title::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .clients-grid {
        gap: 20px 25px;
        padding: 0 15px;
    }
    
    .client-logo img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .heading-title h2 {
        font-size: 20px !important;
    }
}

   h3 {
      font-size: 28px;
      font-family: "Poppins", Sans-serif !important;
      font-weight: 600;
    }
    .cursor {
      display: inline-block;
      width: 3px;
      background: #fff;
      margin-left: 3px;
      animation: blink 0.7s infinite;
    }
    @keyframes blink {
      0%, 50%, 100% { opacity: 1; }
      25%, 75% { opacity: 0; }
    }
    .box{
color: white;
    padding: 68px;
    padding-left: 66px !important;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 600;
    }
        /* Modern Services Section Styling - Website Brand Colors */
        .box {
            background: linear-gradient(135deg, #034f9d 0%, #0066cc 100%);
            border-radius: 15px;
            padding: 30px 25px;
            margin: 15px 0;
            box-shadow: 0 10px 30px rgba(3, 79, 157, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Mobile responsive adjustments for services boxes */
        @media (max-width: 768px) {
            .box {
                padding: 20px 15px;
                min-height: 200px;
                margin: 10px 0;
            }
            
            .box h2 {
                font-size: 1.2rem !important;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 480px) {
            .box {
                padding: 15px 12px;
                min-height: 180px;
                margin: 8px 0;
            }
            
            .box h2 {
                font-size: 1.1rem !important;
                margin-bottom: 12px;
            }
        }

        .box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .box:hover::before {
            opacity: 1;
        }

        .box1 {
            background: linear-gradient(135deg, #034f9d 0%, #0066cc 100%);
        }

        .box2 {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
        }

        .box3 {
            background: linear-gradient(135deg, #2181C2 0%, #034f9d 100%);
        }

        .box4 {
            background: linear-gradient(135deg, #0066cc 0%, #4A90E2 100%);
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(3, 79, 157, 0.3);
        }

        .box h2 {
            margin-bottom: 20px;
            font-family: "Poppins", Sans-serif !important;
            font-weight: 700;
            font-size: 1.4rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 0.5px;
        }

        .box span {
            color: rgba(255, 255, 255, 0.95);
            font-family: "Poppins", Sans-serif;
            font-weight: 400;
            line-height: 1.6;
            font-size: 0.95rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments for services */
        @media (max-width: 768px) {
            .box {
                margin: 10px 0;
                padding: 25px 20px;
                min-height: 250px;
            }
            
            .box h2 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .box span {
                font-size: 0.9rem;
            }
        }

/* Location Selector Styles */
.location-selector-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.location-selector-container .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.location-selector-container .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.location-selector-container .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.location-selector-container .form-select:hover {
    border-color: #007bff;
}

     /* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #034f9d 0%, #0066cc 100%);
    color: white;
    padding: 60px 0 20px 0;
    font-family: "Poppins", Sans-serif !important;
}

.footer-column {
    padding: 20px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: "Poppins", Sans-serif !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: "Poppins", Sans-serif !important;
}

.footer-links a:hover {
    color: #4A90E2;
}

.download-profile {
    display: flex;
    align-items: center;
    margin-top: 30px;
    cursor: pointer;
}

.profile-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.download-text {
    color: #4A90E2;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", Sans-serif !important;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 400;
}

.contact-info i {
    margin-right: 8px;
    color: #4A90E2;
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    text-align: center;
}

.stat-number-footer {
    font-size: 24px;
    font-weight: 600;
    color: #4A90E2;
    margin-bottom: 5px;
    font-family: "Poppins", Sans-serif !important;
}

.stat-label-footer {
    font-size: 12px;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
    font-family: "Poppins", Sans-serif !important;
}

.social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #4A90E2;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Poppins", Sans-serif !important;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: "Poppins", Sans-serif !important;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #4A90E2;
    margin: 0 auto 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-family: "Poppins", Sans-serif !important;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: "Poppins", Sans-serif !important;
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid rgba(74, 144, 226, 0.1);
    margin-bottom: 30px;
        padding: 14px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.25);
    border-color: rgba(74, 144, 226, 0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.9), rgba(53, 122, 189, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(2px);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-overlay .btn {
    transform: translateY(0);
}

.service-content {
    padding: 30px 25px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    font-family: "Poppins", Sans-serif !important;
    line-height: 1.3;
}

.service-category {
    font-size: 0.9rem;
    color: #4A90E2;
    margin-bottom: 15px;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-category i {
    margin-right: 8px;
    font-size: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: "Poppins", Sans-serif !important;
    font-weight: 400;
}

.service-price {
    font-size: 1.2rem;
    color: #4A90E2;
    font-weight: 700;
    font-family: "Poppins", Sans-serif !important;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
    font-family: "Poppins", Sans-serif !important;
}

.service-features i {
    color: #4A90E2;
    margin-right: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }
    
    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .download-profile {
        justify-content: center;
    }
    
    .social-media {
        justify-content: center;
    }
}

              .info-section{
                /* background-image: url(/Images/testimonial-bg.jpg); */
                height: auto;
                min-height: 400px;
                background-size: cover;
                background-position: center center;
                background-repeat: no-repeat;
                padding: 60px 0;
              }
              
              .info-details{
                padding: 40px 20px;
              }
              
              .chair-info{
                width: 150px;
                height: 150px;
                object-fit: cover;
              }

/* Responsive Design for Info Section */
@media (max-width: 768px) {
    .info-section {
        padding: 40px 0;
        min-height: 300px;
    }
    
    .info-details {
        padding: 20px 15px;
    }
    
    .chair-info {
        width: 120px;
        height: 120px;
    }
    
    .info-section .row {
        margin-bottom: 30px !important;
    }
    
    .info-section .col-md-8,
    .info-section .col-md-4 {
        margin-bottom: 20px;
    }
    
    .info-section .p-4 {
        padding: 20px !important;
        margin: 10px;
    }
    
    .chairman-placeholder {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 30px 0;
        min-height: 250px;
    }
    
    .info-details {
        padding: 15px 10px;
    }
    
    .chair-info {
        width: 100px;
        height: 100px;
    }
    
    .info-section .p-4 {
        padding: 15px !important;
        margin: 5px;
        font-size: 14px;
    }
    
    .chairman-placeholder {
        width: 100px !important;
        height: 100px !important;
    }
    
    .chairman-placeholder i {
        font-size: 35px !important;
    }
    
    .info-section h5 {
        font-size: 16px;
    }
    
    .info-section .text-muted {
        font-size: 12px;
    }
}
/* Responsive Design for About Hero */
@media (max-width: 768px) {
    .about-hero-section {
        height: 400px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .breadcrumb-nav {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        height: 350px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 5px;
    }
}
.info-details{
              padding: 200px;}
              .chair-info{
                width: 264px;
              }
            

/* About Hero Section */
.container3 {
    height: 500px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../Images/about-img/slider-1.jpg'),
        url('../Images/clientlogo-2.png'),
        url('../Images/clientlogo-3.png');
    background-size: 
        100% 100%,
        33.33% 100%,
        33.33% 100%,
        33.33% 100%;
    background-position: 
        center,
        left top,
        center top,
        right top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}
.about-landing img{
    width: 33.33%;
}
.about-hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: "Poppins", Sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.breadcrumb-nav {
    font-size: 1rem;
    font-weight: 400;
    font-family: "Poppins", Sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-nav a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-separator {
    color: white;
    margin: 0 10px;
}

.breadcrumb-current {
    color: white;
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
    font-family: "Poppins", Sans-serif !important;
}

.about-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: "Poppins", Sans-serif !important;
    letter-spacing: 1px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4A90E2 0%, #667eea 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.company-description {
    padding-right: 30px;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
    text-align: justify;
    font-family: "Poppins", Sans-serif !important;
}

.purpose-section {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.purpose-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.purpose-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: "Poppins", Sans-serif !important;
}

.purpose-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
    font-family: "Poppins", Sans-serif !important;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .company-description {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .purpose-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .purpose-section {
        margin-top: 30px;
    }
    
    .purpose-text {
        text-align: center;
    }
}

/* Landing Page with Background Images */
.landing-page-with-images {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.landing-page-with-images .background-images-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 100%;
}

.landing-page-with-images .image-container {
    position: relative;
    width: 33.33%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.landing-page-with-images .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-page-with-images .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 82%);
    z-index: 1;
}

.landing-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.landing-content-overlay .landing-content {
    text-align: center;
    color: white;
}

.landing-content-overlay .landing-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.landing-content-overlay .breadcrumb-nav {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.landing-content-overlay .breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-content-overlay .breadcrumb-nav a:hover {
    color: #f0f0f0;
}

.landing-content-overlay .breadcrumb-separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
}

.landing-content-overlay .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Landing Page with Images */
@media (max-width: 992px) {
    .landing-page-with-images {
        height: 350px;
    }
    
    .landing-content-overlay .landing-title {
        font-size: 3rem;
    }
    
    .landing-content-overlay .breadcrumb-nav {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .landing-page-with-images {
        height: 300px;
    }
    
    .landing-page-with-images .background-images-section {
        flex-direction: column;
        height: 100%;
    }
    
    .landing-page-with-images .image-container {
        width: 100%;
        height: 33.33%;
        flex-shrink: 0;
    }
    
    .landing-page-with-images .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .landing-content-overlay .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-content-overlay .breadcrumb-nav {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .landing-page-with-images {
        height: 250px;
    }
    
    .landing-content-overlay .landing-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .landing-content-overlay .breadcrumb-nav {
        font-size: 0.8rem;
    }
    
    .landing-content-overlay .breadcrumb-separator {
        margin: 0 10px;
    }
}

/* Container and Row Adjustments */
.container11 {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.row {
    margin: 0;
}

.col-12, .col-md-6, .col-lg-4, .col-lg-8 {
    padding: 0 15px;
}

/* Mobile-first Responsive Columns */
@media (max-width: 768px) {
    .col-12, .col-md-6, .col-lg-4, .col-lg-8 {
        padding: 0 10px;
    }
}

/* Text Responsive Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}

/* General Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Landing Page with Background Images */
.landing-page-with-images {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.landing-page-with-images .background-images-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 100%;
}

.landing-page-with-images .image-container {
    position: relative;
    width: 33.33%;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.landing-page-with-images .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-page-with-images .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgb(0 0 0 / 83%);
    z-index: 1;
}

.landing-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.landing-content-overlay .landing-content {
    text-align: center;
    color: white;
}

.landing-content-overlay .landing-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.landing-content-overlay .breadcrumb-nav {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.landing-content-overlay .breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-content-overlay .breadcrumb-nav a:hover {
    color: #f0f0f0;
}

.landing-content-overlay .breadcrumb-separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
}

.landing-content-overlay .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Landing Page with Images */
@media (max-width: 768px) {
    .landing-page-with-images {
        height: 300px;
    }
    
    .landing-page-with-images .background-images-section {
        flex-direction: column;
        height: 100%;
    }
    
    .landing-page-with-images .image-container {
        width: 100%;
        height: 33.33%;
    }
    
    .landing-content-overlay .landing-title {
        font-size: 2.5rem;
    }
    
    .landing-content-overlay .breadcrumb-nav {
        font-size: 1rem;
    }
}