/* ============================================
   1. CSS VARIABLES (Design System)
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #0099FF;
    --primary-dark: #0077CC;
    --primary-light: rgba(0, 153, 255, 0.1);
    --primary-rgb: 0, 153, 255;
    
    --secondary: #22D3EE;
    --secondary-light: #3bc4ff;
    
    --yellow: #FBB011;
    --yellow-dark: #E09E0E;
    --yellow-darker: #D4900D;
    
    --dark: #021B3A;
    --dark-2: #08244D;
    --dark-3: #03132b;
    --dark-4: #082436;
    --dark-5: #02142f;
    --dark-6: #071d40;
    
    --text: #374151;
    --text-light: #6B7280;
    --text-white: rgba(255, 255, 255, 0.85);
    --text-white-dim: rgba(255, 255, 255, 0.7);
    
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E5E7EB;
    
    /* Typography */
    --heading-font: 'Space Grotesk', sans-serif;
    --body-font: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 40px 0;
    --card-padding: 30px;
    --container-padding: 15px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 15px 40px rgba(0, 153, 255, 0.3);
    --shadow-yellow: 0 10px 30px rgba(251, 176, 17, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   2. BASE & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
    padding: 0;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--heading-font);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-tag::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
}

/* Tag Variants */
.section-tag-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-light);
}

.section-tag-light::before {
    background: var(--secondary-light);
}

.section-tag-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-tag-dark::before {
    background: var(--secondary);
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* Light Title (for dark backgrounds) */
.section-title-light {
    color: var(--white);
}

.section-subtitle-light {
    color: var(--text-white);
}

/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--heading-font);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}

/* Primary - Blue */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* Primary - Yellow */
.btn-yellow {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--yellow);
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--heading-font);
    border: 2px solid var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* Outline White */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Button (White bg, Yellow text) */
.btn-hero {
    background: var(--white);
    color: var(--yellow);
    border: 2px solid var(--white);
}

.btn-hero:hover {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* Button Sizes */
.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-icon:hover i {
    transform: translateX(4px);
}

/* ============================================
   5. HEADER
   ============================================ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
    padding: 0;
}
.cart-icon{
	font-size:20px;
	color:var(--primary);
}
.site-logo {
    height: 32px;
    width: auto;
}

.custom-logo {
    max-height: 32px;
    width: auto;
}

.navbar-nav {
    gap: 28px;
}

.navbar-nav .menu-item {
    list-style: none;
}

.navbar-nav .menu-item a {
    color: var(--dark);
    text-decoration: none;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.navbar-nav .menu-item a:hover {
    color: var(--yellow);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    font-family: var(--heading-font);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    font-size: 1.3rem;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 130px 0;
    background: 
        linear-gradient(
            rgba(3, 20, 50, 0.80),
            rgba(0, 102, 204, 0.70)
        ),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(0, 194, 255, 0.18),
        transparent 40%
    );
    z-index: 1;
}

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

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--secondary-light);
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.hero-title {
    color: var(--white);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    color: var(--text-white);
    font-family: var(--body-font);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 35px;
}

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

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

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Floating Card */
.floating-card {
    position: absolute;
    left: -20px;
    bottom: 30px;
    background: var(--dark-4);
    color: var(--white);
    padding: 15px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary);
}

.floating-card h6 {
    margin: 0;
    color: var(--white);
    font-family: var(--heading-font);
}

.floating-card span {
    font-size: 0.85rem;
}

/* ============================================
   7. STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(90deg, var(--primary), #0ea5e9);
    padding: 40px 0;
}

.stat-item {
    position: relative;
}

.stat-item h3 {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-white);
    font-size: 0.9rem;
    margin: 0;
}

/* Stat Divider */
.stat-divider {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

/* ============================================
   8. ABOUT SECTION
   ============================================ */
.about-section {
    background: rgba(128, 128, 128, 0.08);
    padding: var(--section-padding);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* Overlay Image */
.about-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    z-index: 3;
}

/* Experience Card */
.experience-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    z-index: 3;
    text-align: center;
}

.experience-card h3 {
    color: var(--white);
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.experience-card span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* About Title */
.about-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 5px;
    color: var(--text);
}

.about-features i {
    color: var(--primary);
    margin-top: 3px;
}

/* Decorative Element */
.deco-circle {
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(0, 153, 255, 0.06);
    border-radius: 50%;
    z-index: 1;
}

/* ============================================
   9. SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-image-wrapper {
    position: relative;
}

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

.service-icon {
    position: absolute;
    left: 18px;
    bottom: 15px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.25);
}

.service-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.service-content {
    padding: 32px 25px 25px;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link i {
    transition: var(--transition);
}

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

/* ============================================
   10. PARTNER SECTION
   ============================================ */
.partner-section {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
    padding: var(--section-padding);
    position: relative;
}

.partner-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 5px;
}

.partner-desc {
    color: var(--text-white);
    margin-bottom: 20px;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.partner-feature h6 {
    color: var(--white);
    margin-bottom: 5px;
}

.partner-feature p {
    color: var(--text-white-dim);
    margin: 0;
}

.partner-image-wrapper {
    position: relative;
}

.partner-image {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

/* Partner Badge */
.partner-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    z-index: 3;
    text-align: center;
}

.partner-badge h3 {
    color: var(--white);
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.partner-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ============================================
   11. PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--white);
    padding: var(--section-padding);
}

.process-wrapper {
    position: relative;
    margin-top: 70px;
}

.process-line {
    position: absolute;
    top: 57px;
    left: 8%;
    width: 84%;
    height: 3px;
    background: var(--primary);
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 2;
    text-align: center;
}

.process-number {
    width: 67px;
    height: 67px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 1.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-card h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--light);
    padding: var(--section-padding);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.quote-icon {
    color: #c9edf8;
    font-size: 24px;
    margin-bottom: 15px;
}

.rating {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 25px;
    min-height: 140px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-author h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    line-height: 1.4;
}

/* ============================================
   13. EQUIPMENT SECTION
   ============================================ */
.equipment-section {
    background: var(--dark-5);
    padding: var(--section-padding);
}

.equipment-title {
    color: var(--white);
    font-size: 3.3rem;
    line-height: 1.05;
    margin: 20px 0;
}

.equipment-desc {
    color: var(--text-white-dim);
    max-width: 650px;
    margin-bottom: 40px;
}

.equipment-card {
    background: var(--dark-6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.equipment-card h6 {
    color: var(--white);
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   14. VALUES SECTION
   ============================================ */
.values-section {
    background: var(--light);
    padding: var(--section-padding);
}

.value-card {
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

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

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.value-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   15. CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1565c0 0%, #00c2ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/pattern.png');
    opacity: 0.08;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-white);
    max-width: 750px;
    margin: 0 auto 40px;
}

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

/* ============================================
   16. FOOTER
   ============================================ */
.site-footer {
    background: var(--dark-5);
    color: var(--white);
    padding-top: 80px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 25px;
/*     background: var(--white);
    padding: 10px;
    border-radius: 10px; */
}

.footer-about {
    color: var(--text-white-dim);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
}

.site-footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.site-footer ul li a {
    color: var(--text-white-dim);
    transition: var(--transition);
}

.site-footer ul li a:hover {
    color: var(--yellow);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: var(--text-white-dim);
}

.footer-contact i {
    color: var(--yellow);
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

/* ============================================
   17. UTILITY CLASSES
   ============================================ */
/* Padding */
.section-padding {
    padding: var(--section-padding);
}

/* Backgrounds */
.bg-light {
    background: var(--light);
}
.bg-white {
    background: var(--white);
}
.bg-dark {
    background: var(--dark);
}
.bg-primary {
    background: var(--primary);
}
.bg-semi-dark{
	background:linear-gradient(135deg, var(--dark-3), var(--dark-2))
}

/* Text Colors */
.text-primary {
    color: var(--primary);
}
.text-white {
    color: var(--white);
}
.text-dark {
    color: var(--dark);
}
.text-light {
    color: var(--text-light);
}

/* Borders */
.border-radius-sm {
    border-radius: var(--radius-sm);
}
.border-radius-md {
    border-radius: var(--radius-md);
}
.border-radius-lg {
    border-radius: var(--radius-lg);
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}
.shadow-md {
    box-shadow: var(--shadow-md);
}
.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Position */
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.z-index-2 {
    z-index: 2;
}
.z-index-3 {
    z-index: 3;
}

/* Display */
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.gap-1 {
    gap: 10px;
}
.gap-2 {
    gap: 15px;
}
.gap-3 {
    gap: 20px;
}

/* Text */
.text-center {
    text-align: center;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-decoration-none {
    text-decoration: none;
}

/* ============================================
   18. MEDIA QUERIES
   ============================================ */
/* Tablet */
@media (max-width: 991px) {
    /* Header */
    .site-header {
        padding: 15px 0;
    }
    
    .navbar-collapse {
        margin-top: 20px;
        background: var(--dark-2);
        border-radius: var(--radius-lg);
        padding: 25px;
    }
    
    .navbar-nav {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .navbar-nav .menu-item a {
        display: block;
        padding: 8px 0;
        font-size: 14px;
        color: var(--white);
    }
    
    .btn-header {
        width: 100%;
    }
    
    .site-logo,
    .custom-logo {
        max-height: 28px;
    }
    
    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-wrapper {
        margin-top: 60px;
    }
    
    /* About */
    .about-title {
        font-size: 2.5rem;
    }
    
    /* Partner */
    .partner-title {
        font-size: 2.4rem;
    }
    
    .partner-image-wrapper {
        margin-top: 20px;
    }
    
    /* Process */
    .process-line {
        display: none;
    }
    
    .process-card {
        margin-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .partner-title {
        font-size: 2.2rem;
    }
    
    .equipment-title {
        font-size: 2.2rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-text {
        min-height: auto;
    }
    
    /* Values */
    .value-card {
        padding: 25px 18px;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
    
    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Equipment */
    .equipment-card img {
        height: 100px;
    }
    
    /* Footer */
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    /* Hero */
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .floating-card {
        left: 10px;
        bottom: 10px;
        transform: scale(0.9);
    }
    
    /* About */
    .about-title {
        font-size: 2rem;
    }
    
    .experience-card {
        left: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .about-overlay {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    /* Partner */
    .partner-title {
        font-size: 2rem;
    }
    
    .partner-badge {
        left: 10px;
        padding: 14px;
    }
    
    .partner-badge h3 {
        font-size: 1.5rem;
    }
    
    /* Process */
    .process-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    /* Equipment */
    .equipment-title {
        font-size: 1.8rem;
    }
}


/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Page Hero */
.page-hero {
   padding: 150px 0 50px;
    background: linear-gradient(rgba(3, 20, 50, 0.80), rgba(0, 102, 204, 0.70)), url(../images/hero-bg.jpg);
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.page-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Story Section */
.story-section {
    background: rgba(128, 128, 128, 0.08);
}

.story-content {
    margin-bottom: 30px;
}

.story-text {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.stat-block h3 {
    color: #0099FF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-block span {
    color: #6B7280;
    font-size: 0.9rem;
}

.story-image-wrapper {
    position: relative;
    padding: 20px;
}

.story-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

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

.story-overlay-image {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 3;
}

.story-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--primary);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: #FBB011;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.story-experience-badge h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.story-experience-badge span {
    color: #fff;
    font-size: 0.85rem;
}

/* Mission Vision Values Cards */
.mv-section {
    background: #F8FAFC;
}

.mv-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0099FF;
    font-size: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #021B3A;
}

.mv-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mv-list {
    list-style: none;
    padding: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.mv-list i {
    color: #0099FF;
}


/* Responsive */
@media (max-width: 991px) {
    .team-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .team-image {
        height: 220px;
    }
    
    .team-content {
        padding: 20px 15px;
    }
    
    .team-content h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .team-image {
        height: 200px;
    }
}

/* Timeline Section */
.timeline-section {
    background: #F8FAFC;
    padding: 80px 0;
}

.timeline-wrapper {
    position: relative;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0099FF, #22D3EE);
    z-index: 1;
}

.timeline-card {
    position: relative;
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-top: 30px;
    z-index: 2;
}

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

.timeline-year {
    display: inline-block;
    padding: 6px 18px;
    background: #0099FF;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-dot {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #0099FF;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #0099FF;
    z-index: 3;
}

.timeline-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Choose Section (Variant) */
.why-choose-section {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
    padding: 80px 0;
}

.why-content {
    margin-top: 10px;
}

.why-text {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding: 15px;
	align-items:center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}



.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-item h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
	color:#fff;
}

.why-item img{
	width:75%;
}
.why-item p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}

.why-image-wrapper {
    position: relative;
    padding: 20px;
}

.why-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

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

.why-experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 3;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0099FF;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.why-experience-badge span {
    color: #fff;
    font-size: 1.85rem;
}

.why-overlay-shape {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: rgba(0, 153, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Testimonials Compact */
.testimonials-compact {
    padding: 80px 0;
}

.testimonial-card.compact {
    padding: 25px;
}

.testimonial-card.compact .testimonial-text {
    min-height: auto;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-card.compact .testimonial-author {
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .story-image-wrapper {
        margin-top: 30px;
    }
    
    .story-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    
    
    .timeline-line {
        display: none;
    }
    
    .timeline-card {
        margin-top: 0;
    }
    
    .timeline-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 150px 0 60px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .story-main-image img,
    .why-main-image img {
        height: 300px;
    }
    
    .story-overlay-image {
        width: 120px;
        height: 120px;
        top: -10px;
        right: -10px;
    }
    
    .story-experience-badge {
        padding: 12px 18px;
    }
    
    .story-experience-badge h4 {
        font-size: 1rem;
    }
    
    .mv-card {
        padding: 25px 20px;
    }
    
    .team-image img {
        height: 220px;
    }
    
    .why-experience-badge {
        padding: 12px 18px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .story-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-block {
        text-align: center;
    }
    
    .story-overlay-image {
        width: 80px;
        height: 80px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOLUTIONS PAGE SPECIFIC STYLES
   ============================================ */

/* Solutions Intro */
.solutions-intro {
    background: #ffffff;
}

.intro-text {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.95rem;
}

.intro-feature i {
    color: #0099FF;
    font-size: 1.1rem;
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.intro-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.intro-floating-card {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
}

.floating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0099FF;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.intro-floating-card span {
    color: #fff;
    font-size: 1.25rem;
}

/* Solutions Grid */
.solutions-grid {
    background: #F8FAFC;
}

.solution-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.solution-image {
    position: relative;
    overflow: hidden;
}

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

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

.solution-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #0099FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,153,255,0.25);
}

.solution-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.solution-content {
    padding: 30px 25px 25px;
}

.solution-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,153,255,0.1);
    color: #0099FF;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.solution-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #021B3A;
    margin-bottom: 12px;
}

.solution-content p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.solution-features li {
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    color: #374151;
    font-size: 0.9rem;
}

.solution-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0099FF;
    font-size: 1.2rem;
}

.solution-link {
    color: #0099FF;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Why Solutions Section */
.why-solutions {
    background: #ffffff;
}

.why-solutions-content p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-solutions-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-solutions-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.why-solutions-icon {
    width: 36px;
    height: 36px;
    background: rgba(0,153,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    flex-shrink: 0;
}

.why-solutions-item h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.why-solutions-item p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}

.why-solutions-image-wrapper {
    position: relative;
    padding: 20px;
}

.why-solutions-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.why-solutions-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.why-solutions-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.why-solutions-badge .badge-icon {
    width: 45px;
    height: 45px;
    background: #FBB011;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.why-solutions-badge h4 {
    color: #021B3A;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.why-solutions-badge span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .why-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-main-image img,
    .why-solutions-main-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .intro-floating-card {
        padding: 15px 20px;
    }
    
    .floating-number {
        font-size: 1.8rem;
    }
    
    .solution-image img {
        height: 180px;
    }
    
    .why-solutions-badge {
        padding: 12px 18px;
    }
    
    .why-solutions-badge h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .why-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        margin-bottom: 0;
    }
}


/* ============================================
   WHY CHOOSE US PAGE SPECIFIC STYLES
   ============================================ */

/* Why Choose Intro */
.why-choose-intro {
    background: #ffffff;
}

.intro-content p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.intro-stats .stat-block h3 {
    color: #0099FF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.intro-stats .stat-block span {
    color: #6B7280;
    font-size: 0.9rem;
}

.intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.intro-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.intro-experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.intro-experience-badge .badge-icon {
    width: 45px;
    height: 45px;
    background: #FBB011;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.intro-experience-badge h4 {
    color: #021B3A;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.intro-experience-badge span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Reasons Grid */
.reasons-grid {
    background: #F8FAFC;
}

.reason-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0,153,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.reason-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #021B3A;
    margin-bottom: 12px;
}

.reason-card p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    background: var(--dark-5);
}

.benefits-content p {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,153,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 0;
}
.benefit-item img{
	width:75%;
}
.benefits-image-wrapper {
    position: relative;
    padding: 20px;
}

.benefits-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.benefits-floating-card {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
}

.benefits-floating-card .floating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0099FF;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.benefits-floating-card span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .intro-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-main-image img,
    .benefits-main-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .intro-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .intro-stats .stat-block {
        text-align: center;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .benefits-floating-card {
        padding: 15px 20px;
    }
    
    .benefits-floating-card .floating-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-experience-badge {
        padding: 12px 18px;
    }
    
    .intro-experience-badge h4 {
        font-size: 1rem;
    }
}

/* ============================================
   EQUIPMENT RENTAL PAGE SPECIFIC STYLES
   ============================================ */

/* Rental Intro */
.rental-intro {
    background: #ffffff;
}

.intro-content p {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-features-rental {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.intro-feature-rental {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 0.95rem;
}

.intro-feature-rental i {
    color: #0099FF;
    font-size: 1.1rem;
}

.rental-intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.rental-intro-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.rental-intro-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.rental-intro-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.rental-intro-badge .badge-icon {
    width: 45px;
    height: 45px;
    background: #FBB011;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.rental-intro-badge h4 {
    color: #021B3A;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.rental-intro-badge span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Equipment Categories */
.equipment-categories {
    background: #F8FAFC;
}

.category-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.category-image {
    overflow: hidden;
}

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

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

.category-content {
    padding: 20px;
    text-align: center;
}

.category-icon {
    width: 50px;
    height: 50px;
    margin: -40px auto 15px;
    background: #0099FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,153,255,0.25);
    position: relative;
    z-index: 1;
}

.category-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.category-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #021B3A;
    margin-bottom: 8px;
}

.category-content p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.category-link {
    color: #0099FF;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* Why Rent Section */
.why-rent {
    background: #ffffff;
}

.why-rent-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-rent-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-rent-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.why-rent-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,153,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-rent-item h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.why-rent-item p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}

.why-rent-image-wrapper {
    position: relative;
    padding: 20px;
}

.why-rent-main-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.why-rent-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.why-rent-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
}

.why-rent-badge .badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0099FF;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.why-rent-badge span {
    color: #6B7280;
    font-size: 0.85rem;
}

/* Rental Process */
.rental-process {
    background: #F8FAFC;
}

.rental-step-card {
    text-align: center;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.rental-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    padding: 4px 14px;
    background: #0099FF;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(0,153,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1.3rem;
}

.rental-step-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.rental-step-card p {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .intro-features-rental {
        grid-template-columns: 1fr;
    }
    
    .rental-intro-main-image img,
    .why-rent-main-image img {
        height: 300px;
    }
    
    .rental-intro-badge {
        padding: 12px 18px;
    }
    
    .rental-intro-badge h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .category-image img {
        height: 150px;
    }
    
    .why-rent-badge {
        padding: 12px 18px;
    }
    
    .why-rent-badge .badge-number {
        font-size: 1.5rem;
    }
    
    .rental-step-card {
        padding: 20px 12px;
    }
}

@media (max-width: 576px) {
    .intro-features-rental {
        grid-template-columns: 1fr;
    }
    
    .rental-intro-badge {
        padding: 10px 15px;
    }
    
    .rental-intro-badge h4 {
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    background: #ffffff;
}

.contact-form-wrapper {
    padding-right: 30px;
}

.contact-form-desc {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wpcf7-form p {
    margin-bottom: 0;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #021B3A;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
    color: #374151;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    border-color: #0099FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
    background: #ffffff;
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-form .wpcf7-submit {
    background: #0099FF;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #0077CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

.wpcf7-form .wpcf7-submit:after {
    content: "\f061";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
}

/* Form validation */
.wpcf7-form .wpcf7-not-valid-tip {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 5px;
}

.wpcf7-form .wpcf7-response-output {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    border-color: #10B981;
    color: #065F46;
    background: #D1FAE5;
}

.wpcf7-form .wpcf7-validation-errors {
    border-color: #EF4444;
    color: #991B1B;
    background: #FEE2E2;
}

/* Contact Info */
.contact-info-wrapper {
    background: #F8FAFC;
    padding: 40px 30px;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
}

.contact-info-title {
    font-size: 1.8rem;
    color: #021B3A;
    margin-bottom: 10px;
}

.contact-info-desc {
    color: #6B7280;
    margin-bottom: 30px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-info-content a {
    color: #021B3A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: #0099FF;
}

.contact-info-content p {
    color: #021B3A;
    font-weight: 600;
    margin-bottom: 0;
}

/* Contact Social */
.contact-social {
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.contact-social h5 {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #021B3A;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    text-decoration: none;
}

.social-links a:hover {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 0;
    background: #F8FAFC;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    background: #F8FAFC;
}

.faq-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item h4 {
    font-size: 1.05rem;
    color: #021B3A;
    margin-bottom: 8px;
}

.faq-item p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding-right: 0;
    }
    
    .contact-info-wrapper {
        margin-top: 30px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        gap: 12px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .map-wrapper {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .wpcf7-form .wpcf7-submit {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-items {
        gap: 15px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* ============================================
   FAQ ACCORDION
============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: #0099FF;
}

.faq-accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-accordion-header h4 {
    font-size: 1.05rem;
    color: #021B3A;
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.faq-accordion-header:hover h4 {
    color: #0099FF;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-accordion-header:hover .faq-toggle-icon {
    background: #0099FF;
    color: #ffffff;
}

.faq-accordion-header.active .faq-toggle-icon {
    background: #0099FF;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-accordion-body.open {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-accordion-content {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.8;
    padding-top: 5px;
}

.faq-accordion-content p {
    margin-bottom: 10px;
}

.faq-accordion-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 16px 18px;
    }
    
    .faq-accordion-header h4 {
        font-size: 0.95rem;
    }
    
    .faq-accordion-body.open {
        padding: 0 18px 18px 18px;
    }
    
    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.85rem;
    }
}

/* ============================================
   WOOCOMMERCE STYLES
============================================ */

/* Product Cards */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-content {
    padding: 20px;
    text-align: center;
}

.product-card-content .product-category {
    display: inline-block;
    color: #0099FF;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.product-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #021B3A;
    margin-bottom: 8px;
}

.product-card-content .price {
    display: block;
    color: #0099FF;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Product Gallery */
.product-gallery {
    border-radius: 12px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

.product-gallery-thumbs img {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-gallery-thumbs img:hover {
    opacity: 0.8;
}

/* Add to Cart */
.product-add-to-cart .quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

.product-add-to-cart .quantity input {
    width: 60px;
    padding: 8px 10px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
}

.product-add-to-cart .single_add_to_cart_button {
    background: #0099FF;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-add-to-cart .single_add_to_cart_button:hover {
    background: #0077CC;
    transform: translateY(-2px);
}

/* Cart Page */
.woocommerce-cart table.cart {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart table.cart th {
    text-align: left;
    padding: 12px 16px;
    background: #F8FAFC;
    font-weight: 600;
    color: #021B3A;
}

.woocommerce-cart table.cart td {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
}

.woocommerce-cart table.cart .product-name a {
    color: #021B3A;
    text-decoration: none;
}

.woocommerce-cart table.cart .product-name a:hover {
    color: #0099FF;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 1.2rem;
    color: #021B3A;
    margin-bottom: 15px;
}

/* Checkout Page */
.woocommerce-checkout .checkout {
    display: grid;
    gap: 30px;
}

.woocommerce-checkout .checkout .col-1,
.woocommerce-checkout .checkout .col-2 {
    max-width: 100%;
    padding: 0;
}

.woocommerce-checkout .checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .checkout .woocommerce-shipping-fields h3 {
    font-size: 1.2rem;
    color: #021B3A;
    margin-bottom: 15px;
}

.woocommerce-checkout .checkout .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout .checkout input[type="text"],
.woocommerce-checkout .checkout input[type="email"],
.woocommerce-checkout .checkout input[type="tel"],
.woocommerce-checkout .checkout select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.woocommerce-checkout .checkout input:focus,
.woocommerce-checkout .checkout select:focus {
    border-color: #0099FF;
    outline: none;
}

/* Responsive */
@media (max-width: 991px) {
    .product-main-image img {
        height: 350px;
    }
    
    .woocommerce-checkout .checkout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-main-image img {
        height: 280px;
    }
    
    .woocommerce-cart table.cart {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-main-image img {
        height: 220px;
    }
    
    .product-add-to-cart .quantity {
        display: block;
        margin-bottom: 12px;
    }
    
    .product-add-to-cart .single_add_to_cart_button {
        width: 100%;
    }
}

/* ============================================
   CART PAGE STYLES
============================================ */

/* Empty Cart */
.empty-cart-wrapper {
    padding: 80px 0;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #E5E7EB;
    margin-bottom: 25px;
}

/* Cart Header */
.cart-header {
    background: #F8FAFC;
    padding: 15px 20px;
    border-bottom: 1px solid #E5E7EB;
    display: grid;
    grid-template-columns: 40px 1fr 1fr 1fr 80px;
    gap: 15px;
    font-weight: 600;
    color: #021B3A;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cart Item */
.cart-item {
    display: grid;
    grid-template-columns: 40px 1fr 1fr 1fr 80px;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #F3F4F6;
    align-items: center;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: #FAFBFC;
}

/* Cart Item Quantity */
.cart-item-quantity .quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-quantity .quantity input[type="number"] {
    width: 60px;
    padding: 8px 10px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: #ffffff;
}

.cart-item-quantity .quantity input[type="number"]:focus {
    border-color: #0099FF;
    outline: none;
}

/* Cart Image */
.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #F8FAFC;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Actions */
.cart-actions {
    padding: 20px;
    background: #F8FAFC;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cart-actions .cart-coupon {
    display: flex;
    gap: 10px;
}

.cart-actions .cart-coupon input[type="text"] {
    padding: 10px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: #ffffff;
    min-width: 180px;
}

.cart-actions .cart-coupon input[type="text"]:focus {
    border-color: #0099FF;
    outline: none;
}

/* Cart Totals - Use WooCommerce native styles */
.cart_totals {
    margin: 0;
}

.cart_totals .cart-totals-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart_totals table.shop_table {
    border: none;
    width: 100%;
}

.cart_totals table.shop_table tr {
    border-bottom: 1px solid #F3F4F6;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
    padding: 12px 0;
    border: none;
}

.cart_totals table.shop_table .order-total td,
.cart_totals table.shop_table .order-total th {
    padding-top: 15px;
    border-top: 2px solid #021B3A;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart_totals .wc-proceed-to-checkout {
    padding: 0;
    margin-top: 20px;
}

.cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    background: #0099FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    background: #0077CC;
    transform: translateY(-2px);
}

/* Cross Sell */
.cross-sell-section {
    background: #F8FAFC;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-header {
        grid-template-columns: 30px 1fr 1fr 80px;
        font-size: 0.75rem;
    }
    
    .cart-header > div:nth-child(3) {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 30px 1fr 1fr 80px;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .cart-item-price {
        display: none;
    }
}

@media (max-width: 768px) {
    .cart-header {
        grid-template-columns: 20px 1fr 80px;
        font-size: 0.7rem;
        padding: 10px 12px;
    }
    
    .cart-header > div:nth-child(3),
    .cart-header > div:nth-child(4) {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 20px 1fr 80px;
        gap: 8px;
        padding: 10px 12px;
        flex-wrap: wrap;
    }
    
    .cart-item-price,
    .cart-item-quantity {
        display: none;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .cart-coupon {
        flex-direction: column;
        width: 100%;
    }
    
    .cart-actions .cart-coupon input[type="text"] {
        min-width: auto;
        width: 100%;
    }
    
    .cart-item-image {
        width: 45px;
        height: 45px;
    }
    
    .cart-item-name h5 {
        font-size: 0.85rem;
    }
}

/* ============================================
   CHECKOUT PAGE - COMPLETE STYLES
============================================ */

/* Form Fields */
.woocommerce-checkout .form-row {
    margin-bottom: 18px;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #021B3A;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.woocommerce-checkout .form-row .required {
    color: #EF4444;
    text-decoration: none;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
    color: #374151;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #0099FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
    background: #ffffff;
}

.woocommerce-checkout .form-row textarea {
    min-height: 80px;
    resize: vertical;
}

/* Order Review Table */
#order_review .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

#order_review .shop_table th {
    text-align: left;
    padding: 8px 0;
    font-weight: 600;
    color: #6B7280;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#order_review .shop_table td {
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
}

#order_review .shop_table .product-total {
    text-align: right;
    font-weight: 500;
}

#order_review .shop_table .cart-subtotal td,
#order_review .shop_table .order-total td {
    font-weight: 600;
    color: #021B3A;
}

#order_review .shop_table .order-total td {
    font-size: 1.1rem;
    color: #0099FF;
    padding-top: 15px;
    border-top: 2px solid #021B3A;
}

#order_review .shop_table .order-total th {
    padding-top: 15px;
    border-top: 2px solid #021B3A;
}

#order_review .shop_table .cart_item td {
    padding: 10px 0;
}

/* Payment Methods */
.woocommerce-checkout-payment {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #F3F4F6;
}

.woocommerce-checkout-payment .wc_payment_methods {
    list-style: none;
    padding: 0;
}

.woocommerce-checkout-payment .wc_payment_method {
    margin-bottom: 12px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.woocommerce-checkout-payment .wc_payment_method input[type="radio"] {
    margin-right: 10px;
}

.woocommerce-checkout-payment .wc_payment_method label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #021B3A;
    cursor: pointer;
}

.woocommerce-checkout-payment .wc_payment_method .payment_box {
    margin-top: 10px;
    padding: 12px 16px;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-size: 0.9rem;
    color: #6B7280;
}

/* Place Order Button */
#place_order {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
    background: #0099FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

#place_order:hover {
    background: #0077CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

/* Coupon Form */
.woocommerce-form-coupon-toggle {
    margin-bottom: 20px;
}

.woocommerce-form-coupon-toggle .showcoupon {
    color: #0099FF;
    cursor: pointer;
    text-decoration: underline;
}

.woocommerce-form-coupon-toggle .showcoupon:hover {
    color: #0077CC;
}

.checkout_coupon {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #E5E7EB;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.checkout_coupon p {
    margin: 0;
}

.checkout_coupon .form-row {
    margin: 0;
}

.checkout_coupon input[type="text"] {
    padding: 10px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    min-width: 180px;
}

.checkout_coupon .button {
    padding: 10px 24px;
    background: #0099FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout_coupon .button:hover {
    background: #0077CC;
}

/* Responsive */
@media (max-width: 991px) {
    .checkout-form-wrapper {
        padding: 20px;
    }
    
    .order-summary-wrapper {
        margin-top: 30px;
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 40px 0;
    }
    
    .checkout-form-wrapper {
        padding: 15px;
    }
    
    .woocommerce-checkout .form-row input[type="text"],
    .woocommerce-checkout .form-row input[type="email"],
    .woocommerce-checkout .form-row input[type="tel"],
    .woocommerce-checkout .form-row select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .order-summary-wrapper {
        padding: 15px;
        margin-top: 20px;
    }
    
    .woocommerce-checkout-payment .wc_payment_method {
        padding: 10px 12px;
    }
    
    #place_order {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    .checkout_coupon {
        flex-direction: column;
    }
    
    .checkout_coupon input[type="text"] {
        min-width: auto;
        width: 100%;
    }
    
    .checkout_coupon .button {
        width: 100%;
    }
}


.woocommerce-MyAccount-navigation{
	display:none;
}


/* ============================================
   ORDERS PAGE STYLES
============================================ */

/* Orders Table */
.woocommerce-MyAccount-orders .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-MyAccount-orders .woocommerce-orders-table th {
    background: #F8FAFC;
    border-bottom: 2px solid #E5E7EB;
}

.woocommerce-MyAccount-orders .woocommerce-orders-table td {
    border-bottom: 1px solid #F3F4F6;
}

/* Order Status Badges */
.order-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.order-status-completed {
    background: #D1FAE5;
    color: #065F46;
}

.order-status-processing {
    background: #FEF3C7;
    color: #92400E;
}

.order-status-pending {
    background: #FEE2E2;
    color: #991B1B;
}

.order-status-cancelled {
    background: #FEE2E2;
    color: #991B1B;
}

.order-status-refunded {
    background: #F3F4F6;
    color: #6B7280;
}

/* View Order Page */
.order-details-table {
    width: 100%;
    border-collapse: collapse;
}

.order-details-table th,
.order-details-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #F3F4F6;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-MyAccount-orders .woocommerce-orders-table {
        font-size: 0.85rem;
    }
    
    .woocommerce-MyAccount-orders .woocommerce-orders-table th,
    .woocommerce-MyAccount-orders .woocommerce-orders-table td {
        padding: 8px 10px;
    }
    
    .woocommerce-orders-table__cell-order-actions a {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ============================================
   EQUIPMENT GALLERY - LIGHTBOX STYLES
============================================ */

/* Gallery Main Image */
.gallery-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
}

.gallery-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Gallery Thumbnails */
.gallery-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #0099FF;
    border-radius: 10px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumb-item:hover {
    border-color: #0099FF;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Lightbox Buttons */
#lightbox .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

#lightbox .close-btn:hover {
    transform: scale(1.2);
}

#lightbox .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#lightbox .nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#lightbox .prev-btn {
    left: 30px;
}

#lightbox .next-btn {
    right: 30px;
}

#lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-main-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-main-image img {
        height: 280px;
    }
    
    .thumb-item {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    #lightbox .nav-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    #lightbox .prev-btn {
        left: 10px;
    }
    
    #lightbox .next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-main-image img {
        height: 220px;
    }
    
    .thumb-item {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
}

/* ============================================
    QUOTE MODAL
============================================ */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    max-width: 700px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6B7280;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #EF4444;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: #021B3A;
    margin-bottom: 5px;
}

.modal-content .modal-subtitle {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Form Styling */
.quote-form .form-group {
    margin-bottom: 16px;
}

.quote-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #021B3A;
    margin-bottom: 5px;
}

.quote-form .form-group input,
.quote-form .form-group textarea,
.quote-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #F8FAFC;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus,
.quote-form .form-group select:focus {
    border-color: #0099FF;
    outline: none;
    background: #ffffff;
}

.quote-form .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.quote-form .form-group select {
    appearance: auto;
    cursor: pointer;
}

.quote-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: #0099FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-form .submit-btn:hover {
    background: #0077CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

.quote-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
    CONTACT FORM 7 - QUOTE MODAL STYLES
============================================ */

/* Form Row - Two columns */
.quote-modal .wpcf7-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.quote-modal .wpcf7-form .form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.quote-modal .wpcf7-form .form-group.full {
    margin-bottom: 16px;
}

/* Form Fields */
.quote-modal .wpcf7-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #021B3A;
    margin-bottom: 5px;
}

.quote-modal .wpcf7-form .form-group input,
.quote-modal .wpcf7-form .form-group textarea,
.quote-modal .wpcf7-form .form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #F8FAFC;
    color: #374151;
    font-family: 'Inter', sans-serif;
}

.quote-modal .wpcf7-form .form-group input:focus,
.quote-modal .wpcf7-form .form-group textarea:focus,
.quote-modal .wpcf7-form .form-group select:focus {
    border-color: #0099FF;
    outline: none;
    background: #ffffff;
}

.quote-modal .wpcf7-form .form-group textarea {
    min-height: 80px;
    resize: vertical;
}

/* Submit Button */
.quote-modal .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: #0099FF;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-modal .wpcf7-form .wpcf7-submit:hover {
    background: #0077CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.3);
}

/* Validation */
.quote-modal .wpcf7-form .wpcf7-not-valid-tip {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 4px;
}

.quote-modal .wpcf7-form .wpcf7-response-output {
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 15px;
}

.quote-modal .wpcf7-form .wpcf7-mail-sent-ok {
    border-color: #10B981;
    color: #065F46;
    background: #D1FAE5;
}

.quote-modal .wpcf7-form .wpcf7-validation-errors {
    border-color: #EF4444;
    color: #991B1B;
    background: #FEE2E2;
}

/* Responsive - Stack on mobile */
@media (max-width: 576px) {
    .quote-modal .wpcf7-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .quote-modal .wpcf7-form .form-group.half {
        flex: none;
        width: 100%;
    }
}
.wpcf7 br{
	display:none;
}
/* ============================================
    SWIPER SLIDER CUSTOMIZATION
============================================ */

.services-swiper-wrapper {
    position: relative;
    padding: 0 20px;
}

/* Swiper Container */
.services-swiper {
    overflow: hidden;
    padding: 10px 5px;
}



.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
    display: none;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: #0099FF;
}

.services-swiper .swiper-button-next:hover i,
.services-swiper .swiper-button-prev:hover i {
    color: #ffffff !important;
}

.services-swiper .swiper-button-next i,
.services-swiper .swiper-button-prev i {
    font-size: 1.2rem;
    color: #021B3A;
}

/* Pagination Dots */
.services-swiper .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    opacity: 1;
    transition: all 0.3s ease;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #0099FF;
    transform: scale(1.2);
}

/* Slide Styling */
.services-swiper .swiper-slide {
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .services-swiper-wrapper {
        padding: 0 10px;
    }
    
    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-swiper-wrapper {
        padding: 0 5px;
    }
    
    .services-swiper .swiper-slide {
        padding: 0 5px;
    }
}
.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
    display: none !important;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    background: #ffffff;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    color: #0099FF !important;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: #0099FF;
    color: #ffffff !important;
}

.services-swiper .swiper-button-next i,
.services-swiper .swiper-button-prev i {
    font-size: 1.2rem;
    color: #0099FF;
    transition: color 0.3s ease;
}

.services-swiper .swiper-button-next:hover i,
.services-swiper .swiper-button-prev:hover i {
    color: #ffffff;
}
.swiper-button-prev {
    .swiper-navigation-icon {
     
        display: none;
    }
}
.swiper-button-next, .swiper-button-prev {
    svg {
       
        display: none;
    }
}
/* ============================================
    BRANDS SECTION
============================================ */

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 70px;
    height: 46px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: #0099FF;
    background: #ffffff;
}

.brand-item img {
    max-height: 28px;
    max-width: 70px;
    object-fit: contain;
}

.brand-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

#brandToggleBtn {
    background: none;
    border: none;
    color: #0099FF;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s;
}

#brandToggleBtn:hover {
    color: #0077CC;
}

/* Brand hidden state */
.brand-hidden {
    display: none;
}

/* Responsive */
@media (max-width: 576px) {
    .brand-item {
        min-width: 55px;
        height: 38px;
        padding: 6px 10px;
    }
    
    .brand-item img {
        max-height: 22px;
        max-width: 50px;
    }
}
/* ============================================
    PAGINATION STYLES
============================================ */

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
}

.pagination-wrapper .page-numbers:hover {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.pagination-wrapper .page-numbers.current {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.pagination-wrapper .page-numbers.next,
.pagination-wrapper .page-numbers.prev {
    width: auto;
    padding: 0 16px;
}

.pagination-wrapper .page-numbers.dots {
    border: none;
    background: none;
}

/* Category Filter */
.filter-btn {
    cursor: pointer;
}

.filter-btn.active {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.filter-btn.active:hover {
    background: #0077CC;
    border-color: #0077CC;
}
/* Blog Section */
.blog-card{
    border:none;
    background:#fff;
}
.btn-blog{
	display: flex;
	justify-content: flex-end;
}
.blog-img{
    overflow:hidden;
    border-radius:22px;
    height:240px;
}
.blog-heading {
    margin-bottom: 25px;
}
.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.blog-card:hover .blog-img img{
    transform:scale(1.05);
}
.blog-content{
    padding-top:28px;
}
.blog-meta{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#657080;
    margin-bottom:22px;
}
.blog-meta span{
    margin:0 8px;
}
.blog-title{
    font-size:25px;
    line-height:1.25;
    margin-bottom:20px;
}
.blog-title a{
    color:#0b1d2d;
    text-decoration:none;
}
.blog-excerpt{
    color:#5d6268;
    font-size:16px;
    line-height:1.8;
    margin-bottom:20px;
}

/* Responsive */
@media (max-width: 576px) {
    .pagination-wrapper .page-numbers {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}
/* ============================================
    BLOG PAGE STYLES
============================================ */

/* Category Filter */
.filter-btn {
    cursor: pointer;
}

.filter-btn.active {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.filter-btn.active:hover {
    background: #0077CC;
    border-color: #0077CC;
}

/* Pagination */
.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ffffff;
}

.pagination-wrapper .page-numbers:hover {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.pagination-wrapper .page-numbers.current {
    background: #0099FF;
    color: #ffffff;
    border-color: #0099FF;
}

.pagination-wrapper .page-numbers.next,
.pagination-wrapper .page-numbers.prev {
    width: auto;
    padding: 0 16px;
}

.pagination-wrapper .page-numbers.dots {
    border: none;
    background: none;
}

/* Responsive */
@media (max-width: 768px) {
    .pagination-wrapper .page-numbers {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .category-filter {
        gap: 8px;
    }
    
    .category-filter .btn {
        font-size: 0.75rem !important;
        padding: 6px 14px !important;
    }
}

@media (max-width: 576px) {
    .category-filter {
        gap: 6px;
    }
    
    .category-filter .btn {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }
}
.get-quote-btn{
	padding: 14px 25px;
}
/* ============================================
    EQUIPMENT SWIPER STYLES
============================================ */

.equipment-swiper-wrapper {
    position: relative;
    padding: 0 10px;
}

.equipment-swiper .swiper-slide {
    height: auto;
}

.equipment-swiper .equipment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    padding: 15px;
}

.equipment-swiper .equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.equipment-swiper .swiper-button-next,
.equipment-swiper .swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.equipment-swiper .swiper-button-next::after,
.equipment-swiper .swiper-button-prev::after {
    display: none;
}

.equipment-swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.equipment-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* ============================================
    BLOG SWIPER STYLES
============================================ */

.blog-swiper-wrapper {
    position: relative;
    padding: 0 10px;
}

.blog-swiper .swiper-slide {
    height: auto;
}

.blog-swiper .swiper-button-next,
.blog-swiper .swiper-button-prev {
    color: #0099FF;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.blog-swiper .swiper-button-next::after,
.blog-swiper .swiper-button-prev::after {
    display: none;
}

.blog-swiper .swiper-button-next:hover,
.blog-swiper .swiper-button-prev:hover {
    background: #0099FF;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .equipment-swiper .swiper-button-next,
    .equipment-swiper .swiper-button-prev,
    .blog-swiper .swiper-button-next,
    .blog-swiper .swiper-button-prev {
        display: none;
    }
}
/* ============================================
    TESTIMONIALS SWIPER STYLES
============================================ */

.testimonials-swiper-wrapper {
    position: relative;
    padding: 0 10px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.testimonials-swiper .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: #0099FF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: #0099FF;
    color: #ffffff;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    display: none;
}

.testimonials-swiper .swiper-button-next i,
.testimonials-swiper .swiper-button-prev i {
    font-size: 1.2rem;
    transition: color 0.3s;
}

.testimonials-swiper .swiper-button-next:hover i,
.testimonials-swiper .swiper-button-prev:hover i {
    color: #ffffff;
}

.testimonials-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #0099FF;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }
    
    .testimonials-swiper .testimonial-card {
        padding: 20px;
    }
}
/* 1024px - iPad Pro Landscape */
@media (max-width: 1024px) {
 .get-quote-btn{
	padding: 14px 9px;
}
}

/* ============================================
    HERO IMAGE SLIDER
============================================ */

.hero-image-slider-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.hero-image-slider .swiper-slide {
    position: relative;
}

.hero-image-slider .hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hero-slide-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-left: 4px solid #0099FF;
}

.hero-image-slider .swiper-button-next,
.hero-image-slider .swiper-button-prev {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-image-slider .swiper-button-next:hover,
.hero-image-slider .swiper-button-prev:hover {
    background: rgba(0, 153, 255, 0.8);
}

.hero-image-slider .swiper-button-next::after,
.hero-image-slider .swiper-button-prev::after {
    display: none;
}

.hero-image-slider .swiper-button-next i,
.hero-image-slider .swiper-button-prev i {
    font-size: 1.2rem;
}

.hero-image-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-image-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #0099FF;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-image-slider .hero-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-image-slider .hero-image {
        height: 280px;
    }
    
    .hero-slide-title {
        bottom: 15px;
        left: 15px;
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .hero-image-slider .swiper-button-next,
    .hero-image-slider .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-image-slider .hero-image {
        height: 220px;
    }
    
    .hero-slide-title {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}