:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Header Button Fix */
.main-header {
    position: relative;
    z-index: 9999 !important;
}

.outer-box {
    position: relative;
    z-index: 10000 !important;
}

.theme-btn.btn-style-one {
    position: relative;
    z-index: 10001 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #393285 !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(57, 50, 133, 0.3) !important;
}

.theme-btn.btn-style-one:hover {
    background: #2a1f5c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(57, 50, 133, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.theme-btn.btn-style-one .btn-title {
    color: white !important;
    font-weight: 600 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    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="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.hero-badge i {
    font-size: 16px;
    color: #ffd700;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 50px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, #393285 0%, #764ba2 100%);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #393285;
    border: 2px solid #e2e8f0;
    padding: 18px 36px;
    border-radius: 50px;
    color: #f1f2f8;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: #667eea;
    color: #ffffff;
    background: #413a87;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    text-decoration: none;
}

/* Hero Stats Section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 20px;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

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

    .section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Choose SoftiCation Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.why-choose-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-small" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(57, 50, 133, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-small)"/></svg>');
    opacity: 0.8;
    pointer-events: none;
}

.why-choose-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #393285, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(57, 50, 133, 0.15);
    border-color: rgba(57, 50, 133, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.why-choose-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon::before {
    transform: scale(1.2);
    opacity: 0.3;
}

.why-choose-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-choose-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Services Modules Section */
.services-modules-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.services-modules-section .col-lg-4,
.services-modules-section .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.service-module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.service-module-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.service-module-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-module-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-module-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.service-module-features li i {
    margin-right: 10px;
    color: var(--primary-gradient);
    font-size: 14px;
}

.service-module-cta {
    text-align: center;
}

.btn-module {
    background: var(--primary-gradient);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-module:hover {
    background: #2a1f5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 50, 133, 0.4);
    color: white;
    text-decoration: none;
}

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

/* Portfolio & Case Studies Section */
.portfolio-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.portfolio-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 auto;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-content {
    text-align: center;
    color: var(--white);
}

.portfolio-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.portfolio-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
    opacity: 0.9;
}

.btn-portfolio {
    background: var(--white);
    color: var(--primary-gradient);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-portfolio:hover {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.portfolio-cta {
    margin-top: 50px;
}

/* Process Flow Section */
.process-flow-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(57, 50, 133, 0.15);
}

.process-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
    transform: scale(1.1);
}

.process-step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.process-step-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.process-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(57, 50, 133, 0.3);
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 2px;
    opacity: 0.3;
}

/* Technology Stack Section */
.tech-stack-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.tech-stack-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="tech-dots" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="0.5" fill="rgba(57, 50, 133, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-dots)"/></svg>');
    opacity: 0.8;
    pointer-events: none;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.tech-category {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(57, 50, 133, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #393285, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-category:hover::before {
    transform: scaleX(1);
}

.tech-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(57, 50, 133, 0.15);
    border-color: rgba(57, 50, 133, 0.2);
}

.tech-category-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.tech-category:hover .tech-category-icon {
    transform: scale(1.1);
}

.tech-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    position: relative;
}

.tech-category-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.tech-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}

.tech-item:hover {
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.2);
    border-color: rgba(57, 50, 133, 0.1);
}

.tech-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.tech-icon i {
    font-size: 20px;
    color: #393285;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon i {
    color: white;
}

.tech-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tech-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a202c;
    transition: all 0.3s ease;
}

.tech-type {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-name,
.tech-item:hover .tech-type {
    color: white;
}

.tech-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Tooltip styles */
.tech-item[data-tooltip] {
    position: relative;
}

.tech-item[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.tech-item[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    margin-bottom: -5px;
    z-index: 1000;
}

/* Ideal Partner Section */
.ideal-partner-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
    position: relative;
}

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

.partner-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px;
    }
    
    .partner-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

/* Detailed Services Section */
.detailed-services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-detailed-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-detailed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-detailed-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 25px;
}

.service-detailed-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-detailed-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-features-list li i {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-detailed-card {
        padding: 30px 25px;
    }
    
    .service-detailed-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* AI-Powered Suggestions Widget */
.ai-widget-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.ai-widget-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.ai-widget-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.ai-widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.ai-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.ai-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.ai-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ai-message {
    margin-bottom: 25px;
}

.message-bubble {
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 15px;
    border-bottom-left-radius: 5px;
    max-width: 80%;
}

.message-bubble p {
    margin: 0;
    color: #1a202c;
    font-size: 0.95rem;
}

.ai-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.ai-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #1a202c;
}

.ai-option-btn:hover {
    border-color: #393285;
    background: #f8fafc;
    transform: translateY(-2px);
}

.ai-option-btn i {
    color: #393285;
    font-size: 16px;
}

.ai-features {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.ai-feature i {
    color: #393285;
    font-size: 20px;
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.ai-widget-footer {
    display: flex;
    gap: 15px;
}

.btn-ai-primary,
.btn-ai-secondary {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-ai-primary {
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
}

.btn-ai-secondary {
    background: white;
    color: #393285;
    border: 2px solid #e2e8f0;
}

.btn-ai-primary:hover,
.btn-ai-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.2);
}

.ai-widget-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ai-benefits {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-benefits h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.ai-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.ai-benefits-list li i {
    color: #10b981;
    margin-top: 2px;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.ai-stat {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ai-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #393285;
    margin-bottom: 5px;
}

.ai-stat .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Conversion-Focused Features */
.conversion-features-section {
    background: white;
    padding: 80px 0;
}

.conversion-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.conversion-feature {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.conversion-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(57, 50, 133, 0.15);
}

.conversion-feature .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.conversion-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.conversion-feature p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.benefit-tag {
    background: #f1f5f9;
    color: #393285;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.conversion-cta {
    margin-top: 60px;
}

.conversion-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.conversion-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

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



/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.exit-popup.active {
    display: flex;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.exit-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e2e8f0;
}

.exit-popup-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.exit-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: #f1f5f9;
    color: #1a202c;
}

.exit-popup-body {
    padding: 30px;
    text-align: center;
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.exit-popup-body h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.exit-popup-body p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.exit-popup-form .form-row {
    display: flex;
    gap: 10px;
}

.exit-popup-form .form-row input,
.exit-popup-form .form-row select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.exit-popup-form input,
.exit-popup-form select,
.exit-popup-form textarea {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.exit-popup-form input:focus,
.exit-popup-form select:focus,
.exit-popup-form textarea:focus {
    outline: none;
    border-color: #393285;
    box-shadow: 0 0 0 3px rgba(57, 50, 133, 0.1);
}

.exit-popup-form textarea {
    resize: vertical;
    min-height: 80px;
}

.exit-popup-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.exit-popup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.3);
}

.exit-popup-note {
    font-size: 0.85rem;
    color: #a0aec0;
    margin: 0;
}

/* Enquiry Form Popup */
.enquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.enquiry-popup.active {
    opacity: 1;
    visibility: visible;
}

.enquiry-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.enquiry-popup.active .enquiry-popup-content {
    transform: translateY(0);
}

.enquiry-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.enquiry-popup-close:hover {
    color: #333;
}

.enquiry-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.enquiry-header p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.enquiry-form {
    text-align: left;
}

.enquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9ff;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #667eea;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #667eea;
    font-weight: bold;
}

.btn-enquiry-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.enquiry-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* WhatsApp Chat Popup */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.whatsapp-popup.active .whatsapp-popup-content {
    transform: translateY(0) scale(1);
}

.whatsapp-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.whatsapp-popup-close:hover {
    color: #333;
}

.whatsapp-header {
    margin-bottom: 2rem;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.whatsapp-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.whatsapp-header p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

/* WhatsApp Options */
.whatsapp-options {
    margin-bottom: 2rem;
}

.whatsapp-option-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.whatsapp-option-card:hover {
    transform: translateY(-3px);
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-option-card:active {
    transform: translateY(-1px);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
    text-align: left;
}

.option-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.option-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.option-benefits {
    display: flex;
    gap: 1rem;
}

.option-benefits span {
    color: #25D366;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.option-arrow {
    color: #25D366;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-option-card:hover .option-arrow {
    transform: translateX(5px);
}

.whatsapp-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.whatsapp-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1e5e9, transparent);
}

.whatsapp-divider span {
    background: white;
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* WhatsApp Form Container */
.whatsapp-form-container {
    margin-bottom: 2rem;
}

.whatsapp-form {
    text-align: left;
    margin-bottom: 2rem;
}

.whatsapp-form .form-group {
    margin-bottom: 1.5rem;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9ff;
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: #25D366;
    background: white;
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-back {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-1px);
}

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

.btn-whatsapp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-benefits {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.whatsapp-benefits .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-size: 0.9rem;
}

.whatsapp-benefits .benefit-item i {
    font-size: 1.2rem;
}

/* Quote Enquiry Popup */
.quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-popup.active {
    opacity: 1;
    visibility: visible;
}

.quote-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-popup.active .quote-popup-content {
    transform: translateY(0);
}

.quote-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.quote-popup-close:hover {
    color: #333;
}

.quote-header {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.quote-header h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.quote-header p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

.quote-form {
    text-align: left;
    margin-bottom: 2rem;
}

.quote-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quote-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.quote-form .form-group {
    margin-bottom: 1.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9ff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

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

.btn-quote-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.quote-benefits {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.quote-benefits .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.9rem;
}

.quote-benefits .benefit-item i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(57, 50, 133, 0.15);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e2e8f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #393285;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #393285 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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-cta" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-cta)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    background: #f8fafc;
    padding: 80px 0;
}

.contact-form-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.contact-form-modern h3 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #393285;
    box-shadow: 0 0 0 3px rgba(57, 50, 133, 0.1);
}

.form-control::placeholder {
    color: #a0aec0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #393285, #764ba2);
    border: none;
    padding: 15px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing Plans Section */
.pricing-section {
    background: white;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-amount {
    margin-bottom: 1rem;
}

.pricing-amount .currency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.pricing-amount .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.pricing-amount .period {
    font-size: 1rem;
    color: #666;
}

.pricing-description {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #28a745;
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
}

.btn-pricing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 10px;
    color: #666;
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.member-info h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #667eea;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: #f8f9ff;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.team-stat .stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Blog & Resources Section */
.blog-resources-section {
    background: white;
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.resource-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.resource-type {
    background: #f8f9ff;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.resource-date {
    color: #999;
    font-size: 0.8rem;
}

.btn-resource {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-resource:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.blog-preview {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.blog-preview h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-post h5 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #764ba2;
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.support-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.support-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.support-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.support-features i {
    color: #28a745;
    font-size: 1rem;
}

.btn-support {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.support-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.support-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.support-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-method i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-method span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-category {
        padding: 25px;
    }
    
    .tech-category-header {
        margin-bottom: 20px;
    }
    
    .tech-category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .tech-category-title {
        font-size: 1.2rem;
    }
    
    .tech-category-description {
        font-size: 0.85rem;
    }
    
    .tech-item {
        padding: 15px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon i {
        font-size: 18px;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .tech-type {
        font-size: 0.75rem;
    }

/* Responsive Design for New Sections */
@media (max-width: 768px) {
        .testimonials-grid,
        .pricing-grid,
        .team-grid,
        .resources-grid,
        .support-grid {
            grid-template-columns: 1fr;
        }

        .testimonials-stats,
        .team-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .pricing-card.featured {
            transform: none;
        }

        .support-contact-info {
            grid-template-columns: 1fr;
        }

        .blog-posts {
            grid-template-columns: 1fr;
        }

        /* Exit Popup Mobile Responsive */
        .exit-popup-content {
            margin: 20px;
            padding: 1.5rem;
            max-width: 100%;
        }

        .exit-popup-form .form-row {
            flex-direction: column;
            gap: 15px;
        }

        .exit-popup-form .form-row input,
        .exit-popup-form .form-row select {
            flex: none;
        }

        .exit-popup-form input,
        .exit-popup-form select,
        .exit-popup-form textarea {
            font-size: 16px; /* Prevents zoom on iOS */
        }

        /* WhatsApp Popup Mobile Responsive */
        .whatsapp-popup-content {
            margin: 20px;
            padding: 1.5rem;
            max-width: 100%;
        }

        .whatsapp-option-card {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

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

        .option-benefits {
            justify-content: center;
        }

        .form-buttons {
            flex-direction: column;
        }

        .whatsapp-benefits {
            flex-direction: column;
            gap: 1rem;
        }

        /* Quote Popup Mobile Responsive */
        .quote-popup-content {
            margin: 20px;
            padding: 1.5rem;
            max-width: 100%;
            max-height: 85vh;
        }

        .quote-form .form-row {
            flex-direction: column;
            gap: 15px;
        }

        .quote-form .form-row .form-group {
            flex: none;
        }

        .quote-form input,
        .quote-form select,
        .quote-form textarea {
            font-size: 16px; /* Prevents zoom on iOS */
        }

        .quote-benefits {
            flex-direction: column;
            gap: 1rem;
        }
    }

    /* Sticky CTA Button Mobile Responsive */
    .sticky-cta-button,
    .get-free-quote-btn {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .sticky-cta-content,
    .get-free-quote-btn {
        padding: 12px 20px;
        justify-content: center;
    }

    .sticky-cta-text span,
    .get-free-quote-btn span {
        display: none;
    }
}

/* Sticky CTA Button Styles */
.sticky-cta-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: block;
}

.sticky-cta-content {
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(57, 50, 133, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-cta-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 50, 133, 0.4);
    text-decoration: none;
}

.sticky-cta-text {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.sticky-cta-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.1);
}

/* Get Free Quote Button Specific Styles */
.get-free-quote-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(57, 50, 133, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.get-free-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(57, 50, 133, 0.4);
    color: white;
    text-decoration: none;
}

.get-free-quote-btn i {
    font-size: 16px;
}

/* Professional Cloud Solutions Page Styles - Light Theme */

/* Hero Section Pro */
.hero-section-pro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    overflow: hidden;
}

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

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(57, 50, 133, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.8) 50%, 
        rgba(241, 245, 249, 0.7) 100%);
}

.hero-content-pro {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-left {
    color: #1e293b;
}

.hero-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(57, 50, 133, 0.1);
    border: 1px solid rgba(57, 50, 133, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #393285, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.hero-badge-pro span {
    font-size: 14px;
    font-weight: 500;
    color: #393285;
}

.hero-title-pro {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
}

.title-highlight {
    background: linear-gradient(135deg, #393285, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-pro {
    font-size: 20px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #393285;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-cta-pro {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(57, 50, 133, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(57, 50, 133, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-pro {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #393285;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #393285;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary-pro:hover {
    background: #393285;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Platform Showcase */
.hero-right {
    position: relative;
}

.platform-showcase {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.platform-card {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.platform-card.active {
    display: block;
}

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

.platform-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.platform-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.platform-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #393285, #764ba2);
    z-index: -1;
}

/* Platform-specific colors */
.platform-card[data-platform="aws"] .platform-logo::before {
    background: linear-gradient(135deg, #ff9900, #ff6b35);
}

.platform-card[data-platform="azure"] .platform-logo::before {
    background: linear-gradient(135deg, #0078d4, #00a1f1);
}

.platform-card[data-platform="gcp"] .platform-logo::before {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.platform-card[data-platform="vps"] .platform-logo::before {
    background: linear-gradient(135deg, #393285, #764ba2);
}

.platform-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.platform-info p {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.platform-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.feature-item i {
    color: #10b981;
    font-size: 18px;
}

.feature-item span {
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
}

.platform-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
    flex: 1;
    background: #f8fafc;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #393285;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Platform Navigation */
.platform-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-indicator.active {
    opacity: 1;
    background: rgba(57, 50, 133, 0.1);
    transform: scale(1.05);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #393285, #764ba2);
    transition: all 0.3s ease;
}

.nav-indicator[data-platform="aws"] .indicator-icon {
    background: linear-gradient(135deg, #ff9900, #ff6b35);
}

.nav-indicator[data-platform="azure"] .indicator-icon {
    background: linear-gradient(135deg, #0078d4, #00a1f1);
}

.nav-indicator[data-platform="gcp"] .indicator-icon {
    background: linear-gradient(135deg, #4285f4, #34a853);
}

.nav-indicator[data-platform="vps"] .indicator-icon {
    background: linear-gradient(135deg, #393285, #764ba2);
}

.nav-indicator span {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-indicator:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Contact Now Button */
.contact-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 50, 133, 0.3);
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.contact-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.4);
    color: white;
    text-decoration: none;
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.contact-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 30px;
}

.selected-platform {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(57, 50, 133, 0.1);
}

.selected-platform span:first-child {
    color: #64748b;
    font-weight: 500;
}

.platform-name {
    color: #393285;
    font-weight: 700;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #393285;
    box-shadow: 0 0 0 3px rgba(57, 50, 133, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #393285;
}

.checkbox-label a {
    color: #393285;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-actions .btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions .btn-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #393285, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-actions .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(57, 50, 133, 0.3);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-secondary,
    .form-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* New Service Sections Styles */
.aws-services-section,
.azure-services-section,
.gcp-services-section,
.vps-genai-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.aws-services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.azure-services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.gcp-services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.vps-genai-services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #393285, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(57, 50, 133, 0.15);
    border-color: rgba(57, 50, 133, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #393285, #764ba2);
    opacity: 0.9;
    transition: all 0.3s ease;
}

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

.service-item:hover .service-icon::before {
    opacity: 1;
    transform: scale(1.05);
}

.service-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    color: #475569;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 500;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #393285;
    font-weight: bold;
    font-size: 14px;
    background: rgba(57, 50, 133, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platform-specific icon colors */
.aws-services-section .service-icon {
    background: linear-gradient(135deg, #FF9900, #FF6B35);
}

.azure-services-section .service-icon {
    background: linear-gradient(135deg, #0078D4, #00A1F1);
}

.gcp-services-section .service-icon {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.vps-genai-services-section .service-icon {
    background: linear-gradient(135deg, #393285, #764ba2);
}

/* Responsive Design for Service Sections */
@media (max-width: 768px) {
    .aws-services-section,
    .azure-services-section,
    .gcp-services-section,
    .vps-genai-services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .service-item {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-item h4 {
        font-size: 20px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .service-item ul li {
        font-size: 13px;
        padding-left: 22px;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-item h4 {
        font-size: 18px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(57, 50, 133, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(57, 50, 133, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #393285;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(57, 50, 133, 0.05), rgba(118, 75, 162, 0.05));
}

.faq-item.active .faq-question h4 {
    color: #393285;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-pro {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta-pro {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title-pro {
        font-size: 40px;
    }
    
    .hero-subtitle-pro {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-cta-pro {
        flex-direction: column;
        gap: 16px;
    }
    
    .platform-showcase {
        padding: 30px 20px;
    }
    
    .platform-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-indicator {
        padding: 12px;
    }
    
    .indicator-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Legacy Cloud Platform Slider Styles (keeping for backward compatibility) */
.cloud-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.cloud-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cloud-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.cloud-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.cloud-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.slide-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.slide-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
}

.slide-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

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

/* Platform-specific colors */
.cloud-slide[data-platform="aws"] .slide-icon::before {
    background: linear-gradient(135deg, #FF9900, #FF6B35);
}

.cloud-slide[data-platform="azure"] .slide-icon::before {
    background: linear-gradient(135deg, #0078D4, #00A1F1);
}

.cloud-slide[data-platform="gcp"] .slide-icon::before {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.cloud-slide[data-platform="vps"] .slide-icon::before {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.slide-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.slide-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.slide-features span i {
    color: #48bb78;
    font-size: 12px;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cloud-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    animation: float 6s ease-in-out infinite;
}

.cloud-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cloud-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.cloud-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

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

/* Platform-specific visual styles */
.aws-visual .cloud-element {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(255, 107, 53, 0.2));
}

.azure-visual .cloud-element {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.2), rgba(0, 161, 241, 0.2));
}

.gcp-visual .cloud-element {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.2), rgba(52, 168, 83, 0.2));
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-dot.active {
    opacity: 1;
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
}

.dot-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
}

.nav-dot[data-slide="0"] .dot-icon {
    background: linear-gradient(135deg, #FF9900, #FF6B35);
}

.nav-dot[data-slide="1"] .dot-icon {
    background: linear-gradient(135deg, #0078D4, #00A1F1);
}

.nav-dot[data-slide="2"] .dot-icon {
    background: linear-gradient(135deg, #4285F4, #34A853);
}

.nav-dot[data-slide="3"] .dot-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.dot-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-dot:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.control-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
    transform: scale(0.95);
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .cloud-slider {
        height: 600px;
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .slide-content {
        max-width: 100%;
        text-align: center;
    }
    
    .slide-content h3 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slide-features {
        justify-content: center;
    }
    
    .slider-nav {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-dot {
        padding: 10px;
    }
    
    .dot-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* Legacy platform icons styles (keeping for backward compatibility) */
.cloud-platforms {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.platform-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.platform-icon[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

/* Overview Section Styles */
.overview-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.overview-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Core Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: #667eea;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-features li i {
    color: #48bb78;
    margin-right: 10px;
    font-size: 14px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Additional Services Grid */
.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

/* Success Stories Grid */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.success-story-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

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

.story-quote {
    margin-bottom: 20px;
}

.story-quote i {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.story-quote p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    font-size: 16px;
}

.story-author h5 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.story-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

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

.resource-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.resource-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-resource {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-resource:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
    color: white;
    text-decoration: none;
}

/* Contact Consultation Section */
.contact-consultation-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.consultation-cta {
    margin-top: 40px;
}

.consultation-cta h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cloud-platforms {
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-card {
        margin-bottom: 30px;
    }
}