* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

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: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    /* overflow: hidden; */
}

.logo img {
    height: 55px;
}

.icon-hambrgr {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

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


/* Hide hamburger by default on large screens */
.hambrgr-div {
    display: none;
    margin-right: 5px;
}

/* Show nav links by default on large screens */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Show hamburger and hide nav links on mobile */
@media (max-width: 768px) {
    .hambrgr-div {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .login-main-div {
        display: block;
    }

    .hero-section{
        padding: 0%
        /* padding: 25px; */
    }

    .hero-right{
        padding-top: 30px;
    }

}

/* Rest of your existing CSS remains the same */

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

.login-main-div img {
    width: 24px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.sidenav a {
    padding: 12px 8px 12px 32px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: 0.3s;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sidenav a:hover {
    color: #3b82f6;
    background-color: #f8f9fa;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #333;
    border: none;
    background: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    font-size: 16px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.cta-primary-nav {
    background-color: #3b82f6;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 1 !important;
}

.cta-primary-nav:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}


.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: 60px 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: 100%;
    margin: 0 auto;
    /* padding: 0 5%; */
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 80px;
}

.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;
    margin-left: 10px;
}

.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: 800px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    /* background-color: gray; */
}


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

.vds-container {
    max-width: 100%;   /* increase width */
    margin: 0 auto;
    padding: 0 2%;
}

.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: 15px;
    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: 90%;
}

.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;
}

.features-section {
  /* padding: 50px 5%; */
  /* background: linear-gradient(135deg, #eef2ff, #f0f4ff); */
  border-radius: 24px;
  max-width: 1350px;
  margin: 40px auto;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

@media screen and (max-width: 768px) {
    .features-section{
      
        padding: 15px 5%;

    }
}

.features-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}

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

.features-subtitle {
  font-size: 16px;
  /* max-width: 700px; */
  margin: 0 auto 40px;
  color: #555;
}

.blue{
    background: linear-gradient(to right, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  text-align: center;
  padding: 15px;
}

.feature-card {
  /* background: #fff; */
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background-color: #0062ff15;
}

.feature-card i.icon {
  font-size: 32px;
  color: #3b82f6;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

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

.prime-features-container {
    max-width: 100%;   /* match hero section */
    margin: 0 auto;
    padding: 0;        /* ensure no extra padding inside */
}

.prime-features-header {
    text-align: center;
    /* padding-bottom: 45px; */
    max-width: 900px;  /* optional: keep header text nicely centered */
    margin: 0 auto;
}

.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: 10px 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(340px, 1fr)); /* wider cards */
    gap: 40px; /* more breathing space */
    margin-top: 45px;
}

.prime-feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 18px;
    padding: 45px; /* bigger padding for balance */
    text-align: center;
    border: 1.5px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.04);
}

.prime-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 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));
}

/* Add this to your existing CSS */
@media (max-width: 992px) {
    .vds-plans {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
        scroll-snap-type: x mandatory;
        padding-bottom: 20px; /* Space for scrollbar */
        justify-content: flex-start; /* Align items to start */
        gap: 15px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .vds-card {
        flex: 0 0 85%; /* Each card takes 85% of viewport width */
        scroll-snap-align: start;
        min-width: 300px; 
        max-width: 400px;/* Prevent flex items from growing beyond container */
    }

    /* Hide scrollbar but keep functionality */
    .vds-plans::-webkit-scrollbar {
        display: none;
    }

    /* Optional: Add some visual indication that it's scrollable */
    .vds-plans {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
       /* Fix for the Student Offer badge */
    .vds-card {
        position: relative;
        overflow: visible; /* Allow badge to overflow */
    }
    
    .vds-card .badge {
        position: relative;
        /* top: -12px; */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10; /* Ensure badge appears above other cards */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    /* Specific adjustment for the Student Offer badge */
    .vds-card[style*="border: 2px dashed green"] .badge {
        background-color: green !important;
        padding: 6px 16px;
    }
    
}

/* For very small screens, make cards slightly narrower */
@media (max-width: 576px) {
    .vds-card {
        flex: 0 0 90%;
    }
}

/* Add this to your existing media query for mobile devices */
@media (max-width: 992px) {
    .vds-plans {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 15px;
        margin-left: 5%;
        margin-right: 5%;
    }

    .vds-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 300px;
        max-width: 400px;
        position: relative;
        overflow: visible; /* Allow badge to overflow */
    }
    
    /* Fix for badges on mobile */
    .vds-card .badge {
        margin-top: 6px;
        height: 25px;
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10; /* Ensure badge appears above other cards */
        white-space: nowrap; /* Prevent text wrapping */
        width: auto;
        min-width: 100px; /* Give badges minimum width */
    }
    
    /* Specific adjustment for the Student Offer badge */
    .vds-card[style*="border: 2px dashed green"] .badge {
        background-color: green !important;
        padding: 6px 16px;
    }
}

/* 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: ;
    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: 60px 5%; /* match hero padding */
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.automation-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px; /* match hero gap */
    max-width: 100%;   /* remove 1200px cap */
    margin: 0 auto;
    padding: 0; /* keep same container alignment as hero */
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.02),
        rgba(147, 51, 234, 0.02)
    );
    border-radius: 24px;
}

.automation-text {
    flex: 1;
    min-width: 320px;
    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: 320px;
    text-align: center;
}

.thumbnail-img {
    width: 1800px;
    max-width: 650px; /* increase size (was 100% inside narrow box) */
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: fill;
}

.thumbnail-img:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.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);
}


/* Responsive behavior */
@media (max-width: 768px) {
  .automation-wrapper {
    flex-direction: column;  /* stack content */
    text-align: center;      /* center align */
    gap: 30px;
  }

  .automation-text {
    order: 1; /* text first */
    text-align: left; /* keep text aligned left */
  }

  .automation-video {
    order: 2; /* thumbnail second */
    text-align: center;
  }

  .thumbnail-img {
    max-width: 90%;  /* shrink for small screen */
    width: auto;
  }
}

.automation-guide {
  background: #f9fafc;
  padding: 20px 4%;
  border-radius: 20px;
  /* margin: 50px auto; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.guide-container {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: stretch;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  /* text-align: center; */
}

.guide-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 30px;
}

.setup-steps {
  list-style: decimal inside;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 16px;
  color: #334155;
  line-height: 1.8;
}

.setup-steps li {
  margin-bottom: 12px;
}

.guide-button {
  align-self: flex-start;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(0, 0, 0), 0.25);
  transition: background 0.3s, transform 0.3s;
}



.guide-button:hover {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transform: translateY(-2px);
}

.guide-video {
  flex: 1;
  min-width: 300px;
  height: 500px;
  margin-top: 150px;
  justify-self: center;
  align-self: center;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  height: 70%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .guide-container {
    flex-direction: column;
  }

  .guide-title{
  text-align: center;

  }

  .guide-video,
  .guide-content {
    width: 100%;
    margin-top: 0%;
  }

  .guide-button {
    width: 100%;
    text-align: center;
  }
  .video-card{
    height: 70%;
  }
}

@media (max-width: 768px) {
  .guide-container {
    flex-direction: column;
  }

  .guide-content {
    width: 100%;
    order: 1;
  }

  .guide-video {
    width: 100%;
    margin-top: 0%;
    order: 2;
  }

  .guide-button {
    width: 100%;
    text-align: center;
  }

  .video-card {
    height: 70%;
  }
}


.hero-right lottie-player {
    width: 100%;
    max-width: 800px; /* Default max width for larger screens */
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* For screens smaller than 768px (typical mobile devices) */
@media (max-width: 768px) {
    .hero-right lottie-player {
        max-width: 440px; /* Your requested max width */
        margin: 0 auto; /* Center the animation */
    }
}

/* For very small screens (optional adjustment) */
@media (max-width: 480px) {
    .hero-right lottie-player {
        max-width: 380px; /* Slightly smaller for very small devices */
    }
}

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

.faq-subtext{
    margin-bottom: 30px;

}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;   /* remove 1000px cap */
    margin: 0 auto;
    padding: 0;        /* remove inner 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 */
.footer {
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
    background-color: #effaff;
    /*margin-top: 20px;*/
}

.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: 2rem;
    margin-bottom: 3rem;
}

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

.footer__logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
}

.footer__logo-description {
    color: var(--gray-400);
    max-width: 350px;
}

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

.footer__column-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

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

.footer__link {
    margin-bottom: 0.75rem;
}

.footer__link a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link a:hover {
    color: #3b82f6;
}

.footer__contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
}

.footer__contact-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 4px;
}

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

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-800);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer__bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    color: var(--gray-500);
    font-size: 0.875rem;
}

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

.footer__legal-link {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .pre-footer-cta__title {
        font-size: 2rem;
    }

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

    .footer__column {
        flex: 1 1 150px;
        min-width: 150px;
    }

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

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

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

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

    .hero-section .container {
        /* flex-direction: column; */
        gap: 0;
    }

    .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;
    }
}