:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --secondary-color: #00bfff;
    --accent-color: #ff6b35;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.navbar .container {
    max-width: 1400px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.navbar-brand {
    margin-right: 1rem !important;
}

#navbarNav {
    margin-left: 0.5rem;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 0.2rem;
    padding: 0.75rem 0.6rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Menüleri logoya yaklaştırma - SOLA yanaştırma */
.navbar-nav.ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.navbar-collapse {
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .navbar-nav {
        margin-left: 0 !important;
    }
    
    .navbar-brand {
        margin-right: 0.8rem !important;
    }
    
    #navbarNav {
        margin-left: 0;
    }
    
    /* Menüleri logo yanına sola yanaştırma */
    .navbar .container {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .collapse.navbar-collapse {
        flex-grow: 0;
        margin-left: 0;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 102, 204, 0.05);
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    border-radius: 8px;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.15);
    background: #f8f9fa;
}
.dropdown-submenu > .dropdown-toggle:after {
    content: "\f105";
    font-family: 'FontAwesome';
    float: right;
    margin-left: 8px;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

@media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
        left: 0;
        top: 100%;
        min-width: 200px;
    }
}

/* Datacenter Section Styles */
#datacenter-menu {
    background: linear-gradient(135deg, #1a1a2e 60%, #00bcd4 100%);
    position: relative;
    overflow: hidden;
}
#datacenter-menu h2 {
    color: #00bcd4;
    text-shadow: 0 2px 10px rgba(0,191,255,0.2);
}
#datacenter-menu .card {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,191,255,0.15);
    border: none;
    background: linear-gradient(135deg, #1a1a2e 80%, #00bcd4 100%);
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
#datacenter-menu .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0,191,255,0.25);
}
#datacenter-menu .card-title, #datacenter-menu .card-text {
    color: #fff;
}
#datacenter-menu svg {
    filter: drop-shadow(0 8px 32px rgba(0,191,255,0.12));
}
#datacenter-menu .card.bg-gradient.bg-primary {
    background: linear-gradient(135deg, #00bcd4 60%, #1a1a2e 100%);
}
#datacenter-menu .card.bg-gradient.bg-info {
    background: linear-gradient(135deg, #00bfff 60%, #1a1a2e 100%);
}
#datacenter-menu .card.bg-gradient.bg-success {
    background: linear-gradient(135deg, #4caf50 60%, #1a1a2e 100%);
}
#datacenter-menu .card.bg-gradient.bg-warning {
    background: linear-gradient(135deg, #ff9800 60%, #1a1a2e 100%);
}
#datacenter-menu .card.bg-gradient.bg-secondary {
    background: linear-gradient(135deg, #4b5d67 60%, #1a1a2e 100%);
}
#datacenter-menu .card.bg-gradient.bg-danger {
    background: linear-gradient(135deg, #e91e63 60%, #1a1a2e 100%);
}

/* Data-flow animation for SVG paths */
#datacenter-menu svg path {
    stroke-dasharray: 8 4;
    animation: datacenter-flow 2.5s linear infinite;
}
@keyframes datacenter-flow {
    to {
        stroke-dashoffset: -60;
    }
}

.dropdown-menu-large {
    min-width: 900px;
    padding: 2rem;
    left: -200px;
    transform: translateX(0);
}

.dropdown-menu-large .container-fluid {
    padding: 0;
}

.dropdown-menu-large .row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu-large .col-md-4 {
    padding: 0 1.5rem;
    border-right: 1px solid #e9ecef;
    min-height: 300px;
}

.dropdown-menu-large .col-md-4:last-child {
    border-right: none;
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 0 0 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    display: block;
}

.dropdown-menu-large .dropdown-item {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: normal;
    line-height: 1.4;
    display: block;
    width: 100%;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    background-color: transparent;
    border: 0;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(0, 102, 204, 0.05);
    color: var(--primary-color);
    padding-left: 0.5rem;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 300px;
        padding: 1rem;
    }
    
    .dropdown-menu-large .col-md-4 {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .dropdown-menu-large .col-md-4:last-child {
        margin-bottom: 0;
    }
}

.dropdown-item {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: white;
}

/* Müşteri Aracları Button Styling */
.nav-item .btn.dropdown-toggle {
    border-radius: 6px;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.nav-item .btn.dropdown-toggle:hover {
    background: var(--primary-color);
    color: white !important;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        margin-top: 1rem;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--border-color);
        margin-top: 0.25rem;
    }
    
    .nav-item .btn.dropdown-toggle {
        margin-top: 1rem !important;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.3), rgba(22, 33, 62, 0.4)), url('../../../img/shutterstock_495697993.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.2), rgba(22, 33, 62, 0.3));
    z-index: 1;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
}

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

.hero-top-title {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

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

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

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

.datacenter-stats-overlay {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.floating-icon {
    position: absolute;
    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;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    animation: floatIcon 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 15%;
    right: 15%;
}

.floating-icon:nth-child(2) {
    top: 50%;
    left: 5%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    right: 25%;
}

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

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Responsive adjustments for cloud animation */
@media (max-width: 768px) {
    .cloud-animation-container,
    .datacenter-image-container {
        min-height: 300px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-image {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .datacenter-img {
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Services Section */
.services-content {
    background: white;
    padding: 4rem 3rem;
}

.services-showcase {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
}

.service-tabs .nav-pills {
    border: none;
}

.service-tabs .nav-link {
    background: none;
    border: none;
    border-radius: 0;
    padding: 1.5rem 0;
    text-align: left;
    display: flex;
    align-items: center;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-tabs .nav-link:hover,
.service-tabs .nav-link.active {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.service-tabs .nav-link i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-tabs .nav-link h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-tabs .nav-link p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

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

.service-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Customer Experiences */
.customer-experiences-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.customer-experiences-section::before {
    content: '';
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.experience-categories {
    position: relative;
    z-index: 2;
}

.experience-category {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.experience-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.experience-category:hover::before {
    left: 100%;
}

.experience-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.experience-category.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.experience-category.active .category-icon {
    background: rgba(255, 255, 255, 0.2);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.experience-category.active .category-icon i {
    color: white;
}

.experience-category h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.experience-category.active h5 {
    color: white;
}

.category-indicator {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.experience-category.active .indicator-dot {
    background: white;
    transform: scale(1.5);
}

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

.testimonial-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.testimonial-content.active {
    display: block;
    opacity: 1;
}

.testimonial-card.featured {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.testimonial-quote i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.customer-details h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    color: var(--dark-color);
}

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

.customer-details .company {
    font-weight: 500;
    color: var(--primary-color);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

/* Responsive design for customer experiences */
@media (max-width: 992px) {
    .experience-categories .row {
        gap: 1rem;
    }
    
    .experience-category {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon i {
        font-size: 1.25rem;
    }
    
    .testimonial-card.featured {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .experience-categories .col-lg-3 {
        margin-bottom: 1rem;
    }
    
    .experience-category {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .experience-category h5 {
        font-size: 0.9rem;
    }
    
    .testimonial-card.featured {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .customer-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .customer-experiences-section {
        padding: 3rem 0;
    }
    
    .experience-category {
        padding: 1rem 0.75rem;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1rem;
    }
    
    .experience-category h5 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.brand-card img {
    max-height: 80px;
    max-width: 150px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.brand-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* Contact */
.contact-info {
    padding-right: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-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-text h6 {
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 191, 255, 0.25);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

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

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

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

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

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    color: white;
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-tabs .nav-link {
        padding: 1rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* SAP Hosting Page Specific Styles */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

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

.service-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.advantage-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.advantage-card:last-child {
    border-bottom: none;
}

.advantage-icon {
    flex-shrink: 0;
}

.advantage-card h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Migration Timeline */
.migration-timeline {
    position: relative;
}

.migration-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.timeline-content h5 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.pricing-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-subtitle {
    opacity: 0.9;
    margin-bottom: 0;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 1rem 2rem 2rem;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

/* Hero Stats */
.hero-stats {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    margin-bottom: 0;
}

.stat-number {
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
}

/* Hero Badges */
.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 25px;
}

/* Container Services Specific Styles */
.tech-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

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

.tech-icon {
    margin-bottom: 1rem;
}

.advantage-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.advantage-card:last-child {
    border-bottom: none;
}

.advantage-icon {
    flex-shrink: 0;
}

/* Migration Timeline */
.migration-timeline {
    position: relative;
    padding: 2rem 0;
}

.migration-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    max-width: 400px;
}

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

/* Container Form Styles */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .migration-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
        margin: 0 !important;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Object Storage Specific Styles */
.storage-tier-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.storage-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.hot-storage::before {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.warm-storage::before {
    background: linear-gradient(90deg, #ffc107, #fd7e14);
}

.cold-storage::before {
    background: linear-gradient(90deg, #17a2b8, #007bff);
}

.tier-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-price {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-unit {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* API Cards */
.api-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

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

.api-icon {
    margin-bottom: 1rem;
}

/* Use Case Cards */
.use-case-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.use-case-card:last-child {
    border-bottom: none;
}

.use-case-icon {
    flex-shrink: 0;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 1rem;
}

/* Code Example */
.code-example {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.code-example h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.code-example pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Disaster Recovery Specific Styles */
.recovery-tier-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recovery-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.platinum-tier {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff8e1, #ffffff);
}

.platinum-tier:hover {
    border-color: #ffb300;
    background: linear-gradient(135deg, #fff3c4, #ffffff);
}

.gold-tier {
    border-color: #ff9500;
    background: linear-gradient(135deg, #fff4e6, #ffffff);
}

.gold-tier:hover {
    border-color: #e68500;
    background: linear-gradient(135deg, #ffebcc, #ffffff);
}

.silver-tier {
    border-color: #9e9e9e;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
}

.silver-tier:hover {
    border-color: #757575;
    background: linear-gradient(135deg, #eeeeee, #ffffff);
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.tier-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tier-metrics {
    margin: 1.5rem 0;
    flex-shrink: 0;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-weight: 500;
    color: #666;
}

.metric-value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #666;
}

.tier-features i {
    color: #28a745;
}

/* DR Process Timeline */
.dr-process-timeline {
    position: relative;
    padding: 2rem 0;
}

.dr-process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #28a745);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-left: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    flex-grow: 1;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.step-content h5 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.step-content p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Technology Cards */
.tech-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tech-icon {
    margin-bottom: 1rem;
}

.tech-card h5 {
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.tech-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Compliance Cards */
.compliance-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.compliance-icon {
    margin-bottom: 1rem;
}

.compliance-card h5 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.compliance-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-card h5 {
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* DR Hero Section Badges */
.hero-badges .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* DR Contact Form Enhancements */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* CTA Section Gradient Background */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
    color: white !important;
    min-height: 200px;
    position: relative;
    padding: 80px 0 !important;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 68, 153, 0.9) 100%);
    z-index: 1;
}

.bg-gradient-primary .container {
    position: relative;
    z-index: 2;
}

.bg-gradient-primary h2,
.bg-gradient-primary p,
.bg-gradient-primary .text-white {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* CTA Buttons */
.bg-gradient-primary .btn {
    margin: 0 10px 10px 0;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.bg-gradient-primary .btn-light {
    background: white;
    color: #0066cc;
    border: none;
}

.bg-gradient-primary .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.bg-gradient-primary .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.bg-gradient-primary .btn-outline-light:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness for DR Elements */
@media (max-width: 768px) {
    .recovery-tier-card {
        margin-bottom: 2rem;
    }
    
    .dr-process-timeline::before {
        left: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        margin-left: 1rem;
        padding: 1rem;
    }
    
    .step-content::before {
        left: -8px;
        border-right-width: 6px;
    }
    
    .tech-card, .compliance-card {
        margin-bottom: 1.5rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
}

/* DR Animation Classes */
@keyframes drPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.pulse-animation {
    animation: drPulse 2s infinite;
}

/* DR Print Styles */
@media print {
    .recovery-tier-card,
    .tech-card,
    .compliance-card,
    .benefit-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .dr-process-timeline::before {
        background: #333;
    }
    
    .step-number {
        background: #333;
    }
}

/* Backup as a Service Specific Styles */
.backup-rule-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.backup-rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.backup-rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.rule-number {
    width: 80px;
    height: 80px;
    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: 2.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.rule-content {
    flex-grow: 1;
    text-align: center;
}

.rule-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.rule-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rule-content ul {
    text-align: left;
}

.rule-content li {
    padding: 0.5rem 0;
    color: #666;
}

.rule-content .fas.fa-check {
    color: #28a745;
}

/* Backup Type Cards */
.backup-type-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.backup-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.backup-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.type-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.type-header h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.type-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 500;
    color: #666;
}

.feature-value {
    font-weight: 600;
    color: var(--primary-color);
    background: #e3f2fd;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

/* Retention Timeline */
.retention-timeline {
    position: relative;
    padding: 2rem 0;
}

.retention-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #4CAF50, #2196F3, #FF9800, #F44336);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.timeline-marker.daily {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.timeline-marker.weekly {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.timeline-marker.monthly {
    background: linear-gradient(135deg, #FF9800, #FFA726);
}

.timeline-marker.yearly {
    background: linear-gradient(135deg, #F44336, #EF5350);
}

.timeline-marker::before {
    content: '';
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-left: 2rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
    position: relative;
    border-left: 4px solid;
}

.timeline-item:nth-child(1) .timeline-content {
    border-left-color: #4CAF50;
}

.timeline-item:nth-child(2) .timeline-content {
    border-left-color: #2196F3;
}

.timeline-item:nth-child(3) .timeline-content {
    border-left-color: #FF9800;
}

.timeline-item:nth-child(4) .timeline-content {
    border-left-color: #F44336;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-content h5 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.retention-period {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Security Cards */
.security-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    text-align: center;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

.security-card h5 {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.security-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Hero Stats for Backup */
.hero-stats .stat-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsiveness for Backup Elements */
@media (max-width: 768px) {
    .backup-rule-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .rule-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .retention-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
    }
    
    .timeline-marker::before {
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        left: -8px;
        border-right-width: 8px;
    }
    
    .backup-type-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .security-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .feature-value {
        align-self: flex-end;
    }
}

/* Backup Animation Classes */
@keyframes backupPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.backup-pulse {
    animation: backupPulse 2s ease-in-out infinite;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.data-flow-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

/* Backup Progress Indicators */
.backup-progress {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin: 1rem 0;
}

.backup-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Print Styles for Backup */
@media print {
    .backup-rule-card,
    .backup-type-card,
    .security-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .retention-timeline::before {
        background: #333;
    }
    
    .timeline-marker {
        background: #333 !important;
    }
    
    .rule-number {
        background: #333 !important;
        color: white !important;
    }
}

/* Monitoring Service Styles */
.ai-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.ai-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.ai-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monitoring-tier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.monitoring-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.essential-tier:hover {
    border-color: #28a745;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

.professional-tier:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.enterprise-tier:hover {
    border-color: #ffc107;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tier-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.tier-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.tier-features ul {
    margin: 0;
    padding: 0;
}

.tier-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features .fas.fa-check {
    color: #28a745;
    font-weight: 600;
}

.alert-process-timeline {
    position: relative;
    padding: 2rem 0;
}

.alert-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.alert-process-timeline .process-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.alert-process-timeline .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.alert-process-timeline .process-step:nth-child(even) .step-content {
    text-align: right;
    padding-right: 0;
    padding-left: 3rem;
}

.alert-process-timeline .process-step:nth-child(odd) .step-content {
    padding-right: 3rem;
    padding-left: 0;
}

.alert-process-timeline .step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.alert-process-timeline .step-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.alert-process-timeline .step-content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert-process-timeline .step-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.alert-process-timeline .step-time {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive adjustments for monitoring timeline */
@media (max-width: 768px) {
    .alert-process-timeline::before {
        left: 30px;
    }
    
    .alert-process-timeline .process-step {
        flex-direction: row !important;
    }
    
    .alert-process-timeline .step-number {
        left: 30px;
    }
    
    .alert-process-timeline .step-content {
        margin-left: 80px;
        text-align: left !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.tech-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tech-icon i {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.tech-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Monitoring specific service cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

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

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    min-width: 60px;
}

.benefit-card h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact form styling for monitoring */
.contact-form-container {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

/* Stats styling enhancements */
.hero-stats {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* Firewall Service Styles */
.firewall-tier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.firewall-tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.essential-tier:hover {
    border-color: #28a745;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.2);
}

.professional-tier:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.enterprise-tier:hover {
    border-color: #ffc107;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.policy-timeline {
    position: relative;
    padding: 2rem 0;
}

.policy-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.policy-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.policy-step:nth-child(even) {
    flex-direction: row-reverse;
}

.policy-step:nth-child(even) .step-content {
    text-align: right;
    padding-right: 0;
    padding-left: 3rem;
}

.policy-step:nth-child(odd) .step-content {
    padding-right: 3rem;
    padding-left: 0;
}

.policy-step .step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.policy-step .step-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.policy-step .step-content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-step .step-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.policy-step .step-time {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive adjustments for policy timeline */
@media (max-width: 768px) {
    .policy-timeline::before {
        left: 30px;
    }
    
    .policy-step {
        flex-direction: row !important;
    }
    
    .policy-step .step-number {
        left: 30px;
    }
    
    .policy-step .step-content {
        margin-left: 80px;
        text-align: left !important;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* =========================
   WAF Service Styles
========================= */

/* WAF Hero Section */
.waf-shield-animation {
    position: relative;
}

.waf-shield-animation .display-1 {
    animation: pulse 3s ease-in-out infinite;
}

.security-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.security-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 102, 204, 0.3);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-layer.active {
    border-color: var(--primary-color);
    background: rgba(0, 102, 204, 0.1);
}

.security-layer i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* WAF Service Cards */
.waf-service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.waf-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.waf-service-card .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;
    font-size: 2rem;
    color: white;
}

.waf-service-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.waf-service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

/* WAF Tier Cards */
.waf-tier-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

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

.waf-tier-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 0 0 15px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.tier-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.tier-header h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tier-price .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.tier-price .period {
    font-size: 1rem;
    opacity: 0.8;
}

.tier-features {
    padding: 2rem;
}

.tier-features h6 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tier-features ul {
    list-style: none;
    padding: 0;
}

.tier-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.tier-features li:last-child {
    border-bottom: none;
}

.tier-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    min-width: 16px;
}

.tier-footer {
    padding: 0 2rem 2rem;
}

/* WAF Technology Cards */
.tech-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.tech-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 1rem;
    font-size: 1.5rem;
    color: white;
}

.tech-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tech-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* WAF Benefits */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.benefit-card h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* WAF Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes wafGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
    }
}

.waf-service-card:hover .service-icon {
    animation: wafGlow 2s ease-in-out infinite;
}

/* WAF Contact Form */
.waf-contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.waf-contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.waf-contact-form .form-control,
.waf-contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.waf-contact-form .form-control:focus,
.waf-contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.waf-contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.waf-contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* WAF Responsive Design */
@media (max-width: 768px) {
    .security-layers {
        gap: 0.5rem;
    }
    
    .security-layer {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .waf-service-card,
    .waf-tier-card,
    .tech-card,
    .benefit-card {
        margin-bottom: 1.5rem;
    }
    
    .tier-price .price {
        font-size: 2rem;
    }
    
    .waf-tier-card.popular {
        transform: none;
    }
    
    .tech-icon,
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .waf-contact-form {
        padding: 1.5rem;
    }
}

/* Template System Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-stats .stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-visual {
    padding: 2rem;
}

/* IaaS Specific Styles */
.iaas-cloud-animation {
    position: relative;
    text-align: center;
}

.infrastructure-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.infrastructure-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.infrastructure-layer:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.infrastructure-layer i {
    font-size: 1.5rem;
}

.infrastructure-layer span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* SAP Specific Styles */
.sap-cloud-animation {
    position: relative;
    text-align: center;
}

.sap-modules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.sap-module {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 1; /* Başlangıçta görünür yap */
}

.sap-module:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.sap-module i {
    font-size: 1.5rem;
}

.sap-module span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Migration Step Styles */
.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Service Icon Styles */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
}

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

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

.footer-links a:hover {
    color: var(--primary-color) !important;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Background Utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

/* Contact Form Enhancements */
.contact-form-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

/* Navbar Scrolled Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Animation Classes */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design for Template */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .infrastructure-layers {
        gap: 0.5rem;
    }
    
    .infrastructure-layer {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .infrastructure-layer span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Customer Testimonials Section */
.customer-experiences-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08) !important;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.quote-icon {
    z-index: 10;
}

.testimonial-text {
    font-style: italic;
    position: relative;
}

.customer-avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .customer-avatar {
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    position: static;
    opacity: 1;
    margin: 0 1rem;
}

.carousel-control-prev:hover div,
.carousel-control-next:hover div {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.carousel-indicators {
    position: static;
    margin: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--primary-color);
    opacity: 0.3;
    border: none;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Modern Services Section */
.service-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card-header {
    padding: 30px 30px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.service-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.cloud {
    background: rgba(0,102,204,0.1);
    color: var(--primary-color);
}

.service-badge.managed {
    background: rgba(255,193,7,0.1);
    color: #ff8800;
}

.service-badge.security {
    background: rgba(220,53,69,0.1);
    color: #dc3545;
}

.service-card-body {
    padding: 0 30px 20px;
}

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

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-light);
}

.service-card-footer {
    padding: 0 30px 30px;
}

/* Additional color classes */
.bg-purple {
    background: linear-gradient(135deg, #6f42c1, #8b5cf6) !important;
}

.bg-orange {
    background: linear-gradient(135deg, #fd7e14, #ff8800) !important;
}

.bg-teal {
    background: linear-gradient(135deg, #20c997, #17a2b8) !important;
}

.btn-outline-purple {
    color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple:hover {
    background-color: #6f42c1;
    border-color: #6f42c1;
    color: white;
}

.btn-outline-orange {
    color: #fd7e14;
    border-color: #fd7e14;
}

.btn-outline-orange:hover {
    background-color: #fd7e14;
    border-color: #fd7e14;
    color: white;
}

.btn-outline-teal {
    color: #20c997;
    border-color: #20c997;
}

.btn-outline-teal:hover {
    background-color: #20c997;
    border-color: #20c997;
    color: white;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.08) !important;
}

/* Service Item Animation */
.service-item {
    opacity: 1;
    transition: all 0.3s ease;
}

.service-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-filter {
        flex-direction: column;
        align-items: center;
        gap: 1rem !important;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-card-modern {
        margin-bottom: 2rem;
    }
    
    .service-card-header,
    .service-card-body,
    .service-card-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .customer-experiences-section {
        padding: 3rem 0 !important;
    }
    
    .testimonial-card {
        padding: 2rem !important;
        margin: 1rem 0;
    }
    
    .stats-card {
        margin-bottom: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .display-5 {
        font-size: 2rem !important;
    }
}

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

.customer-experiences-section [data-aos] {
    animation: fadeInUp 0.8s ease-out;
}
