/* Custom CSS for ORBIT INFOSEC */

/* Color Variables */
:root {
    --primary-color: #003d82;
    --secondary-color: #0056b3;
    --accent-color: #17a2b8;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Page content spacing */
.page-content {
    padding-top: 80px; /* Space for navbar only */
}

.hero-section {
    margin-top: 0;
}

/* Adjust main content sections */
main {
    padding-top: 80px; /* Space for navbar only */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Navigation Styles */
.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Services dropdown navbar background change */
.navbar.services-open {
    background: var(--primary-color) !important;
    backdrop-filter: blur(15px);
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.navbar-logo {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.brand-text {
    background: linear-gradient(135deg, #003d82, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-trigger {
    position: relative;
}

.booking-trigger::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.booking-trigger:hover::after {
    width: 80%;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    color: var(--accent-color);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu.submenu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    min-width: 320px;
}

.dropdown-submenu:hover > .dropdown-menu.submenu {
    display: block;
}

.dropdown-submenu .dropdown-toggle::after {
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    margin-left: auto;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .dropdown-submenu .dropdown-menu.submenu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: rgba(0, 0, 0, 0.1);
        border: none;
        box-shadow: none;
        padding-left: 1rem;
    }
    
    /* Mobile-specific navbar adjustments */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse {
        background: rgba(26, 26, 26, 0.98);
        border-radius: 0 0 15px 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .navbar-nav {
        margin: 0 !important;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Enhanced mobile dropdown fixes */
    .mega-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        background: rgba(0, 61, 130, 0.95);
        border: none;
        border-radius: 10px;
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        display: none;
        /* Prevent scroll interference */
        touch-action: pan-y;
        overscroll-behavior: contain;
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mega-dropdown .dropdown-menu.show {
        display: block !important;
        animation: mobileDropdownSlide 0.3s ease-out;
    }
    
    @keyframes mobileDropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mega-dropdown .dropdown-menu .container {
        padding: 0;
    }
    
    .mega-dropdown .dropdown-menu .row {
        margin: 0;
    }
    
    .mega-dropdown .dropdown-menu .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .dropdown-header {
        font-size: 1.1rem;
        color: white;
        padding: 0.75rem 0;
        border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .dropdown-item {
        padding: 1rem 0.5rem;
        color: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        border-radius: 6px;
        margin: 0.25rem 0;
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus,
    .dropdown-item:active {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateX(8px);
        border-color: var(--accent-color);
    }
    
    .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.3);
        margin: 1rem 0;
        height: 2px;
    }
    
    /* Enhanced dropdown toggle for mobile */
    .dropdown-toggle {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: 2px solid var(--accent-color);
        border-radius: 10px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: white !important;
        transition: all 0.3s ease;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
    
    .dropdown-toggle:hover,
    .dropdown-toggle:focus {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 61, 130, 0.4);
        color: white !important;
    }
    
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
        font-size: 1rem;
        margin-left: auto;
    }
    
    .dropdown-toggle[aria-expanded="true"] {
        background: var(--accent-color);
        border-color: white;
    }
    
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

/* Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 40px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.security-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.security-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.security-icon:nth-child(1) { top: 20%; left: 10%; }
.security-icon:nth-child(2) { top: 60%; left: 5%; }
.security-icon:nth-child(3) { top: 30%; right: 15%; }
.security-icon:nth-child(4) { top: 70%; right: 20%; }
.security-icon:nth-child(5) { top: 10%; right: 35%; }

.security-icon i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    margin-top: -240px;
    padding-top: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgeGlow 3s ease-in-out infinite, fadeInDown 0.8s ease-out;
    transform: translateY(-20px);
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #00b4d8, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.orbit-cursor {
    animation: blink 1.5s infinite;
    color: var(--accent-color);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    line-height: 1.6;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.hero-buttons {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: buttonSlideIn 0.8s ease-out forwards;
}

.hero-buttons .btn:first-child {
    animation-delay: 1s;
}

.hero-buttons .btn:last-child {
    animation-delay: 1.2s;
}

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

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

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

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

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

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.4s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.hero-image {
    transform: translateY(-20px);
    position: relative;
    z-index: 10;
}

.hero-image img,
.hero-image svg {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ORBIT Security Interface Styles */
.orbit-security-interface {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.interface-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 61, 130, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.interface-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--success-color));
    animation: orbitGlow 4s ease-in-out infinite;
}

@keyframes orbitGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; transform: scaleX(1.02); }
}

/* ORBIT Header */
.orbit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.orbit-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.orbit-logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 86, 179, 0.5);
    animation: orbitRotate 8s linear infinite;
    position: relative;
}

.orbit-logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    z-index: -1;
    animation: orbitRing 3s ease-in-out infinite;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbitRing {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.orbit-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.security-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    border: 1px solid var(--success-color);
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 10px var(--success-color); }
}

.status-label {
    color: var(--success-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Services Display */
.services-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-node {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.service-node:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.25);
    border-color: var(--accent-color);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.service-node:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
}

.service-name {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-indicator {
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
    margin: 0 auto;
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Orbital Display */
.orbital-display {
    position: relative;
    height: 280px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 10;
    text-align: center;
}

.center-shield {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 40px rgba(40, 167, 69, 0.6);
    animation: centerPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes centerPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 40px rgba(40, 167, 69, 0.6);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 0 60px rgba(40, 167, 69, 0.9);
    }
}

.center-label {
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.7rem;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: orbitSpin linear infinite;
}

/* Service Orbit Rings */
.service-ring-1 {
    width: 160px;
    height: 160px;
    animation-duration: 20s;
}

.service-ring-2 {
    width: 220px;
    height: 220px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.service-ring-3 {
    width: 280px;
    height: 280px;
    animation-duration: 25s;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbit Services */
.orbit-service {
    position: absolute;
    width: 50px;
    height: 50px;
    animation: counterRotate linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orbit-service:hover {
    transform: scale(1.1);
}

/* Counter-rotate to keep services upright */
@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.service-ring-1 .orbit-service {
    animation-duration: 20s;
}

.service-ring-2 .orbit-service {
    animation-duration: 30s;
    animation-direction: reverse;
}

.service-ring-3 .orbit-service {
    animation-duration: 25s;
}

.service-orbit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 61, 130, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.orbit-service:hover .service-orbit-icon {
    box-shadow: 0 0 30px rgba(0, 61, 130, 0.8);
    transform: scale(1.1);
}

.service-orbit-name {
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 0.3rem;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Service positioning */
.service-1 {
    top: -25px;
    left: calc(50% - 25px);
}

.service-2 {
    bottom: -25px;
    left: calc(50% - 25px);
}

.service-3 {
    top: calc(50% - 25px);
    right: -25px;
}

.service-4 {
    top: calc(50% - 25px);
    left: -25px;
}

.service-5 {
    top: -35px;
    right: 20px;
}

.service-6 {
    bottom: -35px;
    left: 20px;
}

.sat-1 { top: -12px; left: calc(50% - 12px); }
.sat-2 { bottom: -12px; left: calc(50% - 12px); }
.sat-3 { top: calc(50% - 12px); left: -12px; }
.sat-4 { top: calc(50% - 12px); right: -12px; }

.scan-sweep {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-top: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: sweepScan 4s linear infinite;
    opacity: 0.7;
}

@keyframes sweepScan {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Security Metrics */
.security-metrics {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 61, 130, 0.2);
}

.metric-value {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    animation: metricCountUp 2s ease-out;
}

.metric-unit {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.2rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    display: block;
}

@keyframes metricCountUp {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Animated Services Container */
.animated-services-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
}

.animated-service-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.animated-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 61, 130, 0.3);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon-animated {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.service-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* VAPT Animation */
.vapt-animation {
    position: relative;
    height: 80px;
}

.scanning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.scan-target {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.target-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: targetBlink 1.5s ease-in-out infinite;
}

.scan-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: scanWave 2s ease-out infinite;
    opacity: 0;
}

@keyframes targetBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes scanWave {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.target-1 .scan-wave { animation-delay: 0s; }
.target-2 .scan-wave { animation-delay: 0.5s; }
.target-3 .scan-wave { animation-delay: 1s; }
.target-4 .scan-wave { animation-delay: 1.5s; }

.vulnerability-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 53, 69, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #dc3545;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Compliance Animation */
.compliance-animation {
    position: relative;
    height: 80px;
}

.compliance-frameworks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.framework-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.framework-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.framework-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.framework-item span {
    flex: 1;
    font-weight: 600;
}

.progress-ring {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(var(--success-color) 0deg, var(--success-color) 280deg, transparent 280deg);
    border-radius: 50%;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* MSSP Animation */
.mssp-animation {
    position: relative;
    height: 80px;
}

.monitoring-center {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: hubPulse 2s ease-in-out infinite;
}

.central-hub i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.central-hub span {
    font-size: 0.6rem;
    font-weight: 700;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.monitoring-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.node-1 {
    top: 10px;
    left: 10px;
    animation: nodeFloat 3s ease-in-out infinite;
}

.node-2 {
    top: 10px;
    right: 10px;
    animation: nodeFloat 3s ease-in-out infinite 1s;
}

.node-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat 3s ease-in-out infinite 2s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.pulse-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

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

.line {
    position: absolute;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    height: 2px;
    animation: dataFlow 2s linear infinite;
}

.line-1 {
    top: 25px;
    left: 45px;
    width: 40px;
    transform: rotate(45deg);
}

.line-2 {
    top: 25px;
    right: 45px;
    width: 40px;
    transform: rotate(-45deg);
}

.line-3 {
    bottom: 25px;
    left: 50%;
    width: 40px;
    transform: translateX(-50%) rotate(90deg);
}

@keyframes dataFlow {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Responsive Design for Animated Services */
@media (max-width: 768px) {
    .animated-services-container {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .animated-service-card {
        padding: 1.5rem;
    }
    
    .service-header h4 {
        font-size: 1rem;
    }
    
    .service-icon-animated {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ORBIT Interface Responsive Styles */
@media (max-width: 575px) {
    .orbit-security-interface {
        max-width: 100%;
    }
    
    .interface-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .orbit-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .orbit-logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .orbit-text {
        font-size: 0.7rem;
    }
    
    .brand-subtitle {
        font-size: 1rem;
    }
    
    .services-display {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-node {
        padding: 1rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-name {
        font-size: 0.75rem;
    }
    
    .orbital-display {
        height: 150px;
        margin: 1.5rem 0;
    }
    
    .orbit-center {
        width: 50px;
        height: 50px;
    }
    
    .center-shield {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .ring-2 {
        width: 140px;
        height: 140px;
    }
    
    .orbit-satellite {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .scan-sweep {
        width: 150px;
        height: 150px;
    }
    
    .security-metrics {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .metric-item {
        padding: 0.8rem;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .metric-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .scanning-grid {
        height: 100px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .dashboard-container {
        padding: 1.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.6rem;
    }
}

@media (min-width: 992px) {
    .security-dashboard {
        max-width: 550px;
    }
    
    .dashboard-container {
        padding: 2.5rem;
    }
    
    .scanning-grid {
        height: 140px;
    }
    
    .security-shield {
        font-size: 2.5rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    margin-top: -76px;
    padding-top: 120px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 61, 130, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

/* Value Cards */
.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Statistics */
.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Service Detail Pages */
.service-detail {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.service-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-title i {
    margin-right: 1rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

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

.feature-list li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.feature-list i {
    margin-right: 0.75rem;
}

/* Additional Service Cards */
.additional-service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: #666;
}

/* Modern Contact Items */
.contact-item-modern {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.contact-item-modern:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-item-modern:hover::before {
    left: 100%;
}

.icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    overflow: hidden;
}

.contact-icon-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon-new {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

/* Email Container Animations */
.email-container .ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleAnimation 3s ease-in-out infinite;
}

.email-container .pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes rippleAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes pulseDot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
}

/* Phone Container Animations */
.phone-container .signal-waves span {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    animation: signalWaves 2s ease-in-out infinite;
}

.phone-container .wave-1 {
    height: 8px;
    animation-delay: 0s;
}

.phone-container .wave-2 {
    height: 12px;
    right: 20%;
    animation-delay: 0.3s;
}

.phone-container .wave-3 {
    height: 16px;
    right: 25%;
    animation-delay: 0.6s;
}

@keyframes signalWaves {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Clock Container Animations */
.clock-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hour-hand {
    position: absolute;
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1px;
    transform-origin: bottom center;
    animation: hourRotation 12s linear infinite;
    top: -12px;
    left: -1px;
}

.minute-hand {
    position: absolute;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    transform-origin: bottom center;
    animation: minuteRotation 2s linear infinite;
    top: -16px;
    left: -0.5px;
}

@keyframes hourRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes minuteRotation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Shield Container Animations */
.security-scan .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.8), transparent);
    animation: scanAnimation 3s ease-in-out infinite;
}

.security-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(0, 255, 0, 0.6);
    border-radius: 50%;
    animation: securityParticles 4s ease-in-out infinite;
}

.security-particles .p1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.security-particles .p2 {
    top: 70%;
    right: 30%;
    animation-delay: 1.3s;
}

.security-particles .p3 {
    bottom: 25%;
    left: 60%;
    animation-delay: 2.6s;
}

@keyframes scanAnimation {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    50% {
        top: calc(100% - 2px);
        opacity: 1;
    }
}

@keyframes securityParticles {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

.contact-details-modern {
    flex: 1;
}

.contact-details-modern h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details-modern p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 130, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

/* Updated form styles for labels above inputs */
.form-group .form-label {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Phone input wrapper styles */
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    flex: 0 0 auto;
    width: auto;
    min-width: 180px;
    padding: 1rem 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.phone-number {
    flex: 1;
}

.country-code:focus,
.phone-number:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 130, 0.25);
    outline: none;
}

/* Emergency Contact */
.emergency-contact .alert {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    border: none;
}

/* Why Choose Items */
.why-choose-list {
    margin-top: 2rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.why-choose-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
    margin-top: 3rem;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--accent-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

/* Mega Menu Styles */
.mega-dropdown .mega-menu {
    min-width: 800px;
    padding: 2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
    margin-top: 10px;
}

.mega-menu .dropdown-header {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    background: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.mega-menu .dropdown-item {
    padding: 0.5rem 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 0.25rem;
    margin-left: -0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.mega-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(3px);
    padding-left: 0.75rem;
}

.mega-menu .dropdown-item i {
    width: 20px;
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.mega-menu .dropdown-item.text-primary {
    color: var(--accent-color) !important;
}

.mega-menu .dropdown-item.text-primary:hover {
    color: white !important;
}

.mega-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Emergency Button */
.emergency-btn {
    background: linear-gradient(135deg, var(--danger-color), #c82333) !important;
    border: none !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

/* Enhanced Footer Styles */
.newsletter-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    color: white;
}

.newsletter-form .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
}

.footer .contact-item i {
    width: 24px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer .contact-item a,
.footer .contact-item span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Main Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--success-color));
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Widgets */
.footer-widget {
    padding: 1rem;
    background: transparent;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Brand */
.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.brand-tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.footer-description {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Certifications */
.footer-certifications {
    padding: 1rem 0;
}

.cert-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.footer-links a i {
    width: 20px;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.view-all-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-top: 0.5rem;
}

.view-all-link:hover {
    color: var(--secondary-color) !important;
}

/* Clean Contact List */
.contact-list {
    margin-bottom: 2rem;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-line:hover {
    transform: translateX(5px);
}

.contact-icon-minimal {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-link-minimal {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link-minimal:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-text-minimal {
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
}

.contact-line:hover .contact-icon-minimal {
    color: white;
    transform: scale(1.1);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.contact-text {
    color: white;
    font-weight: 500;
}

/* Social Media */
.footer-social {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-link.blog {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Actions */
.footer-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 130, 0.3);
    color: white;
}

.action-btn.secondary:hover {
    background: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: #1e3a8a;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    margin-bottom: 0;
}

.copyright-text {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    text-align: right;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.legal-link {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

/* Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-widget {
        padding: 0.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cert-badges {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .cert-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .contact-line {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding: 0.4rem 0;
        justify-content: flex-start;
    }
    
    .contact-icon-minimal {
        font-size: 1rem;
        width: 18px;
    }
    
    .contact-link-minimal,
    .contact-text-minimal {
        font-size: 0.9rem;
    }
    
    .contact-line:hover {
        transform: translateX(3px);
    }
    
    /* Mobile Modern Contact Items */
    .contact-item-modern {
        padding: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-icon-new {
        font-size: 1.4rem;
    }
    
    .contact-details-modern h5 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: #333;
    }
    
    .contact-details-modern p {
        font-size: 0.85rem;
        color: #666;
    }
    
    /* Reduce animation intensity on mobile */
    .email-container .ripple-effect {
        width: 15px;
        height: 15px;
    }
    
    .email-container .pulse-dot {
        width: 4px;
        height: 4px;
    }
    
    .phone-container .signal-waves span {
        width: 2px;
    }
    
    .phone-container .wave-1 {
        height: 6px;
    }
    
    .phone-container .wave-2 {
        height: 9px;
    }
    
    .phone-container .wave-3 {
        height: 12px;
    }
    
    .hour-hand {
        height: 8px;
        top: -8px;
    }
    
    .minute-hand {
        height: 10px;
        top: -10px;
    }
    
    .security-particles .particle {
        width: 2px;
        height: 2px;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .action-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-legal {
        text-align: center;
        margin-top: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-main {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .action-btn {
        min-width: 140px;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-main {
        padding: 4rem 0 2rem;
    }
    
    .footer-logo {
        height: 48px;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
}

/* Laptops & Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-main {
        padding: 4.5rem 0 2.5rem;
    }
    
    .footer-widget {
        padding: 0.8rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
}

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .footer-main {
        padding: 5rem 0 3rem;
    }
    
    .footer-widget {
        padding: 1rem;
    }
    
    .footer-logo {
        height: 55px;
    }
    
    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .footer-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .action-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Ultra-wide Screens (1400px+) */
@media (min-width: 1400px) {
    .footer-main {
        padding: 6rem 0 4rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        padding: 2rem 0;
    }
}

.emergency-contact .alert {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-links a:hover {
    color: var(--accent-color);
    padding-left: 0.5rem;
}

/* Back to Top Button */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
}

/* Certifications */
.cert-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Team Description */
.team-description {
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Responsive Design */
/* Large devices (laptops/desktops, 992px and up) */
@media (min-width: 992px) {
    .mega-dropdown .mega-menu {
        min-width: 900px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .mega-dropdown .mega-menu {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .mega-menu .row {
        flex-direction: column;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .page-content {
        padding-top: 70px;
    }
    
    main {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .btn-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .footer .row {
        text-align: center;
    }
    
    .footer .footer-links-inline {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .security-icon {
        width: 40px;
        height: 40px;
    }
    
    .security-icon i {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .service-card,
    .value-card,
    .additional-service-card {
        margin-bottom: 2rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .service-detail,
    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .footer .cert-badge {
        font-size: 0.8rem;
    }
    
    .social-links .social-link {
        width: 35px;
        height: 35px;
        margin: 0 0.25rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .mega-menu .dropdown-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Ultra small devices (very small phones, less than 375px) */
@media (max-width: 374.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .service-detail,
    .contact-form-wrapper {
        padding: 1rem;
        margin: 0 5px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-logo,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn-floating,
    .hero-buttons {
        display: none !important;
    }
    
    .page-content {
        padding-top: 0;
    }
    
    main {
        padding-top: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Success and Error Message Styles */
.success-message-section {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-bottom: 1px solid #c3e6cb;
}

.success-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    border: 1px solid #c3e6cb;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success-color);
    animation: successPulse 1.5s ease-in-out;
}

.success-card h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.success-card p {
    color: #495057;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--success-color);
}

.contact-details p {
    margin-bottom: 0;
    color: #6c757d;
}

.error-message-section .alert {
    border-radius: 12px;
    padding: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}

.error-message-section .alert i {
    font-size: 1.2rem;
}

/* Captcha Styles */
.captcha-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.captcha-input {
    max-width: 120px;
    text-align: center;
    font-weight: 600;
    border: 2px solid #e9ecef;
    border-radius: 6px;
}

.captcha-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 130, 0.25);
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Booking Modal Styles */
.modal-logo {
    height: 60px;
    width: auto;
}

.consultation-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.consultation-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
}

.consultation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.consultation-icon i {
    font-size: 1.5rem;
    color: white;
}

.consultation-option h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.consultation-option p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Booking Calendar Styles */
.service-selection-card,
.calendar-card,
.timeslot-card,
.booking-form-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.service-option {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.service-option:hover,
.service-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 61, 130, 0.05);
}

.service-option .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-option .service-icon i {
    color: white;
    font-size: 1.2rem;
}

.service-details h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.duration,
.price {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-right: 1rem;
}

/* Calendar Grid */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.calendar-day.available {
    background: var(--light-color);
    color: var(--text-color);
}

.calendar-day.available:hover {
    background: var(--primary-color);
    color: white;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #999;
}

/* Time Slots */
.time-slot {
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    background: var(--primary-color);
    color: white;
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Booking Summary */
.booking-summary {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.booking-summary .row > div {
    margin-bottom: 0.5rem;
}

.booking-summary strong {
    color: var(--primary-color);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.booking-summary span {
    font-weight: 600;
    color: var(--text-color);
}

/* Services Overview Image */
.services-overview-image,
.about-image,
.stats-image,
.mission-image,
.vision-image,
.team-image,
.why-choose-image {
    background: var(--light-color);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.services-overview-image:hover,
.about-image:hover,
.stats-image:hover,
.mission-image:hover,
.vision-image:hover,
.team-image:hover,
.why-choose-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 61, 130, 0.2);
}

.footer-logo {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* About page specific styles */
.mission-point,
.vision-goal {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.mission-point i,
.vision-goal i {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.reason-item {
    display: flex;
    align-items: flex-start;
}

.reason-item i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.reason-item div {
    flex: 1;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN FOR ALL DEVICES
   ============================================ */

/* Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 80px 0 60px;
        min-height: calc(100vh - 60px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Typography Mobile */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Navigation Mobile */
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    /* Contact Form Mobile */
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form .btn {
        width: 100%;
    }
    
    /* Footer Mobile */
    .footer-logo {
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .footer .col-lg-3,
    .footer .col-lg-4 {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Stats Mobile */
    .stats-card {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .stats-number {
        font-size: 2rem;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section {
        padding: 110px 0 40px;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -90px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: inline-block;
        width: auto;
        margin-right: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 115px 0 40px;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -100px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .navbar-brand img {
        height: 45px;
    }
    
    /* Tablet specific navigation */
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Service cards in tablet view */
    .service-card {
        padding: 1.75rem;
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

/* Laptops & Small Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        padding: 120px 0 40px;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -110px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    /* Desktop dropdown menu improvements */
    .mega-menu {
        min-width: 800px;
    }
    
    .dropdown-item {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
    
    /* Service cards spacing */
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Large Desktops & 4K (1200px+) */
@media (min-width: 1200px) {
    .hero-section {
        padding: 120px 0 40px;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -110px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .navbar-brand img {
        height: 55px;
    }
    
    /* Large screen optimizations */
    .container {
        max-width: 1200px;
    }
    
    .mega-menu {
        min-width: 900px;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-icon i {
        font-size: 2.2rem;
    }
}

/* Ultra-wide Screens (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand img,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .booking-modal {
        display: none !important;
    }
    
    .hero-section,
    .page-header {
        background: white !important;
        color: black !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out;
}

/* ============================================
   VAPT SECURITY DASHBOARD ANIMATIONS
   ============================================ */

.vapt-security-dashboard {
    padding: 2rem;
    background: linear-gradient(135deg, #001429 0%, #003d82 50%, #0056b3 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 61, 130, 0.3);
    position: relative;
    overflow: hidden;
}

.dashboard-container {
    position: relative;
    z-index: 10;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.orbit-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.orbit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbit-pulse 2s ease-in-out infinite;
}

.orbit-icon i {
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.threat-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    border-radius: 25px;
    position: relative;
}

.threat-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: security-pulse 1.5s ease-in-out infinite;
}

.threat-status {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Assessment Grid */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.assessment-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: card-float 4s ease-in-out infinite;
}

.assessment-card:nth-child(2) {
    animation-delay: 1s;
}

.assessment-card:nth-child(3) {
    animation-delay: 2s;
}

.assessment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: icon-glow 3s ease-in-out infinite;
}

.card-icon i {
    color: white;
    font-size: 1.3rem;
}

.card-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 2s ease-in-out;
}

.vuln-progress {
    width: 75%;
    animation: progress-vuln 3s ease-in-out infinite;
}

.pen-progress {
    width: 90%;
    animation: progress-pen 3s ease-in-out infinite 1s;
}

.comp-progress {
    width: 100%;
    animation: progress-comp 3s ease-in-out infinite 2s;
}

.scan-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Threat Detection Visualization */
.threat-detection {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin-bottom: 2rem;
}

.detection-center {
    position: relative;
    z-index: 5;
}

.center-shield {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shield-rotate 8s linear infinite;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.center-shield i {
    color: white;
    font-size: 1.5rem;
}

.detection-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.detection-ring {
    position: absolute;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: ring-pulse 2s ease-in-out infinite;
}

.ring-2 {
    width: 140px;
    height: 140px;
    animation: ring-pulse 2s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    animation: ring-pulse 2s ease-in-out infinite 1s;
}

.threat-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.threat-node {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: node-orbit 12s linear infinite;
}

.threat-node i {
    color: #10b981;
    font-size: 0.9rem;
}

.node-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node-2 {
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.node-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 6s;
}

.node-4 {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    animation-delay: 9s;
}

.scan-sweep-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent 70%, rgba(16, 185, 129, 0.3) 90%, transparent 100%);
    border-radius: 50%;
    animation: sweep-rotation 4s linear infinite;
}

/* Security Metrics */
.security-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.metric-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.metric-value {
    color: #10b981;
    font-size: 1.8rem;
    font-weight: 700;
}

.counter {
    display: inline-block;
    animation: counter-up 2s ease-out;
}

/* Animations */
@keyframes orbit-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
    }
}

@keyframes security-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes card-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes icon-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.8); }
}

@keyframes progress-vuln {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 75%; }
}

@keyframes progress-pen {
    0% { width: 0%; }
    50% { width: 95%; }
    100% { width: 90%; }
}

@keyframes progress-comp {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes shield-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ring-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes node-orbit {
    0% { 
        transform: rotate(0deg) translateX(80px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
        opacity: 0.7;
    }
}

@keyframes sweep-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counter-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   COMPACT SERVICES VISUAL GRID
   ============================================ */

.services-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 61, 130, 0.1);
    position: relative;
}

.service-visual[data-service="mssp"] {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
    justify-self: center;
}

.service-visual {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-visual:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
    border-color: var(--primary-color);
}

.service-visual-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.service-icon-small {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: icon-pulse-small 2s ease-in-out infinite;
}

.service-icon-small i {
    color: white;
    font-size: 0.9rem;
}

.service-name-small {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* VAPT Service Visuals */
.mini-scan-display {
    position: relative;
    height: 60px;
}

.scan-line {
    width: 100%;
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.scan-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan-sweep 2s ease-in-out infinite;
}

.scan-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.scan-dot {
    width: 8px;
    height: 8px;
    background: #dee2e6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.scan-dot.active {
    background: #dc3545;
    animation: dot-blink 1.5s ease-in-out infinite;
}

.vulnerability-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #dc3545;
    font-weight: 500;
}

.vulnerability-indicator i {
    animation: bug-wiggle 2s ease-in-out infinite;
}

/* Compliance Service Visuals */
.compliance-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0;
}

.compliance-item i {
    font-size: 0.8rem;
    width: 12px;
}

.compliance-item:nth-child(1) i { color: #28a745; }
.compliance-item:nth-child(2) i { color: #28a745; }
.compliance-item:nth-child(3) i { color: #ffc107; animation: clock-tick 1s ease-in-out infinite; }

.compliance-item span {
    font-weight: 500;
    color: #495057;
}

/* MSSP Service Visuals */
.mssp-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.mssp-logo {
    width: 40px;
    height: 26px;
    animation: logo-glow 3s ease-in-out infinite;
}

.shield-core {
    animation: shield-pulse 2s ease-in-out infinite;
}

.monitoring-ring {
    animation: ring-rotation 8s linear infinite;
}

.outer-ring {
    animation-direction: normal;
}

.inner-ring {
    animation-direction: reverse;
    animation-duration: 6s;
}

.security-checkpoint {
    animation: checkpoint-blink 2s ease-in-out infinite;
}

.security-checkpoint.active {
    animation-delay: 0s;
}

.security-checkpoint.warning {
    animation: warning-pulse 1s ease-in-out infinite;
}

.mssp-services-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.mssp-service-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: #495057;
    font-weight: 500;
}

.service-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-status.active {
    background: #28a745;
    animation: status-pulse 2s ease-in-out infinite;
}

.service-status.monitoring {
    background: var(--primary-color);
    animation: monitoring-pulse 1.5s ease-in-out infinite;
}

/* Central Status */
.central-status {
    grid-column: 1 / -1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
    position: relative;
    overflow: hidden;
}

.orbit-logo-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    animation: orbit-glow 2s ease-in-out infinite;
}

.orbit-logo-small i {
    font-size: 1.2rem;
    color: white;
}

.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.security-pulse {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: pulse-sweep 2s ease-in-out infinite;
}

/* Animations for Compact Services */
@keyframes icon-pulse-small {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes scan-sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes bug-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes clock-tick {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes logo-glow {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(0, 61, 130, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(0, 61, 130, 0.6)); }
}

@keyframes shield-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ring-rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes checkpoint-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes monitoring-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 61, 130, 0.4); }
    50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 0 3px rgba(0, 61, 130, 0); }
}

@keyframes current-day-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 61, 130, 0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 4px rgba(0, 61, 130, 0); }
}

@keyframes sync-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); }
}

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

/* ============================================
   ORBIT ACHIEVEMENTS DISPLAY
   ============================================ */

.orbit-achievements-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    position: relative;
    overflow: hidden;
}

.achievements-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 61, 130, 0.2);
    border-color: var(--primary-color);
}

.achievement-card[data-achievement="vapt"] {
    animation: achievement-float 4s ease-in-out infinite;
}

.achievement-card[data-achievement="orgs"] {
    animation: achievement-float 4s ease-in-out infinite 1s;
}

.achievement-card[data-achievement="compliance"] {
    animation: achievement-float 4s ease-in-out infinite 2s;
}

.achievement-card[data-achievement="satisfaction"] {
    animation: achievement-float 4s ease-in-out infinite 3s;
}

.achievement-icon {
    position: relative;
    margin-bottom: 1rem;
}

.achievement-svg {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: icon-glow-achievement 3s ease-in-out infinite;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    animation: number-count 2s ease-out;
}

.achievement-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orbit-brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
}

.orbit-shield-logo {
    flex-shrink: 0;
}

.brand-shield {
    width: 50px;
    height: 50px;
    animation: shield-rotate-slow 20s linear infinite;
}

.brand-shield-path {
    animation: shield-glow 3s ease-in-out infinite;
}

.brand-text {
    text-align: left;
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Achievement Animations */
@keyframes achievement-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes icon-glow-achievement {
    0%, 100% { filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)); }
    50% { filter: drop-shadow(0 6px 15px rgba(0, 61, 130, 0.3)); }
}

@keyframes number-count {
    0% { 
        opacity: 0; 
        transform: scale(0.5) translateY(20px);
    }
    60% {
        opacity: 1;
        transform: scale(1.1) translateY(-5px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
    }
}

@keyframes shield-rotate-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shield-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

/* ============================================
   WHY CHOOSE POINTS SECTION
   ============================================ */

.why-choose-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.point-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
}

.point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
}

.point-icon i {
    color: white;
    font-size: 1.2rem;
}

.point-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.point-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Achievements */
@media (max-width: 768px) {
    .orbit-achievements-display {
        padding: 1.5rem;
    }
    
    .achievements-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .achievement-card {
        padding: 1rem;
    }
    
    .achievement-svg {
        width: 40px;
        height: 40px;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
    
    .why-choose-points {
        margin-top: 1.5rem;
    }
    
    .point-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .point-item:hover {
        transform: translateY(-4px);
    }
    
    .point-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Responsive Compact Services */
@media (max-width: 768px) {
    .services-visual-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .service-visual {
        padding: 0.75rem;
    }
    
    .mini-scan-display {
        height: 50px;
    }
    
    .central-status {
        padding: 0.75rem;
    }
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .vapt-security-dashboard {
        padding: 1.5rem;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .threat-detection {
        height: 150px;
    }
    
    .detection-ring.ring-1 { width: 80px; height: 80px; }
    .detection-ring.ring-2 { width: 110px; height: 110px; }
    .detection-ring.ring-3 { width: 140px; height: 140px; }
    
    .security-metrics {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   BOOKING PAGE RESPONSIVE DESIGN
   ============================================ */

/* Mobile Booking Layout (320px - 575px) */
@media (max-width: 575px) {
    .booking-section {
        padding: 1.5rem 0;
    }
    
    .page-header {
        padding: 2rem 0 !important;
    }
    
    .page-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .service-selection-card,
    .calendar-card,
    .timeslot-card,
    .booking-form-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        background: white;
        transition: all 0.3s ease;
    }
    
    .service-option.selected {
        border-color: var(--primary-color);
        background: var(--light-color);
    }
    
    .service-icon {
        margin-bottom: 0.75rem;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        color: white;
        font-size: 1.5rem;
    }
    
    .service-details h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .service-details p {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 0.75rem;
    }
    
    .service-details .duration,
    .service-details .price {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .service-details .duration {
        color: var(--secondary-color);
    }
    
    .service-details .price {
        color: var(--accent-color);
    }
    
    .booking-summary {
        background: var(--light-color);
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        border-left: 4px solid var(--primary-color);
    }
    
    .booking-summary .row {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .booking-summary .col-md-3 {
        text-align: center;
        padding: 0.5rem;
        background: white;
        border-radius: 8px;
    }
    
    .booking-summary strong {
        color: var(--primary-color);
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .calendar-card {
        overflow-x: auto;
    }
    
    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .calendar-header h4 {
        font-size: 1.2rem;
        margin: 0;
        color: var(--primary-color);
    }
    
    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0.25rem;
        min-width: 280px;
    }
    
    .calendar-day-header {
        padding: 0.5rem 0.25rem;
        text-align: center;
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--primary-color);
        background: var(--light-color);
        border-radius: 4px;
    }
    
    .calendar-day {
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.85rem;
        font-weight: 500;
        min-height: 35px;
    }
    
    #timeSlots {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
        background: var(--light-color);
        border: 2px solid transparent;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .time-slot:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .time-slot.selected {
        background: var(--primary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .booking-form-card .form-control {
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 8px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .booking-form-card .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0, 61, 130, 0.25);
    }
    
    .booking-form-card .form-label {
        font-weight: 600;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .booking-form-card .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        transition: all 0.3s ease;
    }
    
    .booking-form-card .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
    }
    
    .form-check-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .form-check-input {
        width: 1.2rem;
        height: 1.2rem;
        margin-right: 0.75rem;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .booking-section {
        padding: 3rem 0;
    }
    
    .page-title {
        font-size: 2.5rem !important;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .service-selection-card,
    .calendar-card,
    .timeslot-card,
    .booking-form-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-option {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        margin-right: 1rem;
        margin-bottom: 0;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .service-details {
        flex: 1;
    }
    
    .service-details .duration,
    .service-details .price {
        display: inline-block;
        margin-right: 1rem;
    }
    
    #timeSlots {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .time-slot {
        padding: 1rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .booking-summary .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .booking-summary .col-md-3 {
        text-align: left;
        padding: 0.75rem;
    }
    
    .calendar-grid {
        gap: 0.375rem;
        min-width: 350px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
        min-height: 40px;
    }
    
    .calendar-day-header {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .booking-form-card .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .booking-section {
        padding: 4rem 0;
    }
    
    .page-title {
        font-size: 3rem !important;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .service-selection-card,
    .calendar-card,
    .timeslot-card,
    .booking-form-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .service-option {
        display: flex;
        align-items: center;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .service-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 61, 130, 0.15);
    }
    
    .service-icon {
        margin-right: 1.5rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-details h5 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .service-details p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-details .duration,
    .service-details .price {
        display: inline-block;
        margin-right: 1.5rem;
        font-size: 0.95rem;
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        background: var(--light-color);
    }
    
    .service-details .duration {
        color: var(--secondary-color);
        border: 1px solid var(--secondary-color);
    }
    
    .service-details .price {
        color: var(--accent-color);
        border: 1px solid var(--accent-color);
    }
    
    #timeSlots {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .time-slot {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .booking-summary {
        padding: 1.5rem;
    }
    
    .booking-summary .row {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .booking-summary .col-md-3 {
        flex: 1;
        text-align: center;
        padding: 1rem;
    }
    
    .calendar-header h4 {
        font-size: 1.4rem;
    }
    
    .calendar-grid {
        gap: 0.5rem;
        min-width: 400px;
    }
    
    .calendar-day {
        font-size: 1rem;
        min-height: 45px;
        border-radius: 8px;
    }
    
    .calendar-day-header {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .booking-form-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }
    
    .booking-form-card .form-control {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .booking-form-card .form-label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* Laptops & Desktops (992px+) */
@media (min-width: 992px) {
    .booking-section {
        padding: 5rem 0;
    }
    
    .page-header {
        padding: 4rem 0 !important;
    }
    
    .page-title {
        font-size: 3.5rem !important;
    }
    
    .page-subtitle {
        font-size: 1.3rem;
        margin-top: 1rem;
    }
    
    .service-selection-card {
        position: sticky;
        top: 120px;
        height: fit-content;
        padding: 2.5rem;
    }
    
    .service-selection-card h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
        text-align: center;
        border-bottom: 2px solid var(--light-color);
        padding-bottom: 1rem;
    }
    
    .service-option {
        display: flex;
        align-items: center;
        padding: 2rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .service-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 61, 130, 0.2);
        border-color: var(--primary-color);
    }
    
    .service-option.selected {
        background: linear-gradient(135deg, var(--light-color), #f8f9fa);
        border-color: var(--primary-color);
        box-shadow: 0 10px 30px rgba(0, 61, 130, 0.15);
    }
    
    .service-icon {
        margin-right: 2rem;
        margin-bottom: 0;
        width: 70px;
        height: 70px;
        font-size: 2rem;
        flex-shrink: 0;
    }
    
    .service-details h5 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-details p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .service-details .duration,
    .service-details .price {
        display: inline-block;
        margin-right: 1.5rem;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
    }
    
    .calendar-card,
    .timeslot-card {
        padding: 2.5rem;
    }
    
    .calendar-card h4,
    .timeslot-card h4 {
        font-size: 1.4rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .calendar-header h4 {
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .calendar-grid {
        gap: 0.75rem;
        min-width: 450px;
    }
    
    .calendar-day {
        font-size: 1.1rem;
        min-height: 50px;
        border-radius: 10px;
        font-weight: 500;
    }
    
    .calendar-day:hover {
        transform: scale(1.05);
    }
    
    .calendar-day.selected {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 61, 130, 0.3);
    }
    
    .calendar-day-header {
        padding: 1rem;
        font-size: 1rem;
        font-weight: 700;
    }
    
    #timeSlots {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .time-slot {
        padding: 1.25rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .time-slot:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 61, 130, 0.2);
    }
    
    .booking-form-card {
        padding: 3rem;
        border-radius: 20px;
    }
    
    .booking-form-card h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .booking-summary {
        padding: 2rem;
        border-radius: 15px;
        margin-bottom: 2.5rem;
    }
    
    .booking-summary .row {
        display: flex;
        justify-content: space-between;
        gap: 1.5rem;
    }
    
    .booking-summary .col-md-3 {
        flex: 1;
        text-align: center;
        padding: 1.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .booking-summary strong {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .booking-summary span {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .booking-form-card .form-control {
        padding: 1.25rem;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    
    .booking-form-card .form-label {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .booking-form-card .btn-primary {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        border-radius: 15px;
        margin-top: 2rem;
    }
    
    .form-check {
        margin-bottom: 2rem !important;
    }
    
    .form-check-label {
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    .form-check-input {
        width: 1.3rem;
        height: 1.3rem;
        margin-right: 1rem;
    }
}

/* Large Desktops & 4K (1200px+) */
@media (min-width: 1200px) {
    .booking-section {
        padding: 6rem 0;
    }
    
    .page-title {
        font-size: 4rem !important;
    }
    
    .service-selection-card {
        padding: 3rem;
    }
    
    .service-option {
        padding: 2.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .calendar-card,
    .timeslot-card,
    .booking-form-card {
        padding: 3rem;
    }
    
    #timeSlots {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    
    .time-slot {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .calendar-grid {
        min-width: 500px;
        gap: 1rem;
    }
    
    .calendar-day {
        font-size: 1.2rem;
        min-height: 55px;
    }
    
    .booking-form-card {
        max-width: 900px;
        margin: 0 auto;
    }
}

/* ============================================
   SERVICE PAGES RESPONSIVE DESIGN
   ============================================ */

/* Mobile Service Pages (320px - 575px) */
@media (max-width: 575px) {
    .service-hero {
        padding: 2rem 0;
        text-align: center;
    }
    
    .service-hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .service-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-content {
        padding: 2rem 0;
    }
    
    .service-card,
    .methodology-card,
    .deliverables-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .service-card h2,
    .methodology-card h2,
    .deliverables-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--primary-color);
    }
    
    .methodology-steps {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .methodology-step {
        padding: 1.5rem;
        border-radius: 12px;
        background: var(--light-color);
        border-left: 4px solid var(--primary-color);
    }
    
    .methodology-step h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
    }
    
    .methodology-step p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .deliverables-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .deliverable-item {
        display: flex;
        align-items: flex-start;
        padding: 1rem;
        background: white;
        border-radius: 10px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .deliverable-item:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 61, 130, 0.1);
    }
    
    .deliverable-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.2rem;
    }
    
    .deliverable-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .deliverable-content p {
        font-size: 0.9rem;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }
    
    .service-cta {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 2rem 1rem;
        border-radius: 15px;
        text-align: center;
        margin-top: 2rem;
    }
    
    .service-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .service-cta .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 10px;
        background: white;
        color: var(--primary-color);
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .service-cta .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
}

/* Mobile Landscape & Small Tablets Service Pages (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .service-hero h1 {
        font-size: 2.5rem !important;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .deliverables-list {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .methodology-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .service-cta {
        padding: 2.5rem 2rem;
    }
}

/* Tablets Service Pages (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .service-hero {
        padding: 4rem 0;
    }
    
    .service-hero h1 {
        font-size: 3rem !important;
    }
    
    .service-hero p {
        font-size: 1.2rem;
    }
    
    .service-content {
        padding: 4rem 0;
    }
    
    .service-card,
    .methodology-card,
    .deliverables-card {
        padding: 2.5rem;
    }
    
    .service-card h2,
    .methodology-card h2,
    .deliverables-card h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .methodology-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .methodology-step {
        padding: 2rem;
    }
    
    .methodology-step h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .methodology-step p {
        font-size: 1rem;
    }
    
    .deliverables-list {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .deliverable-item {
        padding: 1.5rem;
    }
    
    .deliverable-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-right: 1.25rem;
    }
    
    .deliverable-content h5 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .deliverable-content p {
        font-size: 1rem;
    }
    
    .service-cta {
        padding: 3rem 2rem;
    }
    
    .service-cta h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-cta p {
        font-size: 1.2rem;
    }
}

/* Laptops & Desktops Service Pages (992px+) */
@media (min-width: 992px) {
    .service-hero {
        padding: 5rem 0;
    }
    
    .service-hero h1 {
        font-size: 3.5rem !important;
    }
    
    .service-hero p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
    
    .service-content {
        padding: 5rem 0;
    }
    
    .service-card,
    .methodology-card,
    .deliverables-card {
        padding: 3rem;
        margin-bottom: 3rem;
    }
    
    .service-card h2,
    .methodology-card h2,
    .deliverables-card h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .methodology-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .methodology-step {
        padding: 2.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .methodology-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    }
    
    .methodology-step h4 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .methodology-step p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .deliverables-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .deliverable-item {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .deliverable-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    }
    
    .deliverable-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-right: 1.5rem;
    }
    
    .deliverable-content h5 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .deliverable-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .service-cta {
        padding: 4rem 3rem;
        border-radius: 20px;
    }
    
    .service-cta h3 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .service-cta p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-cta .btn {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        border-radius: 15px;
    }
}

/* Large Desktops Service Pages (1200px+) */
@media (min-width: 1200px) {
    .service-hero {
        padding: 6rem 0;
    }
    
    .service-hero h1 {
        font-size: 4rem !important;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .deliverables-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .service-cta {
        padding: 5rem 4rem;
        max-width: 1000px;
        margin: 3rem auto 0;
    }
}

/* ============================================
   HOME PAGE RESPONSIVE DESIGN
   ============================================ */

/* Mobile Home Page (320px - 575px) */
@media (max-width: 575px) {
    .hero-section {
        padding: 100px 0 3rem;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: -80px;
    }
    
    .hero-image {
        transform: translateY(-10px);
        margin-top: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .services-overview {
        padding: 3rem 0;
    }
    
    .services-overview h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .services-overview p {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        text-align: center;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }
    
    .service-card p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .service-card .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .stats-section {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .stat-item p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin: 0;
    }
    
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .why-choose-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        color: var(--primary-color);
    }
    
    .reasons-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reason-card {
        display: flex;
        align-items: flex-start;
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .reason-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 61, 130, 0.15);
    }
    
    .reason-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
        color: white;
        font-size: 1.4rem;
    }
    
    .reason-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
    }
    
    .reason-content p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
}

/* Tablets Home Page (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: 70vh;
    }
    
    .hero-image {
        transform: translateY(-15px);
    }
    
    .hero-content h1 {
        font-size: 3rem !important;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Laptops & Desktops Home Page (992px+) */
@media (min-width: 992px) {
    .hero-section {
        padding: 7rem 0 5rem;
        min-height: 75vh;
    }
    
    .hero-image {
        transform: translateY(-30px);
    }
    
    .hero-content h1 {
        font-size: 4rem !important;
    }
    
    .hero-content p {
        font-size: 1.4rem;
        max-width: 700px;
        margin: 0 auto 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 3rem 2rem;
    }
    
    .service-card .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .stats-section {
        padding: 5rem 0;
    }
    
    .stat-item h3 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .why-choose-section {
        padding: 5rem 0;
    }
    
    .why-choose-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .reason-card {
        padding: 2.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 0 auto 1.5rem;
    }
    
    .reason-content h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .reason-content p {
        font-size: 1.1rem;
    }
}

/* ============================================
   ABOUT & CONTACT PAGES RESPONSIVE DESIGN
   ============================================ */

/* Mobile About & Contact Pages (320px - 575px) */
@media (max-width: 575px) {
    .about-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .about-hero,
    .contact-hero {
        padding: 2rem 0;
        text-align: center;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-card,
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 15px;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .about-card h2,
    .contact-card h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
        text-align: center;
    }
    
    .mission-vision-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        text-align: center;
        padding: 2rem 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 61, 130, 0.15);
    }
    
    .team-member img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 1.5rem;
        object-fit: cover;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .team-member .role {
        font-size: 0.9rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
        font-weight: 600;
    }
    
    .team-member p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }
    
    .contact-form {
        background: white;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-control {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0, 61, 130, 0.25);
    }
    
    .contact-form .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        transition: all 0.3s ease;
    }
    
    .contact-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 61, 130, 0.3);
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 15px;
        margin-bottom: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        font-size: 1.2rem;
    }
    
    .contact-item-content h5 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .contact-item-content p {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.9;
    }
}

/* Tablets About & Contact Pages (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .about-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 3rem !important;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .team-member {
        padding: 2.5rem 2rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 3rem 2.5rem;
    }
    
    .contact-info {
        padding: 3rem 2.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-right: 1.5rem;
    }
}

/* Laptops & Desktops About & Contact Pages (992px+) */
@media (min-width: 992px) {
    .about-section,
    .contact-section {
        padding: 5rem 0;
    }
    
    .about-hero,
    .contact-hero {
        padding: 4rem 0;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 3.5rem !important;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1.3rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
    }
    
    .about-card,
    .contact-card {
        padding: 3rem;
        margin-bottom: 3rem;
    }
    
    .about-card h2,
    .contact-card h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .team-member {
        padding: 3rem 2.5rem;
    }
    
    .team-member img {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .team-member h4 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .team-member .role {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .team-member p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .contact-form {
        padding: 4rem 3rem;
    }
    
    .contact-form .form-control {
        padding: 1.25rem;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .contact-form .btn-primary {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        border-radius: 15px;
        width: auto;
        display: inline-block;
    }
    
    .contact-info {
        padding: 4rem 3rem;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-item {
        padding: 2rem;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .contact-item i {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-right: 2rem;
    }
    
    .contact-item-content h5 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item-content p {
        font-size: 1.1rem;
    }
    
    /* Modern Contact Items Responsive */
    .contact-item-modern {
        padding: 2rem 1.5rem;
    }
    
    .icon-container {
        width: 80px;
        height: 80px;
        margin-right: 2rem;
    }
    
    .contact-icon-new {
        font-size: 1.8rem;
    }
    
    .contact-details-modern h5 {
        font-size: 1.3rem;
        color: #333;
    }
    
    .contact-details-modern p {
        font-size: 1rem;
        color: #666;
    }
}

/* Large Desktops About & Contact Pages (1200px+) */
@media (min-width: 1200px) {
    .about-hero h1,
    .contact-hero h1 {
        font-size: 4rem !important;
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .contact-form,
    .contact-info {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Laptops & Desktops (992px+) */
@media (min-width: 992px) {
    .booking-section {
        padding: 5rem 0;
    }
    
    .service-selection-card {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
    
    .service-option {
        display: flex;
        align-items: center;
        padding: 1.75rem;
        margin-bottom: 1.25rem;
        transition: all 0.3s ease;
    }
    
    .service-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 61, 130, 0.15);
    }
    
    .service-icon {
        margin-right: 1.25rem;
        margin-bottom: 0;
    }
    
    .time-slots {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .time-slot {
        padding: 1rem;
        transition: all 0.3s ease;
    }
    
    .time-slot:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 61, 130, 0.2);
    }
    
    .booking-form-card {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .calendar-container {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

/* ============================================
   WHATSAPP CONSULTATION WIDGET
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    max-width: 200px;
    min-height: 56px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-button.active {
    background: var(--primary-color);
}

.whatsapp-button.pulse {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-text {
    white-space: nowrap;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    max-height: 480px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.whatsapp-chat.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
}

.whatsapp-header-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.online-status {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-messages {
    min-height: 80px;
    max-height: 120px;
    overflow-y: auto;
    padding: 12px 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.whatsapp-message {
    margin-bottom: 10px;
}

.bot-message .message-content {
    background: white;
    padding: 10px 12px;
    border-radius: 15px 15px 15px 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 80%;
}

.bot-message .message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 5px;
    text-align: left;
}

.whatsapp-quick-actions {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.quick-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 4px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-height: 50px;
}

.quick-btn:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.quick-btn.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quick-btn i {
    font-size: 16px;
}

.quick-btn span {
    line-height: 1.2;
    font-weight: 500;
}

.whatsapp-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.form-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px;
    -webkit-overflow-scrolling: touch;
    max-height: 280px;
}

.form-scroll::-webkit-scrollbar {
    width: 6px;
}

.form-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.form-scroll::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.form-scroll::-webkit-scrollbar-thumb:hover {
    background: #128C7E;
}

/* Custom scroll indicator for better visibility */
.form-scroll {
    scrollbar-width: thin;
    scrollbar-color: #25D366 #f0f0f0;
}

/* Scroll indicator */
.scroll-indicator {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 6px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    display: none;
}

.scroll-indicator.show {
    display: block;
}

.scroll-hint {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

.whatsapp-form .form-group {
    margin-bottom: 12px;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}

.whatsapp-form textarea {
    resize: vertical;
    min-height: 60px;
}

.whatsapp-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-submit-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Responsive WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat {
        width: calc(100vw - 30px);
        max-width: 300px;
        max-height: 420px;
        bottom: 70px;
        right: -15px;
    }
    
    .whatsapp-button {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button i {
        font-size: 20px;
    }
    
    .whatsapp-messages {
        min-height: 60px;
        max-height: 80px;
        padding: 10px 12px;
    }
    
    .quick-action-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    
    .quick-btn {
        padding: 6px 2px;
        font-size: 9px;
        min-height: 42px;
    }
    
    .quick-btn i {
        font-size: 14px;
    }
    
    .form-scroll {
        padding: 12px;
        max-height: 240px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-scroll::-webkit-scrollbar {
        width: 4px;
    }
    
    .form-scroll::-webkit-scrollbar-thumb {
        background: #25D366;
        border-radius: 2px;
    }
    
    .whatsapp-form .form-group {
        margin-bottom: 10px;
    }
    
    .whatsapp-form input,
    .whatsapp-form select,
    .whatsapp-form textarea {
        padding: 8px 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .whatsapp-submit-btn {
        padding: 10px;
        font-size: 13px;
    }
}

/* ============================================
   RIGHT CONSULTATION SLIDER
   ============================================ */

.rightSlider {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 8px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 61, 130, 0.3);
}

.rightSlider:hover {
    right: 5px;
    box-shadow: -8px 0 25px rgba(0, 61, 130, 0.5);
}

.rightSlider.shake-it {
    animation: shake 0.5s ease-in-out;
}

.rightSlider.pulse-animation {
    animation: sliderPulse 2s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    25% { transform: translateY(-50%) translateX(-5px); }
    75% { transform: translateY(-50%) translateX(5px); }
}

@keyframes sliderPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

.rightSlider .content {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.slider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slider-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.slider-text h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.slider-text p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Consultation Popup */
.consultation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.popup-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-content.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 25px;
}

.consultation-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option-card:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 61, 130, 0.1);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.option-icon.email {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.option-icon.calendar {
    background: linear-gradient(135deg, var(--accent-color), #FFD700);
    color: white;
}

.option-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.option-content p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #666;
}

.response-time {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.emergency-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.emergency-icon {
    color: #856404;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.emergency-text strong {
    color: #856404;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.emergency-text p {
    margin: 0;
    font-size: 13px;
    color: #856404;
}

.emergency-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.emergency-text a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rightSlider {
        top: auto;
        bottom: 100px;
        right: 10px;
        transform: none;
        border-radius: 10px;
        padding: 10px;
    }
    
    .rightSlider .content {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
    
    .slider-content {
        flex-direction: row;
        align-items: center;
    }
    
    .slider-text h6,
    .slider-text p {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }
    
    .popup-content {
        width: 95%;
        margin: 10px;
    }
    
    .popup-header {
        padding: 15px;
    }
    
    .popup-header h4 {
        font-size: 16px;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .option-card {
        padding: 12px;
    }
    
    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 12px;
    }
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

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

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

/* Floating Action Button */
.btn-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 61, 130, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn-floating,
    .cta-section,
    .modal {
        display: none !important;
    }
    
    body {
        padding-top: 0;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}
