﻿/*
Theme
Name:
Nirsun
Theme
Author:
GDM
Agent
Description:
Custom
WordPress
theme
for
Nirsun.
Version:
1.0
*/
:root {
    --bg-color: #ffffff;
    --text-color: #334155;
    --primary-color: #1a428a; /* Deep Corporate Blue */
    --secondary-color: #0ea5e9; /* Cyan/Light Blue */
    --accent-color: #f8fafc;
    --card-bg: #ffffff;
    --footer-bg: #0f172a;
}

* {
    box-sizing: border-box; /* Fixed typo border_box */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #64748b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px; /* Pillow shape as per design */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}


/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: url('../images/biometric_hero_bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.hero-text {
    padding-left: 2rem;
}

.hero h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.products-showcase {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.product-item {
    text-align: center;
}

.product-item img {
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

/* Services Section - User Provided Design */
.services-section {
  background: #c9f6f7;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  overflow: hidden; 
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 5px;
  color: #1a428a;
}

.services-section .subtitle {
  color: #444;
  margin-bottom: 40px;
}

/* Container for carousel + arrows */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

/* Masking Window */
.carousel-window {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; /* Vertical breathing room for shadows */
}

/* cards wrapper - formatting as a slider track */
.services-wrapper {
  display: flex;
  gap: 25px;
  width: max-content; /* Ensure it takes necessary width */
  justify-content: flex-start; 
  flex-wrap: nowrap; /* CRITICAL: Prevent wrapping */
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth eased */
  align-items: center; /* Center vertically */
  margin: 0 auto; /* Start centered if possible, though JS drives transform */
}

/* card style */
.service-card {
  width: 260px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  /* Default scale for non-active */
  transform: scale(0.95);
  opacity: 0.8;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.service-card .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1) 60%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

.service-card p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #e2e8f0;
}

/* buttons */
.btn {
  background: #fff;
  color: #333;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  width: fit-content;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn.dark {
  background: #2f2c8f;
  color: #fff;
}

/* active middle card */
.service-card.active {
  transform: scale(1.05); /* Slight pop */
  opacity: 1;
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* navigation arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  z-index: 10;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.nav-btn.left {
  left: 0; /* Outside the cards area */
}

.nav-btn.right {
  right: 0;
}

/* responsive */
@media (max-width: 768px) {
  .services-wrapper {
    gap: 30px;
  }
  .service-card {
    width: 250px; /* Force consistent width */
  }
  
  .carousel-container {
      padding: 0; /* Full width on mobile */
  }
  
  .nav-btn.left { left: 10px; }
  .nav-btn.right { right: 10px; }
}

/* Certifications */
.cert-section {
    padding: 4rem 0;
    text-align: center;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Certifications */
.cert-section {
    padding: 5rem 0;
    text-align: center;
    background: #fff;
    font-family: 'Outfit', sans-serif;
}

.cert-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.cert-section p {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.cert-card {
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    border: 1px solid #f1f5f9;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Steps Section */
.steps-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon img, .step-icon svg {
    width: 40px;
    height: 40px;
}

.step-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

/* Deals Section */
.deals-section {
    background: #0f172a; /* Dark background */
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.deals-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.deals-text {
    max-width: 50%;
}

.deals-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* FOOTER BASE SPACING */
footer {
    margin-top: 4rem;
}

/* FOOTER GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* FOOTER COLUMNS */
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* SUBSCRIBE FORM */
.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    border: none;
    outline: none;
}

.subscribe-button {
    padding: 0.6rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
}

/* SOCIAL BAR */
.social-bar {
    text-align: center;
    padding: 1rem 0;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .social-icons {
        justify-content: center !important;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Glassmorphism Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}
:root {
    --bg-color: #ffffff;
    --text-color: #334155;
    --primary-color: #1a428a;
    --secondary-color: #0ea5e9;
    --accent-color: #f8fafc;
    --light-bg: #f1f5f9;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1002;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none; /* Hide default nav on mobile */
    }
    
    .search-container {
        display: none; /* Often hidden or moved into menu on mobile */
    }
}

/* Header - Enhanced Version */
.site-header {
    padding: 0.8rem 0;
    background: var(--bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    width: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 70px;
}

/* Logo */
.logo {
    z-index: 1001;
    flex-shrink: 0;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
    filter: brightness(0.95) contrast(1.1);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Desktop Menu */
.nav-links {
    display: flex;
    gap: 2rem; /* Reduced from 2.5rem */
    align-items: center;
    margin-left: 2rem; /* Reduced from 3rem */
    padding: 0;
    margin-top: 1rem;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Search Container */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: 1.5rem; /* Reduced from 3rem */
    flex-shrink: 0;
    width: 240px;
}

/* Quote Button in Header */
.btn-quote {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(26, 66, 138, 0.2);
}

.btn-quote:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 66, 138, 0.3);
}

.btn-quote svg {
    transition: transform 0.3s ease;
}

.btn-quote:hover svg {
    transform: translateX(3px);
}

.search-bar {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    transition: var(--transition);
    width: 100%;
    border: 2px solid transparent;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-left: 1rem;
}

.search-bar:focus-within {
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1),
                inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-bar .search-icon {
    flex-shrink: 0;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.search-bar:focus-within .search-icon {
    stroke: var(--secondary-color);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-color);
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 0;
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-clear {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.search-clear:hover {
    opacity: 1;
    transform: scale(1.1);
}

.search-clear svg {
    fill: var(--text-color);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    display: none;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.search-result-item {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--light-bg);
}

.search-result-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.search-result-text h4 {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.search-result-text p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--light-bg);
}

.menu-toggle:hover {
    background: rgba(14, 165, 233, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-color);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.menu-toggle .hamburger-line:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle .hamburger-line:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.mobile-close {
    background: var(--light-bg);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(239, 68, 68, 0.1);
}

.mobile-close svg {
    fill: var(--text-color);
}

.mobile-search {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mobile-search svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.mobile-search-input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-color);
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    opacity: 1;
    width: 8px;
    height: 8px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.mobile-menu-footer p {
    margin: 0.3rem 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .search-container {
        width: 200px;
        margin-right: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        margin-left: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links,
    .search-container {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar {
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu {
        width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .site-header {
        padding: 0.5rem 0;
    }
}
/* Hero Section - Improved */
.hero {
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(26, 66, 138, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
    text-align: left;
}

.hero-text h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    background: linear-gradient(to right, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.hero-text p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.btn-outline {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-3px);
}

/* Products Showcase */
.products-showcase {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-item {
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.product-item:nth-child(2) {
    transform: scale(1.1);
    z-index: 2;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-device {
    height: 220px;
    width: 130px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 16px;
    border: 2px solid;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.product-item:nth-child(1) .product-device {
    border-color: #475569;
}

.product-item:nth-child(2) .product-device {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.product-item:nth-child(3) .product-device {
    border-color: #64748b;
}

.product-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
}

.product-device::after {
    content: '';
    position: absolute;
    bottom: 15px;
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.product-device .screen {
    width: 100px;
    height: 140px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.product-device .screen::before {
    content: 'âœ“';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.product-device .screen::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(var(--secondary-color) 25%, transparent 25%);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-item p {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.product-item:hover p {
    color: var(--secondary-color);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Stats Section */
.hero-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--secondary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .product-device {
        height: 200px;
        width: 120px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .products-showcase {
        order: -1;
        gap: 1.5rem;
    }
    
    .product-item:nth-child(2) {
        transform: scale(1.05);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-device {
        height: 180px;
        width: 100px;
    }
    
    .product-device .screen {
        width: 80px;
        height: 120px;
    }
    
    .products-showcase {
        gap: 1rem;
    }
}
/* Grids - Enhanced */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--card-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1rem;
}

.card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

/* Services Section - Enhanced */
.services-section {
    background: linear-gradient(135deg, #c9f6f7 0%, #e0f2fe 100%);
    padding: 6rem 0;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

.services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.services-section .subtitle {
    color: #475569;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 70px;
}

.carousel-window {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
}

.services-wrapper {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Service Card - Enhanced */
.service-card {
    width: 320px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: white;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: scale(0.95);
    opacity: 0.85;
}

.service-card.active {
    transform: scale(1.08);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 70%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .overlay,
.service-card.active .overlay {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    opacity: 0;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    opacity: 0;
}

.service-card:hover h3,
.service-card:hover p,
.service-card.active h3,
.service-card.active p {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    background: white;
    color: var(--primary-color);
    padding: 0.9rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    opacity: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    color: white;
}

.service-card:hover .btn,
.service-card.active .btn {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease 0.2s;
}

.btn.dark {
    background: var(--primary-color);
    color: white;
}

.btn.dark:hover {
    background: #1e3a8a;
}

/* Navigation Buttons - Enhanced */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.nav-btn.left {
    left: 0;
}

.nav-btn.right {
    right: 0;
}

/* Certifications Section - Enhanced */
.cert-section {
    padding: 6rem 0;
    text-align: center;
    background: white;
    position: relative;
}

.cert-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
}

.cert-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.cert-section > p {
    color: #64748b;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.cert-section h3 {
    margin-top: 4rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.cert-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 66, 138, 0.05), rgba(14, 165, 233, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Steps Section - Enhanced */
.steps-section {
    background: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.steps-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.steps-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin: 4rem 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    position: relative;
    z-index: 2;
}

.step-item:nth-child(1)::after,
.step-item:nth-child(2)::after {
    content: '\2192';
    position: absolute;
    right: -60px;
    top: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
}

.step-icon svg {
    width: 50px;
    height: 50px;
    transition: fill 0.3s ease;
}

.step-item:hover .step-icon svg {
    fill: white;
}

.step-item h4 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.step-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.steps-section .btn {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.steps-section .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Deals Section - Enhanced */
.deals-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.deals-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}

.deals-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.deals-text {
    max-width: 50%;
}

.deals-text h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, white, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.deals-text p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
}

.deals-section .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #38bdf8);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.deals-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.deals-visual {
    width: 300px;
    height: 300px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(14, 165, 233, 0.05);
}

.deals-visual::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.deals-visual .percent {
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.deals-visual .off {
    position: absolute;
    bottom: 30%;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Join Us Section - Enhanced */
.join-section {
    background: linear-gradient(135deg, #1a428a, #213f63);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.2;
}

.join-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.join-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.join-section > .container > p {
    margin: 1.5rem auto 4rem;
    max-width: 700px;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Social Circles - Enhanced */
.social-circles {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.social-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-circle:hover::before {
    opacity: 1;
}

/* Specific Colors */
.social-circle.instagram {
    border-color: #d62976;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

.social-circle.facebook {
    border-color: #3b5998;
    background: linear-gradient(45deg, #3b5998, #2d4373);
    box-shadow: 0 6px 20px rgba(59, 89, 152, 0.3);
}

.social-circle.linkedin {
    border-color: #0077b5;
    background: linear-gradient(45deg, #0077b5, #005582);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

.social-circle.whatsapp {
    border-color: #25d366;
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.social-circle svg {
    width: 30px;
    height: 30px;
    fill: white;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .services-wrapper {
        gap: 25px;
    }
    
    .service-card {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .deals-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .deals-text {
        max-width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item:nth-child(1)::after,
    .step-item:nth-child(2)::after {
        display: none;
    }
    
    .step-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card {
        width: 280px;
        height: 380px;
    }
    
    .cert-logos {
        gap: 2rem;
    }
    
    .cert-card {
        width: 180px;
        height: 120px;
    }
    
    .social-circles {
        gap: 2rem;
    }
    
    .social-circle {
        width: 60px;
        height: 60px;
    }
    
    .social-circle svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .service-card {
        width: 260px;
    }
    
    .cert-card {
        width: 160px;
        height: 100px;
        padding: 1.5rem 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .deals-visual {
        width: 250px;
        height: 250px;
    }
    
    .deals-visual .percent {
        font-size: 4rem;
    }
}

/* =========================
   GET QUOTE BUTTON
========================= */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(26, 66, 138, 0.3);
    margin-left: 1rem;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 66, 138, 0.4);
}

.btn-quote .quote-icon {
    transition: transform 0.3s ease;
}

.btn-quote:hover .quote-icon {
    transform: translateX(3px);
}

.mobile-quote-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
}

/* =========================
   QUOTE POPUP FORM
========================= */
.quote-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-popup-overlay.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

.quote-popup {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.quote-popup-overlay.active .quote-popup {
    transform: translateY(0);
}

.quote-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.quote-popup-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.quote-popup-close svg {
    fill: var(--text-color);
}

.quote-popup-content {
    padding: 2.5rem;
}

.quote-popup-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.quote-popup-content > p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Form Styles */
.quote-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group label:after {
    content: ' *';
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.checkbox-group label:after {
    content: '';
}

/* UPDATED SUBMIT BUTTON - FORCE SAME STYLE AS GET QUOTE BUTTON */
.quote-form .btn-submit,
.quote-form button[type="submit"].btn-submit,
.btn.btn-submit {
    width: 100%;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    justify-content: center !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(26, 66, 138, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.quote-form .btn-submit:hover,
.quote-form button[type="submit"].btn-submit:hover,
.btn.btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(26, 66, 138, 0.4) !important;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9) !important;
}

.quote-form .btn-submit svg,
.quote-form button[type="submit"].btn-submit svg,
.btn.btn-submit svg {
    transition: transform 0.3s ease !important;
}

.quote-form .btn-submit:hover svg,
.quote-form button[type="submit"].btn-submit:hover svg,
.btn.btn-submit:hover svg {
    transform: translateX(5px) !important;
}

/* Form Validation */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #fecaca;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #bbf7d0;
}

/* Success Message */
.quote-success {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.quote-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quote-success .success-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.quote-success h3 {
    color: #10b981;
    margin-bottom: 1rem;
}

.quote-success p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-quote {
        display: none;
    }
    
    .quote-popup {
        max-width: 100%;
    }
    
    .quote-popup-content {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-popup-content {
        padding: 1.5rem 1rem;
    }
    
    .quote-popup-content h3 {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

