* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8fbff;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Styles */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo img {
    height: 55px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.icon-hambrgr {
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hambrgr-div {
    margin-right: 5px;
}

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

.hambrgr-div {
    margin-right: 15px;
}

.logo-main-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.login-main-div img {
    width: 24px;
    transition: transform 0.3s ease;
}

.login-main-div img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    opacity: 1;
    color: #3b82f6;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-primary-nav {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff !important;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    letter-spacing: 0.02em;
}

.cta-primary-nav:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.cta-primary-nav::after {
    display: none;
}

/* Default: hide on desktop */
.hambrgr-div,
.login-main-div {
    display: none;
}

/* Show only on small (mobile) screens */
@media screen and (max-width: 768px) {
    .hambrgr-div,
    .login-main-div {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Mobile Navigation */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    overflow-x: hidden;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 60px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.08);
}

.sidenav a {
    padding: 16px 28px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(240, 240, 240, 0.5);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.sidenav a:hover {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent);
    color: #3b82f6;
    padding-left: 38px;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: #333;
    border: none;
    background: none;
    transition: transform 0.3s ease;
}

.sidenav .closebtn:hover {
    transform: rotate(90deg);
}

/* Form CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    margin: 8% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

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

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #333;
    transform: rotate(90deg);
}

#studentForm {
    display: flex;
    flex-direction: column;
}

#studentForm label {
    margin-top: 16px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.02em;
}

#studentForm input {
    padding: 12px 14px;
    margin-top: 6px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

#studentForm input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#studentForm button {
    margin-top: 24px;
    padding: 13px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(76, 175, 80, 0.25);
}

#studentForm button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

/* Hero Section */
.hero-section {
    padding: 30px 5% ;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-left .small-title {
    color: #5f6368;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.hero-left h1 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.hero-left span {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li:before {
    content: "✓";
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
}

.price-box {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    border-radius: 12px;
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.new-price {
    font-size: 38px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1;
    letter-spacing: -0.02em;
}

.new-price span {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0;
}

.buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.start-btn,
.trial-btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.start-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.start-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.trial-btn {
    border: 2px solid #e5e7eb;
    background: white;
    color: #4b5563;
}

.trial-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(59, 130, 246, 0.02);
}

.guarantee {
    font-size: 14px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.guarantee a {
    text-decoration: underline;
    color: #3b82f6;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guarantee a:hover {
    color: #2563eb;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right lottie-player {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* VDS Server Performance */
.vds-server-performance {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    padding: 30px 5%;
    text-align: center;
}

.vds-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vds-title {
    font-size: 34px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.vds-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 55px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    max-width: 700px;
}

.vds-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

.vds-card {
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    width: 280px;
    text-align: left;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.vds-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.vds-card.best-deal {
    border: 2px solid #3b82f6;
    position: relative;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.02) 0%, white 100%);
}

.vds-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.vds-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #0a0a0a;
    text-align: center;
    font-weight: 700;
}

.price {
    font-size: 28px;
    font-weight: 800;
    margin: 18px 0 22px;
    color: #0a0a0a;
    text-align: center;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0;
}

.vds-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 22px;
    margin-top: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.vds-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.vds-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.vds-features li {
    margin-bottom: 10px;
    color: #4b5563;
    display: flex;
    align-items: center;
    margin-top: 12px;
    transition: transform 0.3s ease;
}

.vds-features li:hover {
    transform: translateX(3px);
}

.vds-features li:before {
    content: "✓";
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
}

.vds-features-included {
    padding: 30px 5%;
    background: linear-gradient(135deg, #f5f7ff, #f0f4ff);
    text-align: center;
    border-radius: 24px;
    /* margin: 40px auto; */
    max-width: 95%;
}

.vds-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vds-features-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #0a0a0a;
    letter-spacing: -0.02em;
}

.vds-features-title span {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vds-features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

.vds-features-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vds-features-grid li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.vds-features-grid li:hover {
    transform: translateX(5px);
}

.vds-features-grid li::before {
    content: "‣";
    position: absolute;
    left: 0;
    top: 1px;
    color: #10b981;
    font-weight: bold;
    font-size: 20px;
}

/* Prime Features Section */
.prime-features-section {
    padding: 30px 5%;
    position: relative;
    background-color: #fff;
}

.prime-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prime-features-header {
    text-align: center;
    padding-bottom: 45px;
}

.prime-features-badge span {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    color: #3b82f6;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.prime-features-title {
    font-size: 38px;
    color: #0a0a0a;
    margin: 18px 0;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.prime-features-description {
    color: #6b7280;
    font-size: 17px;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
}

.prime-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 45px;
}

.prime-feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.prime-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.02) 0%, white 100%);
}

.prime-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.05));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.prime-feature-card:hover .prime-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.prime-feature-icon img {
    max-width: 60%;
    height: auto;
}

.prime-feature-card h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.prime-feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #f0f8ff, #e8f4ff);
    padding: 80px 5%;
    border-radius: 0;
    max-width: 100%;
}

.why-choose-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.why-choose-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.why-choose-image img:hover {
    transform: scale(1.02);
}

.why-choose-content {
    flex: 1;
    min-width: 300px;
}

.why-choose-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #0a0a0a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.why-choose-feature {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-feature:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.why-choose-feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
    display: flex;
    align-items: center;
}

.why-choose-feature h3:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    margin-right: 12px;
}

.why-choose-feature p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    padding-left: 20px;
}

/* VDS Server Hosting */
.vds-server-hosting-section {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #ffffff;
    padding: 80px 5%;
}

.vds-box {
    border-radius: 20px;
    padding: 55px;
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 55px;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.vds-box:hover {
    transform: scale(1.01);
}

.os-selection {
    background: linear-gradient(135deg, #f5f6ff, #f0f2ff);
}

.control-panel {
    background: linear-gradient(135deg, #effaff, #e8f6ff);
}

.value-section {
    background: linear-gradient(135deg, #eaf5ff, #e2f0ff);
}

.vds-text {
    flex: 1;
    min-width: 300px;
}

.vds-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.vds-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.vds-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.vds-text ul li {
    margin-bottom: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.vds-text ul li:hover {
    transform: translateX(5px);
}

.vds-text ul li:before {
    content: "•";
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 24px;
    margin-right: 12px;
}

.vds-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.vds-button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.vds-icon {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.vds-icon lottie-player {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* No-code Automation */
.no-code-automation {
    padding: 30px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.automation-header {
    text-align: center;
    margin-bottom: 45px;
}

.automation-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.automation-header p {
    font-size: 17px;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.automation-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.feature-box {
    flex: 1 1 300px;
    background: linear-gradient(135deg, #f7f5ff, #f3f0ff);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1.5px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.12);
    border-color: rgba(147, 51, 234, 0.2);
}

.feature-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-img {
    transform: scale(1.05);
}

.feature-box h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-box p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.self-hosted-automation {
    padding: 30px 5%;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.automation-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 5%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(147, 51, 234, 0.02));
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.automation-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.automation-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.pricing-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 24px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.pricing-button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.automation-video {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.thumbnail-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumbnail-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.automation-text p {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #6b7280;
    font-size: 16px;
}

.automation-text strong {
    font-size: 17px;
    padding-right: 6px;
    color: #1a1a1a;
    font-weight: 700;
}

.automation-text-subtitle {
    background: linear-gradient(135deg, #9333ea, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}
.video-thumbnail-wrapper {
  position: relative;
  display: inline-block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.video-thumbnail-wrapper:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

/* FAQ Section */
.faq-section {
    padding: 30px 5%;
    background: linear-gradient(180deg, #f1f3f5 0%, #e9ecef 100%);
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 35px 5%;
}

.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #e5e7eb;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 26px 32px;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #1a1a1a;
    background: linear-gradient(180deg, #fafbfc 0%, #f8f9fa 100%);
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #3b82f6;
}

.faq-icon {
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #9ca3af;
    margin-left: 20px;
    min-width: 20px;
}

.faq-answer {
    padding: 0 32px 28px;
    display: none;
    animation: fadeInDown 0.3s ease-in-out;
    color: #6b7280;
    text-align: left;
    line-height: 1.7;
    font-size: 15px;
}

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

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-item.active .faq-question {
    color: #3b82f6;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
}

/* Footer */
.footer {
    padding: 50px 5% 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #effaff, #f5fbff);
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container-footer {
    z-index: 2;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.footer__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer__logo {
    flex: 1 1 100%;
    margin-bottom: 2.5rem;
}

.footer__logo img {
    height: 42px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.footer__logo img:hover {
    transform: scale(1.05);
}

.footer__logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.footer__logo-description {
    color: #6b7280;
    max-width: 350px;
    line-height: 1.6;
}

.footer__column {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 250px;
}

.footer__column-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

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

.footer__link {
    margin-bottom: 0.85rem;
}

.footer__link a {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
}

.footer__link a:hover {
    color: #3b82f6;
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    color: #6b7280;
    align-items: flex-start;
}

.footer__contact-item i {
    color: #3b82f6;
    font-size: 1rem;
    margin-top: 4px;
}

.footer__social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 50%;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(59, 130, 246, 0.2);
}

.footer__social-link:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-3px);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer__bottom {
    border-top: 1.5px solid rgba(229, 231, 235, 0.5);
    padding-top: 2.2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer__copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer__legal {
    display: flex;
    gap: 1.8rem;
}

.footer__legal-link {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer__legal-link:hover {
    color: #3b82f6;
}

.footer__legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer__legal-link:hover::after {
    width: 100%;
}

/* Responsive Styles - Maintained and Enhanced */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .login-main-div {
        display: block;
    }

    .hero-section .container {
        flex-direction: column;
    }

    .hero-left {
        padding-right: 0;
        /* margin-bottom: 40px; */
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .vds-title, .prime-features-title, .why-choose-content h2, .colocation-content h2 {
        font-size: 28px;
    }

    .vds-box {
        padding: 30px;
        flex-direction: column;
    }

    .vds-text {
        order: 2;
    }

    .vds-icon {
        order: 1;
    }

    .colocation {
        flex-direction: column;
    }

    .colocation-content {
        order: 2;
    }

    .colocation-image {
        order: 1;
    }

    .footer__column {
        flex: 1 1 150px;
    }

    .pre-footer-cta__title {
        font-size: 2rem;
    }

    .pre-footer-cta__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Samsung Z Fold specific styles */
@media (max-width: 280px) {
    .nav {
        padding: 10px 5%;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-left .small-title {
        font-size: 12px;
    }

    .feature-list li {
        font-size: 14px;
    }

    .new-price {
        font-size: 28px;
    }

    .buttons {
        flex-direction: column;
    }

    .start-btn, .trial-btn {
        width: 100%;
    }

    .vds-card {
        width: 100%;
    }

    .vds-title, .prime-features-title, .why-choose-content h2, .colocation-content h2 {
        font-size: 24px;
    }

    .prime-feature-card {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .footer__column {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-left h1 {
        font-size: 36px;
    }

    .vds-card {
        width: calc(50% - 15px);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .vds-card {
        width: calc(50% - 15px);
    }

    .automation-features {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .feature-box {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .vds-card {
        width: calc(33.333% - 20px);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .vds-card {
        width: calc(24% - 20px);
    }
}

/* For tablets and small screens (2 cards per row) */
@media (max-width: 992px) {
    .vds-card {
        width: calc(50% - 15px);
    }
}

/* For mobile devices (1 card per row) */
@media (max-width: 600px) {
    .vds-card {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-right lottie-player {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: rgba(59, 130, 246, 0.2);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(59, 130, 246, 0.2);
    color: #1a1a1a;
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}