/* ===== CSS VARIABLES ===== */
:root {
    --primary: #2a6ecc;
    --primary-dark: #1a4fa0;
    --primary-light: #4a8df0;
    --secondary: #ff7e30;
    --secondary-dark: #e06620;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --white: #ffffff;
    --black: #212529;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}


/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--gray-light);
}

body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* ===== COMMON ELEMENTS ===== */
.common-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 16px 32px;
    border: none;
    color: var(--white);
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 110, 204, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.common-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transition: left 0.5s ease;
    z-index: -1;
}

.common-btn:hover::before {
    left: 0;
}

.common-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 110, 204, 0.4);
}

.common-btn:active {
    transform: translateY(-1px);
}

.sub-heading {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.sub-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
}

.heading {
    color: var(--black);
    font-size: 42px;
    margin: 10px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.desc {
    color: var(--gray);
    margin: 0 0 30px;
    line-height: 1.8;
    font-weight: 400;
    font-size: 17px;
}


/* ===== HEADER ===== */
header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 26px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    width: auto;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.desktop-nav ul li {
    position: relative;
}

.desktop-nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--gray-dark);
    font-size: 16px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.desktop-nav ul li a.active {
    color: var(--primary);
}

.desktop-nav ul li a.active::after {
    width: 100%;
}

/* Call Box */
.call-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(42, 110, 204, 0.2);
}

.call-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 110, 204, 0.3);
}

.call-box .bx {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.call-box:hover .bx {
    transform: rotate(15deg);
}

.call-box-text {
    display: flex;
    flex-direction: column;
}

.call-box-text small {
    font-size: 12px;
    opacity: 0.9;
}

.call-box-text strong {
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Navigation Toggle */
.mobile-toggle {
    display: none;
    font-size: 32px;
    color: var(--primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    padding: 30px;
    top: 80px;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    backdrop-filter: blur(15px);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: flex;
}

.mobile-nav a {
    padding: 18px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-nav a .bx {
    font-size: 22px;
    width: 30px;
}


@media (max-width: 1024px) {
    .logo img {
        height: 100px !important;
        width: auto !important;
    }
}

/* Phones */
@media (max-width: 768px) {
    .logo img {
        height: 100px !important;
        width: auto !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo img {
        height: 100px !important;
        width: auto !important;
}

    }




/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #0c2b5e 0%, #1a4fa0 50%, #2a6ecc 100%);
    padding: 100px 0 150px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/electronics.jpg");
    opacity: 0.5;
}

.hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    width: 50%;
    animation: fadeInUp 1s ease-out;
}

.hero-left h1 {
    color: var(--white);
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-left h1 span {
    color: var(--secondary);
    position: relative;
}

.hero-left h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 126, 48, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-left p {
    margin-top: 20px;
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 300;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.hero-right {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Rotating Badge */
.rotating-badge {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.badge-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 25s linear infinite;
}

.badge-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--white);
    z-index: 2;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 126, 48, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(255, 126, 48, 0.6); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    z-index: 3;
    position: relative;
}

.hero-right img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Rating Box */
.rating-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 10;
}

.rating-box-wrap {
    background: var(--white);
    padding: 30px 40px;
    display: flex;
    gap: 60px;
    color: var(--gray-dark);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.rating-box-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.rating-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-box h4 .bx {
    color: var(--secondary);
    font-size: 24px;
}

.star-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
    margin-right: -12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.avatar-group img:hover {
    transform: translateY(-5px);
    z-index: 2;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: var(--secondary);
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-text small {
    font-size: 14px;
    color: var(--gray);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .heading {
        font-size: 36px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-row {
        flex-direction: column;
        gap: 50px;
    }

    .hero-left, .hero-right {
        width: 100%;
        text-align: center;
    }

    .hero-left p {
        max-width: 100%;
    }

    .rating-box-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .rating-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .call-box {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .heading {
        font-size: 32px;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero {
        padding: 80px 0 120px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .rating-box-wrap {
        padding: 25px;
    }

    .rotating-badge {
        width: 150px;
        height: 150px;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 28px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .common-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .rating-box-wrap {
        padding: 20px;
    }

    .rating-box h4 {
        font-size: 18px;
    }

    .logo {
        font-size: 22px;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }
}





/*HERO*************ENDS HERE**************************HERO************************************ENDS HERE**************************/

/*ABOUT*************STARTS HERE**************************ABOUT************************************STARTS HERE**************************/
/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #002B5B 40%, #FFCC00 100%);
    opacity: 0.3;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Section */
.about-left {
    position: relative;
}

.about-photo-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-photo-wrap:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-main-photo {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo-wrap:hover .about-main-photo {
    transform: scale(1.05);
}

.photo-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-element i {
    font-size: 28px;
    color: var(--primary);
}

.floating-1 {
    top: -20px;
    right: -20px;
    background: var(--secondary);
    animation-delay: 0.5s;
}

.floating-1 i {
    color: var(--white);
}

.floating-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
}

/* Stat Card */
.about-stat-card {
    position: absolute;
    bottom: -40px;
    left: 40px;
    width: 320px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary);
}

.stat-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: var(--white);
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin: 10px 0 5px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.stat-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.about-users {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar {
    position: relative;
    margin-right: -12px;
}

.user-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--primary-dark);
    object-fit: cover;
    transition: var(--transition);
}

.user-avatar:hover img {
    transform: translateY(-5px);
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.user-avatar:hover .avatar-ring {
    opacity: 1;
}

.user-more {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    margin-left: 5px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.stat-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.stat-footer i {
    color: var(--secondary);
    font-size: 18px;
}

/* Right Section */
.about-right {
    padding-top: 30px;
}

.section-header {
    margin-bottom: 40px;
}

.section-header .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--gray);
    padding-right: 20px;
}

.desc strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Features Grid */
.about-features {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.feature-card:nth-child(1):hover {
    border-left-color: var(--primary);
}

.feature-card:nth-child(2):hover {
    border-left-color: var(--secondary);
}

.feature-card:nth-child(3):hover {
    border-left-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #6c63ff, #4a43d8);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Mission & Vision Cards */
.about-mission-vision {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.mission-card, .vision-card {
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.mission-card {
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.05), rgba(42, 110, 204, 0.1));
    border: 1px solid rgba(42, 110, 204, 0.1);
}

.vision-card {
    background: linear-gradient(135deg, rgba(255, 126, 48, 0.05), rgba(255, 126, 48, 0.1));
    border: 1px solid rgba(255, 126, 48, 0.1);
}

.mission-icon, .vision-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.mission-icon i, .vision-icon i {
    font-size: 36px;
    position: relative;
    z-index: 2;
}

.mission-icon i {
    color: var(--primary);
}

.vision-icon i {
    color: var(--secondary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(10px);
}

.mission-content h3, .vision-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.vision-content h3 {
    color: var(--secondary-dark);
}

.mission-content p, .vision-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

.mission-decoration, .vision-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.vision-decoration .dot {
    background: var(--secondary);
}

.star {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.3;
}

/* Action Buttons */
.about-action {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.secondary-btn {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 110, 204, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .about-container {
        gap: 60px;
    }

    .about-main-photo {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-right {
        padding-top: 0;
    }

    .about-stat-card {
        position: relative;
        left: 0;
        bottom: -40px;
        width: 100%;
        max-width: 400px;
        margin: -40px auto 0;
    }

    .about-photo-wrap {
        transform: none;
    }

    .floating-element {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-mission-vision {
        grid-template-columns: 1fr;
    }

    .about-action {
        flex-direction: column;
        align-items: stretch;
    }

    .common-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .about-main-photo {
        height: 400px;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon {
        margin-bottom: 15px;
    }

    .mission-card, .vision-card {
        padding: 25px;
    }

    .desc {
        font-size: 16px;
        padding-right: 0;
    }
}




/*ABOUT*************ENDS HERE**************************ABOUT************************************ENDS HERE**************************/


/*SERVICES***************STARS HERE*****************************************SERVICES*****************************STARS HERE****************/

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 80%, rgba(42, 110, 204, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 126, 48, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-title {
    font-size: 48px;
    color: var(--black) !important;
    margin: 15px 0 25px;
    font-weight: 700;
    line-height: 1.2;

}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    border: 1px solid rgba(42, 110, 204, 0.1);
    border-radius: 20px;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover::before {
    border-color: rgba(42, 110, 204, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0.1;
    transition: var(--transition);
}

.service-icon i {
    font-size: 34px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.service-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    opacity: 0.3;
}

.service-title {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-tag {
    background: rgba(42, 110, 204, 0.08);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.service-card:hover .feature-tag {
    background: rgba(42, 110, 204, 0.15);
    transform: translateY(-2px);
}

/* Service Link */
.service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Hover Effect */
.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    border-radius: 20px;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover .service-hover-effect {
    opacity: 0.05;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .icon-bg {
    opacity: 0.15;
}

/* Individual Card Colors */
.service-card:nth-child(2) .service-icon i,
.service-card:nth-child(2) .feature-tag {
    color: var(--secondary);
}

.service-card:nth-child(2) .icon-bg,
.service-card:nth-child(2) .service-hover-effect {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.service-card:nth-child(2) .feature-tag {
    background: rgba(255, 126, 48, 0.08);
}

.service-card:nth-child(2):hover .feature-tag {
    background: rgba(255, 126, 48, 0.15);
}

.service-card:nth-child(3) .service-icon i,
.service-card:nth-child(3) .feature-tag {
    color: #6c63ff;
}

.service-card:nth-child(3) .icon-bg,
.service-card:nth-child(3) .service-hover-effect {
    background: linear-gradient(135deg, #6c63ff, #4a43d8);
}

.service-card:nth-child(3) .feature-tag {
    background: rgba(108, 99, 255, 0.08);
}

.service-card:nth-child(3):hover .feature-tag {
    background: rgba(108, 99, 255, 0.15);
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.services-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 36px;
    color: var(--white);
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    opacity: 0.9;
    font-size: 16px;
}

.cta-button {
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .service-row {
        gap: 25px;
    }

    .service-card-inner {
        padding: 35px 25px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }

    .service-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-inner {
        padding: 30px;
    }

    .service-title {
        font-size: 22px;
    }

    .services-cta {
        padding: 30px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .service-card-inner {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-features {
        gap: 8px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 5px 10px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}


/*SERVICES***************ENDS HERE*****************************************SERVICES*****************************ENDS HERE****************/


/*PROJECT******************************STARTS HERE***********************************PROJECT*********************************STARTS*/

/* ===== SERVICE REQUEST SECTION ===== */
.service-request-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.service-request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><path d="M50,50 Q75,40 100,50 T150,50" stroke="%232a6ecc" stroke-width="1" fill="none" opacity="0.05"/><path d="M30,100 Q55,90 80,100 T130,100" stroke="%23ff7e30" stroke-width="1" fill="none" opacity="0.05"/><path d="M70,150 Q95,140 120,150 T170,150" stroke="%231a4fa0" stroke-width="1" fill="none" opacity="0.05"/></svg>');
}

.request-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Form Section */
.request-form-container {
    padding: 60px;
    background: var(--white);

}

.form-header {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.form-header .highlight {
    color: var(--primary);
    position: relative;
}

.form-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.form-description {
    color: var(--gray);
    line-height: 1.7;
    margin-top: 15px;
    font-size: 16px;
}

/* Form Styles */
.service-request-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.input-with-icon, .select-with-icon {
    position: relative;
}

.input-with-icon i, .select-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
    z-index: 2;
}

.input-with-icon textarea + i {
    top: 25px;
    transform: none;
}

.input-with-icon input,
.input-with-icon textarea,
.select-with-icon select {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e1e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--gray-dark);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-with-icon textarea {
    padding-top: 20px;
    resize: vertical;
    min-height: 120px;
}

.select-with-icon select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 55px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: 2;
}

.form-group:focus-within .input-focus-line {
    width: calc(100% - 55px);
}

.input-with-icon input:focus,
.input-with-icon textarea:focus,
.select-with-icon select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 5px 15px rgba(42, 110, 204, 0.1);
}

/* Form Options */
.form-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-size: 14px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.checkbox-option:hover {
    color: var(--primary-dark);
}

.checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid #e1e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-option:hover .checkmark {
    border-color: var(--primary);
}

.checkbox-option input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-option input:checked ~ .checkmark:after {
    display: block;
}

.option-text {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Submit Button */
.submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(42, 110, 204, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transition: left 0.5s ease;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 110, 204, 0.4);
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-icon i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon i {
    transform: translateX(5px);
}

.btn-loader {
    display: none;
    position: absolute;
    z-index: 2;
    gap: 5px;
}

.btn-loader.active {
    display: flex;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e8f0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.contact-info i {
    color: var(--primary);
    font-size: 16px;
}

/* Right Content Section */
.request-content {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.content-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.content-image-container:hover .content-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 20px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Info Cards */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Direct Contact */
.contact-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.direct-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.direct-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.direct-contact i {
    font-size: 28px;
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direct-contact div {
    display: flex;
    flex-direction: column;
}

.direct-contact small {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.direct-contact strong {
    font-size: 16px;
    font-weight: 600;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-message.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: var(--white);
}

.success-message h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .request-wrapper {
        gap: 40px;
    }

    .request-form-container,
    .request-content {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .request-wrapper {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .content-image {
        height: 250px;
    }

    .contact-direct {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-request-section {
        padding: 80px 0;
    }

    .request-form-container,
    .request-content {
        padding: 40px 30px;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .direct-contact {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .request-form-container,
    .request-content {
        padding: 30px 20px;
    }

    .submit-btn {
        padding: 18px 25px;
        font-size: 16px;
    }

    .input-with-icon input,
    .input-with-icon textarea,
    .select-with-icon select {
        padding: 16px 15px 16px 45px;
    }

    .input-with-icon i,
    .select-with-icon i {
        left: 15px;
        font-size: 18px;
    }

    .select-arrow {
        right: 15px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        margin-bottom: 15px;
    }
}


/*PROJECT******************************ENDS HERE***********************************PROJECT*********************************ENDS*/

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><circle cx="30" cy="30" r="2" fill="%232a6ecc" opacity="0.1"/><circle cx="170" cy="80" r="2" fill="%23ff7e30" opacity="0.1"/><circle cx="100" cy="170" r="2" fill="%231a4fa0" opacity="0.1"/></svg>');
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header .highlight {
    color: var(--primary);
    position: relative;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 20px;
}

/* Features Container */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 100px;
}

/* Feature Card */
.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.feature-card.reverse {
    direction: rtl;
}

.feature-card.reverse .feature-content {
    direction: ltr;
}

.feature-card.reverse .feature-image {
    direction: ltr;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 100px;
    font-weight: 800;
    color: rgba(42, 110, 204, 0.05);
    line-height: 1;
    z-index: 0;
    user-select: none;
}

.feature-card.reverse .feature-number {
    left: auto;
    right: 0;
}

/* Feature Content */
.feature-content {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.feature-icon i {
    font-size: 40px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 20px;
    opacity: 0.1;
    animation: pulse 2s infinite;
}

.feature-card:nth-child(2) .feature-icon i,
.feature-card:nth-child(2) .icon-pulse {
    color: var(--secondary);
    background: var(--secondary);
}

.feature-card:nth-child(4) .feature-icon i,
.feature-card:nth-child(4) .icon-pulse {
    color: #6c63ff;
    background: #6c63ff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.15; }
}

.feature-title {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: rgba(42, 110, 204, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-card:nth-child(2) .tag {
    background: rgba(255, 126, 48, 0.1);
    color: var(--secondary);
}

.feature-card:nth-child(4) .tag {
    background: rgba(108, 99, 255, 0.1);
    color: #6c63ff;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.feature-card:nth-child(2) .stat strong {
    color: var(--secondary);
}

.feature-card:nth-child(4) .stat strong {
    color: #6c63ff;
}

.stat span {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 500;
}

/* Feature Image */
.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.6s ease;
}

.feature-card.reverse .feature-image {
    transform: perspective(1000px) rotateY(10deg);
}

.feature-card:hover .feature-image {
    transform: perspective(1000px) rotateY(0deg);
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: floatBadge 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .image-badge {
    color: var(--secondary);
}

.feature-card:nth-child(4) .image-badge {
    color: #6c63ff;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Banner */

/* FIX — Stats Banner Visibility */
.stats-banner .stat-number,
.stats-banner .stat-label {
    color: #fff !important;
}

.stats-banner .stat-content {
    color: #fff !important;
}



.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="60" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 30px;
    color: var(--white);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.choose-cta {
    background: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    border-radius: 20px;
    padding: 60px;
    text-align: center;

}

.cta-content h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .feature-card {
        gap: 40px;
    }

    .feature-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .feature-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-card.reverse {
        direction: ltr;
    }

    .feature-image {
        transform: none !important;
        order: -1;
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-cta {
        padding: 40px;
    }

    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .features-container {
        gap: 60px;
        margin-bottom: 60px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .choose-cta {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .feature-content {
        padding: 20px 0;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 30px;
    }

    .feature-tags {
        gap: 8px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .stat strong {
        font-size: 28px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .feature-number {
        font-size: 60px;
    }
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.white-blue{

    background: linear-gradient(135deg, #1e3a5f 0%, #3b5f8a 100%);
    border-radius:  20px;;

}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.solutions-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;

}

.header-content {
    flex: 1;
}

.header-content .highlight {
    color: var(--secondary);
    position: relative;
}

.header-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 126, 48, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-title {
    font-size: 48px;
    color: var(--white);
    margin: 15px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.view-all-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Solution Card */
.solution-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.solution-card:hover .card-hover {
    opacity: 0.1;
}

.card-inner {
    position: relative;
    z-index: 1;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.card-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 36px;
    color: var(--secondary);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 20px;
    opacity: 0.1;
    filter: blur(10px);
}

.solution-card:hover .card-icon i {
    transform: scale(1.1) rotate(10deg);
}

.card-badge {
    padding: 6px 12px;
    background: rgba(255, 126, 48, 0.2);
    color: var(--secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content */
.card-title {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.card-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card Features */
.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.card-features i {
    color: var(--secondary);
    font-size: 18px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 12px;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

.service-tags {
    display: flex;
    gap: 8px;
}

.service-tags .tag {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Additional Solutions */
.additional-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.solution-card.compact {
    padding: 30px;
}

.solution-card.compact .card-inner {
    padding: 0;
    gap: 20px;
}

.solution-card.compact .card-header {
    margin-bottom: 0;
}

.solution-card.compact .card-icon {
    width: 50px;
    height: 50px;
}

.solution-card.compact .card-icon i {
    font-size: 24px;
}

.solution-card.compact .card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.solution-card.compact .card-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.compact-link {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.compact-link:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* CTA Section */
.solutions-cta {
    background: linear-gradient(135deg, rgba(255, 126, 48, 0.1), rgba(42, 110, 204, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 32px;
    color: var(--white);
}

.cta-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cta-btn {
    padding: 16px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    min-width: 140px;
    justify-content: center;
}

.cta-btn.primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 126, 48, 0.3);
}

.cta-btn.primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 126, 48, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-solutions {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .solutions-header {
        flex-direction: column;
    }

    .header-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .solutions-cta {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .additional-solutions {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-inner {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .additional-solutions {
        grid-template-columns: 1fr;
    }

    .card-inner {
        padding: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 28px;
    }

    .card-title {
        font-size: 20px;
    }

    .solutions-cta {
        padding: 30px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><circle cx="40" cy="40" r="3" fill="%232a6ecc" opacity="0.05"/><circle cx="160" cy="80" r="3" fill="%23ff7e30" opacity="0.05"/><circle cx="80" cy="160" r="3" fill="%231a4fa0" opacity="0.05"/></svg>');
}

/* Section Header */
.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials-header .highlight {
    color: var(--primary);
    position: relative;
}

.testimonials-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 20px;
}

/* Stats Bar */
.testimonials-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Carousel Container */
.testimonials-carousel {
    position: relative;
    margin-bottom: 80px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    gap: 30px;
    padding: 10px;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.card-content {
    margin-bottom: 30px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.1), rgba(42, 110, 204, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 28px;
    color: var(--primary);
}

.testimonial-text {
    font-size: 17px;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 10px;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    font-size: 20px;
    color: var(--secondary);
}

.rating-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.client-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
    opacity: 0.3;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-position {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.client-service {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.client-service i {
    font-size: 16px;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    border-radius: 50%;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--primary);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* CTA Section */
.testimonials-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.testimonials-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 32px;
    color: var(--white);
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    opacity: 0.9;
    font-size: 16px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.secondary-btn {
    padding: 16px 30px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }

    .testimonials-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - 30px);
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }

    .testimonials-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonials-stats {
        padding: 30px;
        margin-bottom: 60px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

    .carousel-nav {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-dots {
        order: -1;
    }

    .testimonials-cta {
        padding: 30px;
    }

    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 32px;
    }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><path d="M50,30 Q75,20 100,30 T150,30" stroke="%232a6ecc" stroke-width="1" fill="none" opacity="0.03"/><path d="M30,100 Q55,90 80,100 T130,100" stroke="%23ff7e30" stroke-width="1" fill="none" opacity="0.03"/><path d="M70,170 Q95,160 120,170 T170,170" stroke="%231a4fa0" stroke-width="1" fill="none" opacity="0.03"/></svg>');
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

/* Contact Header */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-header .highlight {
    color: var(--primary);
    position: relative;
}

.contact-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(42, 110, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 20px;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Contact Info */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 28px;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 15px;
    opacity: 0.1;
    filter: blur(10px);
}

.contact-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 15px;
}

.contact-detail i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
}

.office-hours, .emergency-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 8px 12px;
    background: rgba(42, 110, 204, 0.05);
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary);
}

.emergency-badge {
    background: rgba(255, 126, 48, 0.1);
    color: var(--secondary);
    font-weight: 500;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 6px;
    height: 6px;
    background: rgba(42, 110, 204, 0.2);
    border-radius: 50%;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.method:hover {
    transform: translateX(10px);
    border-color: var(--primary-light);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 24px;
    color: var(--white);
}

.method h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.method p {
    font-size: 14px;
    color: var(--gray);
}

.method-link {
    margin-left: auto;
    width: 40px;
    height: 40px;
    background: rgba(42, 110, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.method-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.form-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-icon i {
    font-size: 28px;
    color: var(--white);
}

.form-header h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.form-header p {
    font-size: 15px;
    color: var(--gray);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-with-icon, .select-with-icon {
    position: relative;
}

.input-with-icon i, .select-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
    z-index: 2;
}

.input-with-icon textarea + i {
    top: 20px;
    transform: none;
}

.input-with-icon input,
.input-with-icon textarea,
.select-with-icon select {
    width: 100%;
    padding: 16px 15px 16px 45px;
    border: 2px solid #e1e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--gray-dark);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.input-with-icon textarea {
    padding-top: 20px;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.select-with-icon select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
    pointer-events: none;
    z-index: 2;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 45px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    z-index: 2;
}

.form-group:focus-within .input-focus-line {
    width: calc(100% - 45px);
}

.input-with-icon input:focus,
.input-with-icon textarea:focus,
.select-with-icon select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 5px 15px rgba(42, 110, 204, 0.1);
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
    opacity: 0.7;
}

/* Form Options */
.form-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    font-size: 14px;
    color: var(--gray);
    transition: color 0.3s ease;
}

.checkbox-option:hover {
    color: var(--primary-dark);
}

.checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid #e1e8f0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-option:hover .checkmark {
    border-color: var(--primary);
}

.checkbox-option input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-option input:checked ~ .checkmark:after {
    display: block;
}

.option-text {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Submit Button */
.submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(42, 110, 204, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transition: left 0.5s ease;
    z-index: 1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 110, 204, 0.4);
}

.btn-text, .btn-icon {
    position: relative;
    z-index: 2;
}

.btn-icon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon i {
    transform: translateX(5px);
}

.btn-loader {
    display: none;
    position: absolute;
    z-index: 2;
    gap: 5px;
}

.btn-loader.active {
    display: flex;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: loaderBounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Form Footer */
.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e8f0;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}

.form-note i {
    color: var(--primary);
    font-size: 14px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
}

.newsletter-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
    margin-bottom: 50px;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-badge i {
    font-size: 16px;
}

.newsletter-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.newsletter-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.newsletter-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.newsletter-stats .stat {
    text-align: center;
}

.newsletter-stats .stat-number {
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 5px;
}

.newsletter-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Form */
.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.input-with-icon {
    flex: 1;
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 20px;
    opacity: 0.8;
}

.input-with-icon input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.input-with-icon input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-btn {
    padding: 0 35px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 126, 48, 0.3);
}

.subscribe-btn .btn-icon i {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover .btn-icon i {
    transform: translateX(5px);
}

.newsletter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.checkbox-option.small {
    padding-left: 28px;
    font-size: 13px;
}

.checkbox-option.small .checkmark {
    height: 16px;
    width: 16px;
}

.checkbox-option.small .option-text {
    color: rgba(255, 255, 255, 0.9);
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.privacy-note i {
    font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-content {
        gap: 40px;
    }

    .newsletter-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        position: static;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .input-group {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }

    .newsletter-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .method {
        padding: 20px;
    }

    .form-wrapper {
        padding: 30px 25px;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-form {
        padding: 30px 25px;
    }
}




/* ===== FOOTER SECTION ===== */
.footer-section {
    background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none"/><circle cx="30" cy="30" r="2" fill="white" opacity="0.05"/><circle cx="170" cy="80" r="2" fill="white" opacity="0.05"/><circle cx="100" cy="170" r="2" fill="white" opacity="0.05"/></svg>');
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(255, 126, 48, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 126, 48, 0.4);
}

.back-to-top .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    pointer-events: none;
}

.back-to-top .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-dark) transparent transparent transparent;
}

.back-to-top:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Company Info */
.company-info {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    background-color: var(--white); /* or any light color that contrasts with footer */
    padding: 5px;                  /* adds space inside the border */
    border: 1px solid rgba(255,255,255,0.2); /* subtle border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
}

.company-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--secondary);
    font-size: 16px;
    width: 20px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    max-width: fit-content;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 126, 48, 0.3);
}

/* Footer Links */
.footer-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-links a i {
    font-size: 12px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Newsletter */
.footer-newsletter {
    margin-bottom: 30px;
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form-small .input-group {
    position: relative;
    display: flex;
}

.newsletter-form-small input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 0 0 10px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form-small input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
}

.newsletter-form-small input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
    padding: 0 20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    border-radius: 0 10px 10px 0;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: scale(1.05);
}

/* Gallery */
.footer-gallery {
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 20px;
    color: var(--white);
}

/* Certifications */
.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.cert-badge i {
    color: var(--secondary);
    font-size: 14px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
    margin: 40px 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

.company-number {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 110, 204, 0.3);
}

.social-icon .social-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    pointer-events: none;
}

.social-icon .social-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-dark) transparent transparent transparent;
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer Extra Links */
.footer-extra {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-extra a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-extra a:hover {
    color: var(--secondary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .company-info {
        grid-column: span 3;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .footer-section {
        padding: 80px 0 0;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .company-info {
        grid-column: span 2;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-info {
        grid-column: span 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-extra {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-certifications {
        justify-content: center;
    }
}


/**********************THESE ARE THE SINGLE PAGES FOR JUMATECH PAGES PAGES **********************/

/*SERVICES PAGE********************SERVICES PAGE ******************************SERVICES PAGE**********************SERVICES*/



/* ===== HERO SECTION WITH SLIDER ===== */
.juma-hero {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #0c2b5e 0%, #1a4fa0 50%, #2a6ecc 100%);
    padding: 100px 0 150px;
    overflow: hidden;
}

.juma-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/electronics.jpg");
    opacity: 0.5;
}

.juma-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.juma-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.juma-slide.active {
    opacity: 1;
}

.juma-slide-1 {
    background-image: linear-gradient(rgba(12, 43, 94, 0.85), rgba(26, 79, 160, 0.9)), url('../images/bio_ma.jpg');
}

.juma-slide-2 {
    background-image: linear-gradient(rgba(12, 43, 94, 0.85), rgba(26, 79, 160, 0.9)), url('../images/electricity1.jpg');
}

.juma-slide-3 {
    background-image: linear-gradient(rgba(12, 43, 94, 0.85), rgba(26, 79, 160, 0.9)), url('../images/solar_top.jpg');
}

.juma-slide-4 {
    background-image: linear-gradient(rgba(12, 43, 94, 0.85), rgba(26, 79, 160, 0.9)), url('../images/try4.jpg');
}

.juma-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.juma-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 126, 48, 0.2);
}

.juma-hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.juma-hero-title span {
    color: var(--secondary);
    position: relative;
}

.juma-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 126, 48, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.juma-hero-subtitle {
    margin-top: 20px;
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 300;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.juma-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.juma-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 16px 32px;
    border: none;
    color: var(--white);
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 110, 204, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.juma-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transition: left 0.5s ease;
    z-index: -1;
}

.juma-btn-primary:hover::before {
    left: 0;
}

.juma-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 110, 204, 0.4);
}

.juma-btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.juma-btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--white);
}

.juma-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.juma-stat {
    text-align: center;
}

.juma-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.juma-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.juma-slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 15px;
}

.juma-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.juma-slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* ===== FEATURED SERVICE MODULE ===== */
.juma-featured-service {
    padding: 120px 0;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.juma-featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.juma-featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.juma-featured-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.juma-featured-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.juma-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.juma-featured-image:hover img {
    transform: scale(1.05);
}

.juma-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 126, 48, 0.2);
}

.juma-featured-content h2 {
    color: var(--black);
    font-size: 42px;
    margin: 10px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.juma-featured-description {
    color: var(--gray);
    margin: 0 0 30px;
    line-height: 1.8;
    font-weight: 400;
    font-size: 17px;
}

.juma-featured-advantages {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.juma-advantage {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray-dark);
}

.juma-advantage i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.juma-price-contact {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.juma-price-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.juma-price-contact h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.juma-price-contact p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
}

/* ===== PROBLEM-SOLUTION SECTION ===== */
.juma-problem-solution {
    padding: 120px 0;
    background: var(--white);
}

.juma-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.juma-section-header h2 {
    color: var(--black);
    font-size: 42px;
    margin: 10px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.juma-section-header p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.juma-problem-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.juma-problem-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
}

.juma-solution-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.juma-problem-item:hover,
.juma-solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.juma-problem-title,
.juma-solution-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.juma-problem-title i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.juma-solution-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.juma-problem-title h3,
.juma-solution-title h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.juma-problem-content,
.juma-solution-content {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* ===== BENEFITS SECTION ===== */
.juma-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.juma-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.juma-benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.juma-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.juma-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(42, 110, 204, 0.2);
}

.juma-benefit-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.juma-benefit-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.juma-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
}

/* ---- Section Intro ---- */
.juma-services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.juma-services-intro h2 {
    font-size: 42px;
    color: var(--black);
    margin: 10px 0 20px;
    font-weight: 700;
    line-height: 1.2;
}

.juma-services-intro p {
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* ---- Services Grid ---- */
.juma-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ---- Individual Cards ---- */
.juma-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.juma-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.juma-service-card:hover::before {
    opacity: 0.05;
}

.juma-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ---- Service Image Header ---- */
.juma-service-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.juma-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.juma-service-card:hover .juma-service-image img {
    transform: scale(1.08);
}

/* ---- Content ---- */
.juma-service-content {
    position: relative;
    z-index: 1;
}

.juma-service-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.juma-service-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

/* ---- Features List ---- */
.juma-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.juma-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.juma-service-features i {
    color: var(--secondary);
}

/* ---- Call-to-action Button ---- */
.juma-service-btn {
    display: inline-block;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(42, 110, 204, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.juma-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transition: left 0.5s ease;
    z-index: -1;
}

.juma-service-btn:hover::before {
    left: 0;
}

.juma-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 110, 204, 0.3);
}

/* ===== SERVICE DETAILS POP-UP ===== */
.juma-service-details {
    margin-top: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: none;
    position: relative;
}

.juma-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.juma-details-header h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 700;
}

.juma-close-details {
    background: var(--gray-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.juma-close-details:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ---- Details Body ---- */
.juma-details-content {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* ===== BRANDS SECTION ===== */
.juma-brands-section {
    padding: 80px 20px;
    background: var(--gray-light);
    text-align: center;
    margin-top: 80px;
}

.juma-brands-section h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.juma-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.juma-brand-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.juma-brand-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.juma-brand-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.juma-brand-item:hover img {
    filter: grayscale(0%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .juma-hero-title {
        font-size: 48px;
    }

    .juma-featured-container {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .juma-hero-title {
        font-size: 40px;
    }

    .juma-hero-subtitle {
        font-size: 17px;
    }

    .juma-featured-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .juma-featured-image img {
        height: 400px;
    }

    .juma-featured-content h2,
    .juma-section-header h2,
    .juma-services-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .juma-hero {
        padding: 80px 0 120px;
    }

    .juma-hero-title {
        font-size: 36px;
    }

    .juma-hero-subtitle {
        font-size: 16px;
    }

    .juma-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .juma-hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .juma-stat-number {
        font-size: 2rem;
    }

    .juma-featured-content h2,
    .juma-section-header h2,
    .juma-services-intro h2 {
        font-size: 32px;
    }

    .juma-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .juma-hero-title {
        font-size: 32px;
    }

    .juma-hero-subtitle {
        font-size: 15px;
    }

    .juma-featured-image img {
        height: 300px;
    }

    .juma-problem-item,
    .juma-solution-item {
        padding: 30px;
    }

    .juma-benefits-grid {
        grid-template-columns: 1fr;
    }

    .juma-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/*SERVICES PAGE********************SERVICES PAGE ******************************SERVICES PAGE**********************SERVICES*/


/* ===== ABOUT PAGE UNIQUE CLASSES ===== */
/* ===== HERO SECTION - FULL WIDTH WITH OVERLAY ===== */
.about-jumatech-hero-section {
    position: relative;
    height: 90vh;
    min-height: 800px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
}

.about-jumatech-hero-container {
    width: 100%;
    height: 100%;
    position: relative;
}



.about-jumatech-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: imageReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: scale(1.1);
    filter: brightness(0.7);
    will-change: transform, filter;
}

@keyframes imageReveal {
    0% {
        transform: scale(1.1);
        filter: brightness(0.5) blur(5px);
    }
    100% {
        transform: scale(1);
        filter: brightness(0.7) blur(0);
    }
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            135deg,
            rgba(33, 37, 41, 0.85) 0%,
            rgba(42, 110, 204, 0.4) 50%,
            rgba(255, 126, 48, 0.2) 100%
    );
    z-index: 1;
    animation: overlayFade 1.8s ease-out forwards;
    opacity: 0;
}

@keyframes overlayFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.about-jumatech-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 20px;
}

.about-jumatech-hero-text {
    max-width: 650px;
    animation: textSlideIn 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
    color: var(--white);
    max-width: 650px;
    margin-left: 80px;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-jumatech-hero-text .sub-heading {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-block;
}

.about-jumatech-hero-text .sub-heading::after {
    background-color: var(--secondary);
    width: 50px;
    height: 3px;
}

.about-jumatech-hero-text .heading {
    font-size: 3.8rem;
    line-height: 1.1;
    margin: 15px 0 25px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-jumatech-hero-text .heading .company-name {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.about-jumatech-hero-text .heading .company-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 126, 48, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.about-jumatech-hero-text .desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
}

.about-jumatech-hero-text .common-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    font-size: 1.1rem;
    padding: 18px 36px;
    box-shadow: 0 6px 20px rgba(255, 126, 48, 0.4);
    animation: buttonPulse 2s infinite alternate;
}

.about-jumatech-hero-text .common-btn::before {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 6px 20px rgba(255, 126, 48, 0.4);
    }
    100% {
        box-shadow: 0 6px 25px rgba(255, 126, 48, 0.6), 0 0 15px rgba(255, 126, 48, 0.3);
    }
}

/* Hover effects for image */
.hero-main-image {
    transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 3s ease;
}

.about-jumatech-hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Add scroll indicator for hero section */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 2s forwards;
    opacity: 0;
}

.hero-scroll-indicator i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== BIOMEDICAL PROJECT SHOWCASE ===== */
.jumatech-project-showcase {
    margin-top: 30px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: url("../images/bio_med_eng.jpg"); /* Replace with your real image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Dark gradient overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            rgba(26, 79, 160, 0.85),
            rgba(0, 0, 0, 0.6)
    );
    z-index: 1;
}

/* Content */
.project-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white);
    animation: slideFadeUp 1.2s ease forwards;
}

.jumatech-project-showcase .heading {
    color: var(--white);
}

.jumatech-project-showcase .desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Highlights list */
.project-highlights {
    list-style: none;
    margin-bottom: 35px;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--gray-light);
    animation: fadeInLeft 0.8s ease forwards;
}

.project-highlights i {
    color: var(--secondary);
    font-size: 18px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .jumatech-project-showcase {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .heading {
        font-size: 34px;
    }
}



/* ===== MISSION & VISION ===== */
.about-jumatech-mv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.03) 0%, rgba(255, 126, 48, 0.03) 100%);
    position: relative;
}

.about-jumatech-mv-section .container > div {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-jumatech-mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.about-jumatech-mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-jumatech-mv-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.about-jumatech-mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 110, 204, 0.15);
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255, 126, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.about-jumatech-mv-card:hover .mv-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    transform: rotateY(180deg);
}

.mv-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
}

.mv-desc {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== VALUES SECTION ===== */
.about-jumatech-values-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-jumatech-values-section .container > div {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-jumatech-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-jumatech-value-item {
    background: var(--gray-light);
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(42, 110, 204, 0.1);
}

.about-jumatech-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 110, 204, 0.15);
    border-color: rgba(42, 110, 204, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(42, 110, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.about-jumatech-value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(15deg);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.about-jumatech-value-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== GOALS SECTION ===== */
.about-jumatech-goals-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.03) 0%, rgba(255, 126, 48, 0.03) 100%);
}

.about-jumatech-goals-section .container > div {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-jumatech-goals-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.about-jumatech-goal-item {
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-jumatech-goal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.about-jumatech-goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(42, 110, 204, 0.15);
}

.goal-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 15px rgba(42, 110, 204, 0.3);
}

.goal-text {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.about-jumatech-cta-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-jumatech-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-jumatech-cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-heading {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.cta-btn {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 18px 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-btn::before {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {

    .about-jumatech-hero-text {
        padding-left: 120px;
    }

    .about-jumatech-hero-text .heading {
        font-size: 3.2rem;
    }

    .about-jumatech-hero-section {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 992px) {
    .about-jumatech-hero-text .heading {
        font-size: 2.8rem;
    }

    .about-jumatech-hero-text .desc {
        font-size: 1.1rem;
    }

    .about-jumatech-hero-section {
        height: 75vh;
        min-height: 550px;
    }
}

@media (max-width: 768px) {
    .about-jumatech-hero-text {
        text-align: center;
        padding: 0 15px;
    }

    .about-jumatech-hero-text .heading {
        font-size: 2.4rem;
    }

    .about-jumatech-hero-text .desc {
        font-size: 1rem;
    }

    .about-jumatech-hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .about-jumatech-hero-content {
        justify-content: center;
    }

    .heading {
        font-size: 2.2rem;
    }

    .about-jumatech-stats-grid,
    .about-jumatech-mv-grid,
    .about-jumatech-values-grid {
        grid-template-columns: 1fr;
    }

    .about-jumatech-goal-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-jumatech-hero-section {
        padding-top: 40px;

    }

    .about-jumatech-hero-text {
        max-width: 650px;
        padding: 0 20px;          /* safe mobile spacing */
        text-align: center;       /* center on mobile */
        margin: 0 auto;
    }


    .about-jumatech-hero-text .heading {
        font-size: 2rem;
    }

    .about-jumatech-hero-text .sub-heading {
        font-size: 16px;
    }

    .about-jumatech-hero-text .common-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .about-jumatech-hero-section {
        height: 65vh;
        min-height: 450px;
    }

    .heading {
        font-size: 1.8rem;
    }

    .common-btn {
        padding: 14px 28px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }
}

/* Ensure content is visible on very small screens */
@media (max-width: 400px) {
    .about-jumatech-hero-text .heading {
        font-size: 1.8rem;
    }

    .about-jumatech-hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }
}



/* =====PORTFOLIO PAGE HEADER ===== */
.portfolio-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-header::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.portfolio-header .container {
    position: relative;
    z-index: 2;
}

.portfolio-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.portfolio-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 40px;
}

/* ===== FILTER TABS ===== */
.portfolio-filter {
    background-color: var(--gray-light);
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    background: rgba(42, 110, 204, 0.1);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(42, 110, 204, 0.3);
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 110, 204, 0.15);;
}

.portfolio-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 79, 160, 0.9), rgba(42, 110, 204, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-project {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .view-project {
    transform: translateY(0);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    background: rgba(42, 110, 204, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--black);
}

.portfolio-description {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.portfolio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.portfolio-feature {
    background: var(--gray-light);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-dark);
}

/* ===== FEATURED PROJECT ===== */
.featured-project {
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.03) 0%, rgba(255, 126, 48, 0.03) 100%);
}

.featured-content {
    margin-top: 10px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.achievements {
    margin: 30px 0;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    background: rgba(42, 110, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}



/* ===== TESTIMONIALS ===== */
.juma-testimonials-section {
    background-color: var(--white);
}

.juma-testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.juma-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.juma-testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.juma-testimonial-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.juma-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(42, 110, 204, 0.1);
}

.juma-testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.juma-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.juma-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.juma-author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.juma-author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.juma-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.juma-slider-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.juma-slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}



/* ===== CTA ===== */
.portfolio-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.03) 0%, rgba(255, 126, 48, 0.03) 100%);
}

/* ===== FOOTER ===== */
.portfolio-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .portfolio-header h1 {
        font-size: 2.8rem;
    }

    .heading {
        font-size: 2.5rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {


    .portfolio-header {
        padding: 60px 0 100px;
    }

    .portfolio-header h1 {
        font-size: 2.4rem;
    }

    .heading {
        font-size: 2.2rem;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .portfolio-header h1 {
        font-size: 2rem;
    }

}



/****************CONTACT USE PAGE FOR JUMATECH***************************/


/* ===== CONTACT HERO ===== */
#jumatech-contact-hero {
    position: relative;
    margin-top: 80px;
    padding: 120px 0;
    background: linear-gradient(135deg, #3b6fc4 0%, #6fa3e8 50%, #9cc4f5 100%);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;

}

.ctu-page{
    color: white;
}

#jumatech-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/house_solar1.jpg') center center/cover no-repeat;
    animation: zoomPan 30s infinite alternate ease-in-out;
}

@keyframes zoomPan {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(-20px); }
}

#jumatech-contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 43, 94, 0.9) 0%, rgba(26, 79, 160, 0.85) 50%, rgba(42, 110, 204, 0.8) 100%);
    color: white;
}

.jumatech-contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;

}

/* Floating Elements in Hero */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle, var(--primary-light), transparent 50%);
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: radial-gradient(circle, var(--secondary), transparent 50%);
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    background: radial-gradient(circle, var(--primary), transparent 50%);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== CONTACT SECTION ===== */
#jumatech-contact-section {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

#jumatech-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 10% 20%, rgba(42, 110, 204, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(255, 126, 48, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.jumatech-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* ===== CONTACT INFO ===== */
.jumatech-contact-info {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.jumatech-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
}

.jumatech-contact-info h3 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.jumatech-contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.jumatech-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.jumatech-contact-info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.jumatech-contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.jumatech-contact-info-item:hover::before {
    opacity: 1;
}

.jumatech-contact-info-item i {
    font-size: 24px;
    color: var(--primary);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.1), rgba(74, 141, 240, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.jumatech-contact-info-item:hover i {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: rotateY(180deg);
}

.jumatech-contact-info-item-content {
    flex: 1;
}

.jumatech-contact-info-item span,
.jumatech-contact-info-item p {
    display: block;
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.jumatech-contact-info-item span:first-of-type {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 18px;
}

/* ===== CONTACT FORM ===== */
.jumatech-contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.jumatech-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.jumatech-contact-form-wrapper h3 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.jumatech-contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

#jumatech-contact-form {
    display: grid;
    gap: 25px;
}

.jumatech-form-group {
    position: relative;
}

.jumatech-form-group input,
.jumatech-form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--gray-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.jumatech-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.jumatech-form-group input:focus,
.jumatech-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 110, 204, 0.1);
}

.jumatech-form-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 5px;
}

.jumatech-form-group input:focus + label,
.jumatech-form-group input:not(:placeholder-shown) + label,
.jumatech-form-group textarea:focus + label,
.jumatech-form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 14px;
    color: var(--primary);
}

#jumatech-form-status {
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    display: none;
}

#jumatech-form-status.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid #2ecc71;
    display: block;
}

#jumatech-form-status.error {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid #e74c3c;
    display: block;
}

/* ===== MAP SECTION ===== */
#jumatech-map-section {
    padding: 100px 0;
    background: var(--white);
}

.jumatech-map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    position: relative;
}

.jumatech-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 110, 204, 0.1), rgba(255, 126, 48, 0.1));
    z-index: 1;
    pointer-events: none;
}

/* ===== SOCIAL CONNECTIONS ===== */
#jumatech-social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, #f1f5f9 100%);
    text-align: center;
}

.jumatech-social-title {
    color: var(--primary-dark);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.jumatech-social-description {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.6;
}

.jumatech-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jumatech-social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.jumatech-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.jumatech-social-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.jumatech-social-icon:hover::before {
    opacity: 1;
}

.jumatech-social-icon:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.jumatech-social-icon:nth-child(2)::before {
    background: linear-gradient(135deg, #ff7e30, #e06620);
}

.jumatech-social-icon:nth-child(3)::before {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.jumatech-social-icon:nth-child(4)::before {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.jumatech-social-icon:nth-child(5)::before {
    background: linear-gradient(135deg, #0077B5, #005582);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .jumatech-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .heading {
        font-size: 36px;
    }

    #jumatech-contact-hero {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 32px;
    }

    .jumatech-contact-info,
    .jumatech-contact-form-wrapper {
        padding: 30px;
    }

    #jumatech-contact-hero {
        min-height: 50vh;
    }

    .jumatech-social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 28px;
    }

    .desc {
        font-size: 16px;
    }

    .common-btn {
        width: 100%;
        justify-content: center;
    }

    .jumatech-contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .jumatech-social-icons {
        gap: 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* ===== JUMATECH WHATSAPP FLOAT BUTTON ===== */
#jumatech-whatsapp-float {
    position: fixed;
    left: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon */
#jumatech-whatsapp-float i {
    font-size: 24px;
}

/* Hover */
#jumatech-whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Pulse animation */
#jumatech-whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    animation: jumatech-whatsapp-pulse 2s infinite;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
}

@keyframes jumatech-whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Hide text on small screens */
@media (max-width: 480px) {
    .jumatech-whatsapp-text {
        display: none;
    }

    #jumatech-whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }
}
