/* =============================================
   S.H. ENTERPRISE - EXACT SP TECHNOLOGY STYLE
   Source: sptechnologysolutions.com
   Colors: Orange #E37434 & Dark Blue #13265c
   ============================================= */

:root {
    --primary: #E37434;
    --primary-dark: #c45f25;
    --primary-light: #f08a4a;
    --secondary: #13265c;
    --white: #ffffff;
    --light: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #dee2e6;
    --gray: #6c757d;
    --dark-gray: #495057;
    --text: #212529;
    --text-light: #495057;
    --text-muted: #6c757d;
    --glass: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #E37434 0%, #f08a4a 100%);
    --gradient-secondary: linear-gradient(135deg, #13265c 0%, #1e3a7a 100%);
    --glow-primary: 0 5px 25px rgba(227, 116, 52, 0.25);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Anchor scroll offset for fixed header */
[id] {
    scroll-margin-top: 180px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--light-gray);
    margin: 20px auto;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 1s ease-in-out infinite;
}

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

    100% {
        transform: translateX(350%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Pattern Background */
.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(247, 148, 29, 0.03) 2px, transparent 0);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Top Announcement Bar */
.announcement-bar {
    background: var(--gradient-secondary);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.announcement-bar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.announcement-text .pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.top-social {
    display: flex;
    gap: 8px;
}

.top-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.top-social a:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Contact Bar */
.contact-bar {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.contact-bar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.contact-item i {
    color: var(--primary);
    font-size: 13px;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #28a745;
    font-weight: 500;
}

.working-hours .status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

/* Main Header */
header {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

header .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-primary);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
    animation: logoShine 3s infinite;
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo-icon span {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    line-height: 1.2;
}

.logo-text .tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

nav>ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav>ul>li {
    position: relative;
}

nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px;
}

nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

nav>ul>li>a:hover,
nav>ul>li.active>a {
    color: var(--primary);
}

nav>ul>li>a:hover::after,
nav>ul>li.active>a::after {
    width: 50%;
}

/* Dropdown Arrow */
nav>ul>li.has-dropdown>a i {
    font-size: 10px;
    transition: transform 0.3s;
}

nav>ul>li.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

nav>ul>li.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s;
    border-radius: 0;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 116, 52, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown li a:hover i {
    background: var(--primary);
    color: #fff;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 8px 15px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(19, 38, 92, 0.3);
    border: none;
    cursor: pointer;
}

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

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 116, 52, 0.4);
    background: var(--primary);
}

/* Explore Services specific glow */
.cta-btn.hero-cta {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(227, 116, 52, 0.4);
}

.cta-btn.hero-cta:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(227, 116, 52, 0.8), 0 0 40px rgba(227, 116, 52, 0.6);
    transform: translateY(-2px);
}



/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Go to Top */
.go-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s;
    z-index: 998;
    box-shadow: var(--glow-primary);
}

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

.go-to-top:hover {
    transform: translateY(-4px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    animation: pulse-ring 2s infinite .5s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--secondary);
    overflow: hidden;
}

/* Hero Swiper Slider */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 19, 66, 0.8);
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Swiper Navigation Arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    color: #fff;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats - SP Technology Style Vertical Counters */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.stat-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card h3 span {
    color: var(--primary);
    font-size: 28px;
}

.stat-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--glow-primary);
}

.stat-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247, 148, 29, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 25px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-top: -50px;
    margin-bottom: 20px;
    box-shadow: var(--glow-primary);
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

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

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

/* Solutions Section Background */
.solutions-section {
    background: var(--secondary);
}

.solutions-section .section-header h2,
.solutions-section .section-header p {
    color: #fff;
}

.solutions-section .section-header h2 span {
    color: var(--primary);
}

.solutions-section .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--glow-primary);
}

.experience-badge h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.about-content h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content>p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
}

/* Capacity Section */
.capacity-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.capacity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(196, 30, 58, 0.1) 2px, transparent 0);
    background-size: 50px 50px;
}

.capacity-section .section-header h2 {
    color: #fff;
}

.capacity-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.capacity-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.4s;
}

.capacity-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow-primary);
}

.capacity-card .icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin: 0 auto 15px;
    box-shadow: var(--glow-primary);
}

.capacity-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.capacity-card .unit {
    font-size: 16px;
    color: var(--primary-light);
    margin-top: 5px;
}

.capacity-card .label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

.capacity-card .lead-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 32px;
    color: #fff;
}

.why-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Partners Section */
.partners-section {
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.partner-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.partner-placeholder i {
    font-size: 24px;
    color: #fff;
}

.partner-logo span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Partners Marquee */
.partners-marquee {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 20s linear infinite;
}

.partner-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partner-divider {
    color: var(--primary);
    font-size: 20px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

.cta-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .cta-btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .cta-btn:hover {
    background: var(--text);
    color: #fff;
}

/* CTA Premium Style - SP Technology */
.cta-section.cta-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(227, 116, 52, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(19, 38, 92, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(227, 116, 52, 0.1) 0%, transparent 70%);
    animation: ctaBgPulse 8s ease-in-out infinite;
}

@keyframes ctaBgPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: ctaIconFloat 3s ease-in-out infinite;
}

.cta-icon i {
    font-size: 36px;
    color: #fff;
    animation: ctaIconRotate 6s linear infinite;
}

@keyframes ctaIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes ctaIconRotate {
    0% {
        transform: rotate(0deg);
    }

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

.cta-premium h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-premium h2 span {
    color: var(--primary);
    position: relative;
}

.cta-premium h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.cta-premium p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.cta-glow {
    background: var(--primary);
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 0 30px rgba(227, 116, 52, 0.5);
    animation: ctaGlow 2s ease-in-out infinite;
}

.cta-btn.cta-glow:hover {
    background: var(--primary-light);
    box-shadow: 0 0 50px rgba(227, 116, 52, 0.8);
    transform: translateY(-3px);
}

@keyframes ctaGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(227, 116, 52, 0.5);
    }

    50% {
        box-shadow: 0 0 50px rgba(227, 116, 52, 0.7);
    }
}

.cta-btn-outline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-btn-outline i {
    font-size: 18px;
}

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

    .cta-icon {
        width: 70px;
        height: 70px;
    }

    .cta-icon i {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn.cta-glow,
    .cta-btn-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Footer */
footer {
    background: var(--text);
    color: #fff;
    padding: 80px 0 0;
}

footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-links h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links ul li a i {
    color: var(--primary);
    font-size: 10px;
}

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

.footer-contact h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Footer Logo White */
.footer-about .logo-img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-about .logo .tagline {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 998;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .capacity-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        display: none;
    }

    nav>ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .cta-btn {
        display: none;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stat-card {
        min-width: 100%;
    }

    .about-image::before {
        display: none;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-bar .container {
        justify-content: center;
    }

    .contact-items {
        gap: 15px;
    }

    .working-hours {
        display: none;
    }

    header .container {
        height: 60px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-text .main {
        font-size: 14px;
    }

    .section {
        padding: 60px 0;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    background: var(--light);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.mobile-menu-nav {
    padding: 15px 0;
}

.mobile-menu-nav>ul {
    list-style: none;
}

.mobile-menu-nav>ul>li {
    border-bottom: 1px solid var(--glass-border);
}

.mobile-menu-nav>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--text);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.mobile-menu-nav>ul>li>a:hover,
.mobile-menu-nav>ul>li.active>a {
    color: var(--primary);
    background: rgba(196, 30, 58, 0.05);
}

/* Footer Map */
.footer-map {
    margin-bottom: 40px;
}

.footer-map iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Sister Concern */
.sister-concern {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.sister-concern p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.sister-concern i {
    color: var(--primary);
    margin-right: 8px;
}

.sister-concern strong {
    color: #fff;
}

/* Management Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 400px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-card.owner {
    grid-column: span 1;
}

.team-card .team-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card .team-info {
    padding: 15px;
}

.team-card .team-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.team-card .team-info .position {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card.owner .team-info h4 {
    font-size: 22px;
}

.team-card.owner .team-image {
    height: 320px;
}

/* Owner Card Highlight */
.team-highlight {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.team-highlight .team-card {
    max-width: 350px;
    border: 2px solid var(--primary);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 116, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Certification Section */
.certification-section {
    padding: 80px 0;
    background: var(--light);
}

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

.cert-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-card img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.cert-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 14px;
    color: var(--text-muted);
}

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

    .team-highlight .team-card {
        max-width: 100%;
    }

    .team-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 per row */
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 350px;
    }

    .footer-map iframe {
        height: 200px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10001;
}

.close-btn:hover {
    color: var(--primary);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(19, 38, 92, 0.9) 0%, rgba(19, 38, 92, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-overlay i {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-overlay span {
        font-size: 12px;
        padding: 4px 10px;
    }

    .gallery-overlay i {
        font-size: 24px;
    }
}

/* =============================================
   UNIQUE STRENGTHS SECTION - Hexagon Style
   ============================================= */
.strengths-section {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #13265c 50%, #1a3a6e 100%);
    padding: 100px 0;
    overflow: hidden;
}

.strengths-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(227, 116, 52, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(227, 116, 52, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: particleFloat 10s ease-in-out infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.strength-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 10px 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 116, 52, 0.1), transparent);
    transition: left 0.8s ease;
}

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

.strength-card:hover {
    transform: translateY(-15px);
    border-color: rgba(227, 116, 52, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(227, 116, 52, 0.2);
}

.strength-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(227, 116, 52, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.strength-card:hover .strength-glow {
    opacity: 1;
}

.strength-hexagon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
}

.hexagon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E37434 0%, #f08a4a 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(227, 116, 52, 0.4);
}

.strength-card:hover .hexagon-inner {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(227, 116, 52, 0.5);
}

.hexagon-inner i {
    font-size: 24px;
    color: #fff;
}

.strength-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    display: inline;
    background: linear-gradient(135deg, #fff 0%, #E37434 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-plus {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #E37434;
    margin-left: 2px;
}

.strength-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

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

@media (max-width: 576px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strength-card {
        padding: 30px 20px;
    }

    .strength-hexagon {
        width: 80px;
        height: 80px;
    }

    .hexagon-inner i {
        font-size: 28px;
    }

    .strength-content h3 {
        font-size: 36px;
    }
}

/* =============================================
   ULTRA PREMIUM CTA SECTION
   ============================================= */
.cta-ultra {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 120px 0;
    overflow: hidden;
}

.cta-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(227, 116, 52, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(19, 38, 92, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

.cta-wave-bg svg {
    width: 100%;
    height: 100%;
}

.cta-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #E37434, #f08a4a);
    top: -150px;
    right: -150px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #13265c, #1a3a6e);
    bottom: -80px;
    left: -80px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    top: 40%;
    left: 15%;
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(0, -40px) rotate(0deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

.cta-ultra-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-ultra-content {
    text-align: center;
}

.cta-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(227, 116, 52, 0.3);
}

.cta-tagline i {
    font-size: 14px;
}

.cta-ultra-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 25px;
}

.cta-ultra-content h2 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.cta-ultra-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(227, 116, 52, 0.3), rgba(227, 116, 52, 0.1));
    border-radius: 4px;
    z-index: -1;
}

.cta-ultra-content p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.cta-feature i {
    color: #28a745;
    font-size: 16px;
}

.cta-card {
    background: #fff;
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(227, 116, 52, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(227, 116, 52, 0.2);
    border-color: rgba(227, 116, 52, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E37434, #f08a4a, #E37434);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at bottom, rgba(227, 116, 52, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 116, 52, 0.1) 0%, rgba(227, 116, 52, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-icon {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.cta-card-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: color 0.4s ease;
}

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

.cta-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.cta-card>p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.cta-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(227, 116, 52, 0.3);
}

.cta-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 116, 52, 0.4);
}

.cta-btn-modern i {
    transition: transform 0.3s ease;
}

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

.cta-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--light-gray);
}

.cta-divider span {
    padding: 0 15px;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--light);
    color: var(--secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background: var(--secondary);
    color: #fff;
}

.cta-phone i {
    color: var(--primary);
    transition: color 0.3s ease;
}

.cta-phone:hover i {
    color: #fff;
}

/* CTA Ultra Responsive */
@media (max-width: 992px) {
    .cta-ultra-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-card {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .cta-ultra {
        padding: 60px 0;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   CTA MINI CARD - Compact Centered Style
   ============================================= */
.cta-ultra-single {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-card-mini {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    padding: 20px 35px;
    border-radius: 100px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(227, 116, 52, 0.15);
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-card-mini-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-mini-icon i {
    font-size: 20px;
    color: #fff;
}

.cta-card-mini-content {
    text-align: left;
}

.cta-card-mini-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.cta-card-mini-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.cta-card-mini-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(227, 116, 52, 0.3);
}

.cta-btn-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(227, 116, 52, 0.4);
}

.cta-btn-mini i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-btn-mini:hover i {
    transform: translateX(3px);
}

.cta-or {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-phone-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light);
    color: var(--secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-phone-mini:hover {
    background: var(--secondary);
    color: #fff;
}

.cta-phone-mini i {
    color: var(--primary);
    font-size: 14px;
    transition: color 0.3s ease;
}

.cta-phone-mini:hover i {
    color: #fff;
}

/* CTA Mini Responsive */
@media (max-width: 992px) {
    .cta-card-mini {
        flex-direction: column;
        padding: 30px;
        border-radius: 24px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .cta-card-mini-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-card-mini {
        padding: 25px 20px;
    }

    .cta-card-mini-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-mini,
    .cta-phone-mini {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float i {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.go-to-top {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(227, 116, 52, 0.3);
}

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

.go-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(227, 116, 52, 0.4);
}

/* Modern CTA Button for Gallery */
.cta-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(227, 116, 52, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(227, 116, 52, 0.4);
    color: #fff;
}