/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-orange: #0d1ea2;
    --primary-dark: #1a2b3c;
    --primary-blue: #2c3e50;
    --light-gray: #f8f9fa;
    --text-gray: #666666;
}

body {
    overflow-x: hidden;
    color: var(--text-gray);
}

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

/* ===== TOP BAR STYLES ===== */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 3px solid var(--primary-orange);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--primary-orange);
}

.top-bar i {
    color: #ffd29b;
    margin-right: 8px;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    z-index: 1000;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.5s;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo-text img {
    position: absolute;
    top: 15px;
    width: 95px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Custom Navigation - Pure CSS Dropdown */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* Dropdown Menu - Pure CSS Hover */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px;
    border-top: 3px solid var(--primary-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    list-style: none;
}

.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item-custom {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.dropdown-item-custom i {
    color: var(--primary-orange);
    width: 25px;
    margin-right: 10px;
    transition: all 0.3s;
}

.dropdown-item-custom:hover {
    background: #fff5ec;
    color: var(--primary-orange);
    transform: translateX(5px);
}

.dropdown-item-custom:hover i {
    transform: scale(1.2);
}

.contact-btn {
    background: var(--primary-orange);
    color: white !important;
    border-radius: 30px;
    padding: 10px 25px !important;
}

.contact-btn:hover {
    background: #ffd298;
    color: white !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
}

/* ===== PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(rgba(26, 43, 60, 0.9), rgba(26, 43, 60, 0.9)), url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--primary-orange);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-orange);
}

/* ===== SECTION TITLE STYLES ===== */
.section-title {
    font-size: 42px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-orange);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* ===== BUTTON STYLES ===== */
.read-more-btn {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateX(10px);
}

.read-more-btn i {
    transition: transform 0.3s;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.slider-btn {
    background: var(--primary-orange);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.slider-btn:hover {
    background: transparent;
    border-color: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* ===== HERO SLIDER STYLES ===== */
.hero-slider {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-item {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.carousel-item:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.carousel-item:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.carousel-item:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
}

.carousel-caption {
    bottom: 65%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h2 {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.carousel-caption h2 span {
    color: var(--primary-orange);
    font-weight: 700;
}

.carousel-caption h3 {
    font-size: 42px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    animation: fadeInUp 1s 0.3s both;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s 0.6s both;
}

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

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

/* ===== SERVICES GRID STYLES ===== */
.services-section {
    padding: 40px 0;
    background: white;
}

.service-card {
    padding: 45px 30px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fff5ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary-orange);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 40px;
    color: var(--primary-orange);
    transition: all 0.3s;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

/* ===== ABOUT SECTION STYLES ===== */
.about-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.3), rgba(26, 43, 60, 0.5));
    z-index: 1;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-orange);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pulse 2s infinite;
}

.about-experience .years {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-experience .text {
    font-size: 14px;
    text-align: center;
}

.about-content {
    padding-left: 40px;
}

.about-content h2 {
    font-size: 42px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-orange);
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== WELCOME SECTION STYLES ===== */
.welcome-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.welcome-text {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
}

/* ===== STATS SECTION STYLES ===== */
.stats-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: white;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 50px;
    font-weight: 800;
    color: #dad8db;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.stat-number::after {
    content: '+';
    font-size: 30px;
    position: absolute;
    top: 5px;
    right: -25px;
}

.stat-item p {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

/* ===== GOALS HEXAGONAL SECTION STYLES ===== */
.goals-hexagonal-section {
    padding: 65px 0;
    background: linear-gradient(135deg, #0a1928 0%, #1a2b3c 100%);
    position: relative;
    overflow: hidden;
}

.goals-hexagonal-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 0, 0.02) 50px,
            rgba(13, 30, 162, 0.02) 100px);
    animation: gridMove 30s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hex-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hex-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c8c6c9, #0d1ea2, transparent);
}

.hex-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #c8c6c9;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
}

.hex-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin: 10px 0 0;
    text-transform: uppercase;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff, #ffd299);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hex-quote {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.quote-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.quote-svg polygon {
    fill: rgba(255, 255, 255, 0.05);
    stroke: url(#grad);
    stroke-width: 2;
}

.quote-text {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    text-align: center;
    color: white;
}

.quote-text i {
    font-size: 30px;
    color: #c8c6c9;
    opacity: 0.5;
    display: block;
}

.quote-text p {
    font-size: 20px;
    line-height: 1.8;
    margin: 20px 0;
    font-style: italic;
}

.hex-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 100px;
}

.hex-item {
    width: 300px;
    height: 350px;
    position: relative;
    transition: all 0.3s;
}

.hex-item:hover {
    transform: translateY(-30px);
}

.hex-shape {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.hex-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hex-item:hover .hex-shape::before {
    left: 100%;
}

.hex-shape::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent,
            #c8c6c9,
            transparent,
            #0d1ea2,
            transparent);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.hex-item:hover .hex-shape::after {
    opacity: 0.3;
}

.hex-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
    color: white;
    z-index: 2;
}

.hex-number {
    font-size: 24px;
    font-weight: 800;
    color: #c8c6c9;
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid rgb(254 212 152 / 40%);
    border-radius: 30px;
}

.hex-content i {
    font-size: 50px;
    margin-bottom: 20px;
    color: #c8c6c9;
    transition: all 0.3s;
}

.hex-item:hover .hex-content i {
    transform: scale(1.2) rotate(360deg);
    color: white;
}

.hex-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.hex-content p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.hex-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ff6b00, transparent);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0;
    transition: all 0.3s;
}

.hex-item:hover .hex-glow {
    opacity: 0.5;
    bottom: -20%;
}

/* ===== VISION MISSION SECTION STYLES ===== */
.vision-mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.vision-box,
.mission-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.vision-box h3,
.mission-box h3 {
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.vision-box h3::after,
.mission-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
}

/* ===== PROCESS SECTION STYLES ===== */
.process-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.process-text {
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 16px;
    line-height: 1.9;
}

/* ===== SERVICES LIST STYLES ===== */
.services-list-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-list-item {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-list-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.service-list-item i {
    font-size: 50px;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-list-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.service-list-item h4 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ===== VALUES SECTION STYLES ===== */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s;
}

.value-item:hover {
    background: var(--primary-orange);
    transform: translateY(-10px);
}

.value-item i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.value-item:hover i {
    color: white;
    transform: scale(1.2);
}

.value-item h4 {
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.value-item:hover h4 {
    color: white;
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-number {
    font-size: 48px;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-detail:hover {
    background: var(--primary-orange);
    transform: translateX(10px);
}

.contact-detail:hover i,
.contact-detail:hover a,
.contact-detail:hover span {
    color: white;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-detail:hover i {
    background: white;
    color: var(--primary-orange);
}

.contact-detail a,
.contact-detail span {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */
.service-detail-section {
    padding: 80px 0;
}

.service-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.service-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.service-title {
    color: var(--primary-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-title span {
    color: var(--primary-orange);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff5ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 35px;
    color: var(--primary-orange);
}

.feature-box h3 {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.service-section-title {
    font-size: 32px;
    color: var(--primary-dark);
    font-weight: 700;
    margin: 50px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.service-section-title span {
    color: var(--primary-orange);
}

/* ===== SERVICE PAGE CARD STYLES ===== */
.service-page-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.service-page-card i {
    font-size: 60px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.service-page-card h3 {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-page-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== PORTFOLIO PAGE STYLES ===== */
.portfolio-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(13, 30, 162, 0.9), rgba(26, 43, 60, 0.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    padding: 20px;
    text-align: center;
}

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

.portfolio-overlay h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay h4 {
    transform: translateY(0);
}

.portfolio-overlay p {
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: transform 0.3s 0.1s;
}

.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

.portfolio-overlay .btn {
    background: white;
    color: var(--primary-orange);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.3s 0.2s;
}

.portfolio-item:hover .portfolio-overlay .btn {
    transform: translateY(0);
}

.portfolio-overlay .btn:hover {
    background: var(--primary-orange);
    color: white;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    display: inline-block;
    padding: 10px 25px;
    margin: 0 5px 10px;
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-orange);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-orange);
    color: white;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-page-section {
    padding: 80px 0;
}

.about-page-content h2 {
    color: var(--primary-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-page-content h2 span {
    color: var(--primary-orange);
}

.about-page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid var(--primary-orange);
    padding: 5px;
}

.team-member h4 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 100%;
}

.contact-page-info h3 {
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.contact-detail-item:hover i {
    transform: scale(1.1) rotate(360deg);
    background: var(--primary-dark);
}

.contact-detail-item h4 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-detail-item p, .contact-detail-item a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0;
    transition: color 0.3s;
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

/* ===== PROCESS STEP STYLES ===== */
.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
}

/* ===== AUDIT PROCESS STYLES ===== */
.audit-process {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.process-timeline {
    position: relative;
    padding-left: 50px;
}

.process-timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.process-timeline-item:last-child {
    padding-bottom: 0;
}

.process-timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-orange);
}

.process-timeline-item::after {
    content: '';
    position: absolute;
    left: -21px;
    top: 30px;
    width: 2px;
    height: calc(100% - 25px);
    background: var(--primary-orange);
}

.process-timeline-item:last-child::after {
    display: none;
}

.process-timeline-item h4 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.process-timeline-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== CONSULTING DOMAINS STYLES ===== */
.consulting-domains {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.domain-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.domain-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

.domain-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.domain-item h4 {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.domain-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

/* ===== MANPOWER CATEGORY STYLES ===== */
.manpower-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.manpower-category:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.manpower-category h3 {
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.manpower-category h3 i {
    color: var(--primary-orange);
    font-size: 24px;
}

.manpower-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.manpower-category ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.manpower-category ul li i {
    color: var(--primary-orange);
    font-size: 12px;
}

/* ===== HIRING PROCESS STYLES ===== */
.hiring-process {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

/* ===== BENEFITS LIST STYLES ===== */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.benefits-list li i {
    color: var(--primary-orange);
    font-size: 18px;
}

/* ===== CTA BOX STYLES ===== */
.cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-orange));
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.cta-box .btn {
    background: white;
    color: var(--primary-orange);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-box .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FORM STYLES ===== */
.form-control, .form-control-lg {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s;
}

.form-control:focus, .form-control-lg:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(13, 30, 162, 0.25);
}

/* ===== FOOTER STYLES ===== */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-widget h4 {
    color: #d3d1d4;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #d3d1d4;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-links i {
    color: #d3d1d4;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* ===== FLOATING CTA BAR STYLES ===== */
.cta-floating-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(49deg, #101ea3 0%, #d3d3d5 100%);
    border-radius: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 0 2px rgb(11 29 162 / 23%);
    padding: 10px 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgb(13 32 161 / 56%);
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

.cta-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 15px;
    border-right: 2px solid rgba(255, 107, 0, 0.3);
}

.cta-logo-text {
    color: white;
    font-size: 14px;
    line-height: 1.3;
}

.cta-logo-text strong {
    color: #ffd29b;
    font-size: 16px;
    display: block;
}

.cta-items {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.1);
    width: 164px;
}

.cta-item:hover {
    background: #ffd29b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.cta-item i {
    font-size: 18px;
    color: #ffd29b;
    transition: all 0.3s;
}

.cta-item:hover i {
    color: white;
}

.cta-item span {
    font-size: 14px;
    font-weight: 500;
}

.cta-item .small-text {
    font-size: 12px;
    opacity: 0.8;
    display: block;
}

.cta-button {
    background: #0d1ea2;
    color: white;
    text-decoration: none;
    padding: 5px 49px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(51, 44, 242, 0.6);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: #0d1ea2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 44, 242, 0.6);
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-close {
    background: #0c1ea4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(51, 44, 242, 0.6);
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-close:hover {
    background: #ffd29b;
    transform: rotate(90deg);
}

.cta-floating-bar.hide {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    transition: all 0.3s;
}

/* ===== WHATSAPP FLOATING ICON STYLES ===== */
.whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(360deg);
    background: #20ba5a;
}

.call-float {
    position: fixed;
    bottom: 187px;
    right: 30px;
    background: #0e1fa1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 5px 20px rgb(253 211 151 / 26%);
    z-index: 9998;
    transition: all 0.3s;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #ffd29b;
    color: rgb(0, 0, 0);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: #1a2b3c;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-float:hover .float-tooltip,
.call-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}


        /* ===== USER REVIEWS SECTION ===== */
        .reviews-section {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
        }

        .review-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(15, 30, 165, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(15, 30, 165, 0.1);
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(15, 30, 165, 0.15);
            border-color: var(--soft-peach);
        }

        .review-rating {
            color: #ffb800;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .review-rating i {
            margin-right: 2px;
        }

        .review-text {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-text i {
            color: var(--primary-blue);
            opacity: 0.2;
            font-size: 20px;
            margin-right: 5px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .reviewer-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--soft-peach);
        }

        .reviewer-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .reviewer-info p {
            font-size: 13px;
            color: #888;
            margin: 0;
        }

        .review-quote-icon {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 40px;
            color: var(--soft-peach);
            opacity: 0.3;
        }

        .review-date {
            font-size: 12px;
            color: var(--light-gray);
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .review-date i {
            color: var(--primary-blue);
        }

        /* ===== BLOG SECTION ===== */
        .blog-section {
            background: var(--white);
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(15, 30, 165, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(15, 30, 165, 0.1);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 210, 153, 0.3);
            border-color: var(--soft-peach);
        }

        .blog-img {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

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

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

        .blog-date {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-blue);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .blog-date i {
            margin-right: 5px;
            color: var(--soft-peach);
        }

        .blog-category {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--soft-peach);
            color: var(--primary-blue);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 2;
        }

        .blog-content {
            padding: 25px 20px;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 12px;
            font-size: 12px;
            color: #888;
        }

        .blog-meta i {
            color: var(--primary-blue);
            margin-right: 5px;
        }

        .blog-content h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .blog-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            background: var(--soft-peach);
            padding: 8px 20px;
            border-radius: 30px;
        }

        .blog-link:hover {
            background: var(--primary-blue);
            color: white;
            gap: 12px;
        }

        .blog-link i {
            transition: transform 0.3s;
        }

        .blog-link:hover i {
            transform: translateX(5px);
        }

        /* ===== CLIENTS SECTION ===== */
        .clients-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .client-card {
            background: var(--white);
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(15, 30, 165, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(15, 30, 165, 0.1);
            display: flex;
            flex-direction: column;
        }

        .client-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 210, 153, 0.3);
            border-color: var(--soft-peach);
        }

        /* Fixed Client Logo Container */
        .client-logo-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }

        .client-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--soft-peach);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            transition: all 0.3s ease;
        }

        .client-card:hover .client-logo {
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }

        .client-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .client-card:hover .client-logo img {
            transform: scale(1.1);
        }

        .client-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        .client-card p {
            font-size: 13px;
            color: #888;
            margin-bottom: 10px;
        }

        .client-rating {
            color: #ffb800;
            font-size: 12px;
            margin-bottom: 10px;
        }

        .client-rating i {
            margin: 0 1px;
        }

        .client-review {
            font-size: 12px;
            color: #555;
            line-height: 1.5;
            font-style: italic;
            padding: 0 8px;
            border-left: 2px solid var(--soft-peach);
            margin: 10px 0;
            min-height: 50px;
        }

        .client-stats {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed var(--light-gray);
        }

        .client-stats span {
            font-size: 11px;
            color: #666;
        }

        .client-stats i {
            color: var(--soft-peach);
            margin-right: 3px;
            font-size: 10px;
        }

        /* Client Carousel - Fixed */
        .client-carousel {
            padding: 20px 0 40px;
            position: relative;
        }

        .carousel-inner {
            padding: 10px 0;
        }

        .carousel-item {
            transition: transform 0.8s ease-in-out;
        }

        /* Fixed Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 45px;
            height: 45px;
            background: var(--primary-blue);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s;
            border: 2px solid var(--soft-peach);
            margin: 0px 28px;
        }

        .carousel-control-prev {
            left: -15px;
        }

        .carousel-control-next {
            right: -15px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: var(--soft-peach);
            border-color: var(--primary-blue);
        }

        .carousel-control-prev i,
        .carousel-control-next i {
            color: white;
            font-size: 18px;
        }

        .carousel-control-prev:hover i,
        .carousel-control-next:hover i {
            color: var(--primary-blue);
        }

        /* Carousel Indicators */
        .carousel-indicators-custom {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .carousel-indicators-custom button {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid var(--primary-blue);
            background: transparent;
            color: var(--primary-blue);
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .carousel-indicators-custom button.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--soft-peach);
        }

        .carousel-indicators-custom button:hover {
            background: var(--soft-peach);
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        /* Partner Logos Strip */
        .partner-strip {
            background: rgba(15, 30, 165, 0.02);
            padding: 30px;
            border-radius: 50px;
            margin-top: 50px;
            border: 1px dashed var(--light-gray);
        }

        .partner-logo-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 25px;
        }

        .partner-logo-item {
            width: 120px;
            height: 70px;
            background: white;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .partner-logo-item:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 210, 153, 0.4);
        }

        .partner-logo-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0.7;
            filter: grayscale(100%);
            transition: all 0.3s;
        }

        .partner-logo-item:hover img {
            opacity: 1;
            filter: grayscale(0%);
        }

        /* Buttons */
        .btn-primary-custom {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(15, 30, 165, 0.2);
        }

        .btn-primary-custom:hover {
            background: var(--soft-peach);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 210, 153, 0.4);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background: var(--soft-peach);
            border-color: var(--soft-peach);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 992px) {

            .carousel-control-prev,
            .carousel-control-next {
                width: 35px;
                height: 35px;
            }

            .carousel-control-prev {
                left: -5px;
            }

            .carousel-control-next {
                right: -5px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .blog-img {
                height: 180px;
            }

            .partner-strip {
                border-radius: 30px;
                padding: 20px;
            }

            .partner-logo-item {
                width: 100px;
                height: 60px;
            }

            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }

            .client-logo {
                width: 80px;
                height: 80px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-card,
        .blog-card,
        .client-card {
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
        }

        .review-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .review-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .review-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .review-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .blog-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .blog-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .blog-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .client-card {
            animation: none;
        }

        /* Auto scroll animation */
        .carousel-item {
            transition: transform 1s ease-in-out;
        }

        /* OUR CLIENTS SECTION Slider */

        .slick-slide {
            margin: 0px 20px;
        }

        .slick-slide img {
            width: 100%;
        }

        .slick-slider {
            position: relative;
            display: block;
            box-sizing: border-box;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
            -khtml-user-select: none;
            -ms-touch-action: pan-y;
            touch-action: pan-y;
            -webkit-tap-highlight-color: transparent;
        }

        .slick-list {
            position: relative;
            display: block;
            overflow: hidden;
            margin: 0;
            padding: 0;
        }

        .slick-list:focus {
            outline: none;
        }

        .slick-list.dragging {
            cursor: pointer;
            cursor: hand;
        }

        .slick-slider .slick-track,
        .slick-slider .slick-list {
            -webkit-transform: translate3d(0, 0, 0);
            -moz-transform: translate3d(0, 0, 0);
            -ms-transform: translate3d(0, 0, 0);
            -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }

        .slick-track {
            position: relative;
            top: 0;
            left: 0;
            display: block;
        }

        .slick-track:before,
        .slick-track:after {
            display: table;
            content: '';
        }

        .slick-track:after {
            clear: both;
        }

        .slick-loading .slick-track {
            visibility: hidden;
        }

        .slick-slide {
            display: none;
            float: left;
            height: 100%;
            min-height: 1px;
        }

        [dir='rtl'] .slick-slide {
            float: right;
        }

        .slick-slide img {
            display: block;
        }

        .slick-slide.slick-loading img {
            display: none;
        }

        .slick-slide.dragging img {
            pointer-events: none;
        }

        .slick-initialized .slick-slide {
            display: block;
        }

        .slick-loading .slick-slide {
            visibility: hidden;
        }

        .slick-vertical .slick-slide {
            display: block;
            height: auto;
            border: 1px solid transparent;
        }

        .slick-arrow.slick-hidden {
            display: none;
        }


/* ===== BACK TO TOP BUTTON STYLES ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(13, 30, 162, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ffd298;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 30, 162, 0.4);
}

.back-to-top:hover i {
    animation: bounce 1s infinite;
}

.back-to-top i {
    transition: all 0.3s;
}

.back-to-top-text {
    position: absolute;
    background: var(--primary-dark);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    right: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.back-to-top-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-dark);
}

.back-to-top:hover .back-to-top-text {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Pulse Animation */
.back-to-top.pulse {
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 30, 162, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(13, 30, 162, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 30, 162, 0);
    }
}

/* Progress Indicator Version (Alternative Style) */
.back-to-top.progress-style {
    background: transparent;
    box-shadow: none;
    width: 60px;
    height: 60px;
}

.back-to-top.progress-style svg {
    width: 60px;
    height: 60px;
    position: absolute;
}

.back-to-top.progress-style circle {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 4;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    transition: stroke-dashoffset 0.3s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.back-to-top.progress-style i {
    background: var(--primary-orange);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .back-to-top-text {
        display: none;
    }
    
    .back-to-top.progress-style {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top.progress-style i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .back-to-top {
        background: var(--primary-orange);
    }
    
    .back-to-top-text {
        background: var(--primary-dark);
    }
}

/* ===== LEADERSHIP SECTION - DESIGN 1 (MODERN CARDS) ===== */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 30, 162, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.leadership-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.leadership-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 45px rgba(13, 30, 162, 0.2);
}

.leadership-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), #ffd298);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.leadership-card:hover::after {
    transform: scaleX(1);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.leadership-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13, 30, 162, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.leadership-card:hover .leader-image::before {
    opacity: 1;
}

.leader-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.leadership-card:hover .leader-social {
    transform: translateY(0);
    opacity: 1;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.leader-social a:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(360deg);
}

.leader-info {
    padding: 25px 20px;
    text-align: center;
    background: white;
    position: relative;
}

.leader-info h3 {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.leadership-card:hover .leader-info h3 {
    color: var(--primary-orange);
}

.leader-info .position {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(13, 30, 162, 0.1);
    border-radius: 30px;
}

.leader-info .bio {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
}

.leader-quote {
    font-style: italic;
    font-size: 13px;
    color: var(--primary-dark);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    position: relative;
}

.leader-quote i {
    color: var(--primary-orange);
    opacity: 0.3;
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-image {
        height: 350px;
    }
}
