html {
    scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  background: #000000;
  --gap: 5em;
  --line: 1px;
  --color: rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(
      -90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    ),
    linear-gradient(
      0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    );
  background-size: var(--gap) var(--gap);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(75, 30, 133, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.02);
    margin: 20px 40px 0;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(236, 72, 153, 0.08) 50%, transparent 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    transition: width 0.3s ease;
}

.logo:hover span::after {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 8px;
}

nav ul li {
    margin: 0;
    position: relative;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

nav ul li a:hover::before {
    opacity: 1;
}

nav ul li a:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

.header-actions {
    display: flex;
    align-items: center;
    position: relative;
}

.contact-us-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.contact-us-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.2);
}

.user-icon-btn {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.1);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.user-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.user-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.4);
}

.user-icon-btn:hover::before {
    opacity: 0.2;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(75, 30, 133, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.08);
    border-radius: 15px;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.user-dropdown.active {
    display: block;
    animation: dropdownFadeIn 0.3s ease;
}

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

.user-dropdown a {
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    transition: width 0.3s ease;
}

.user-dropdown a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    transform: translateX(5px);
}

.user-dropdown a:hover::before {
    width: 100%;
}



.hero {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    background: none;
}

.hero h1 {
    font-size: 80px;
    margin: 0;
    color: #FFFFFF;
}

.hero p {
    font-size: 21px;
    margin: 20px 0 40px;
    color: #FFFFFF;
}

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

.get-started-btn {
    position: relative;
    padding: 12px 35px;
    background: #fec195;
    font-size: 17px;
    font-weight: 500;
    color: #181818;
    border: 3px solid #fec195;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s ease;
}

.get-started-btn:hover {
    background: transparent;
    color: #fec195;
    box-shadow: 0 0 25px #fec1958c;
}

.get-started-btn:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.get-started-btn:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.get-started-btn:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.get-started-btn:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.get-started-btn:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.get-started-btn:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}

.fil0 {
    fill: #fffdef;
}

.features-section {
    padding: 30px 50px 100px;
    text-align: center;
    margin: 0 60px;
    border-radius: 20px;
}

.features-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.features-section > p {
    font-size: 18px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 60px;
}

.card {
    width: 90%;
    max-width: 1100px;
    height: auto;
    min-height: 200px;
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    border-radius: 8px;
    color: white;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    margin: 0 auto;
}

.card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.card-content .card-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: inherit;
    text-transform: uppercase;
    margin: 0;
}

.card-content .card-para {
    color: inherit;
    opacity: 0.8;
    font-size: clamp(16px, 4vw, 18px);
    margin: 0;
    word-wrap: break-word;
}

.card:hover {
    transform: rotateY(10deg) rotateX(10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

.card:hover:before {
    transform: translateX(-100%);
}

.card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

.card:hover:after {
    transform: translateX(100%);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 100px;
}

.feature-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 24px;
    text-align: left;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 18px;
    color: #fff;
    line-height: 2;
    position: relative;
    z-index: 2;
    word-spacing: 4px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    border-radius: 10px;
}

.feature-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 10px;
}



@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    header {
        margin: 15px;
        padding: 8px 15px;
    }

    .features-section {
        padding: 30px 20px 80px;
        margin: 0 20px;
    }

    .features-grid {
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    header {
        margin: 15px;
        padding: 6px 15px;
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .logo span {
        font-size: 20px;
    }
    
    nav ul {
        gap: 5px;
    }
    
    nav ul li a {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .user-icon-btn {
        padding: 6px;
        font-size: 16px;
    }
    
    .user-dropdown {
        right: 10px;
        min-width: 120px;
    }
    
    .user-dropdown a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .features-section h2 {
        font-size: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
    }

    .card {
        width: 100%;
    }

    .get-started-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .get-started-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .features-section {
        margin: 0 10px;
        padding: 20px 10px 60px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* Infrastructure Benefits Section */
.infrastructure-benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

.infrastructure-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(75, 30, 133, 0.1) 0%, rgba(75, 30, 133, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Hover effect for main infrastructure card */
#main-infrastructure-card {
    transition: all 0.3s ease;
}

#main-infrastructure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.2);
}

@media (max-width: 768px) {
    .infrastructure-benefits-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-description {
        font-size: 14px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(75, 30, 133, 0.1) 0%, rgba(75, 30, 133, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover, .pricing-card.recommended {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.pricing-card.recommended {
    border-color: #fec195;
}

.pricing-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fec195;
}

.pricing-price span {
    font-size: 16px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.select-plan-btn {
    position: relative;
    padding: 12px 35px;
    background: #fec195;
    font-size: 17px;
    font-weight: 500;
    color: #181818;
    border: 3px solid #fec195;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.select-plan-btn:hover {
    background: transparent;
    color: #fec195;
    box-shadow: 0 0 25px #fec1958c;
}

/* EZ-Click Details Section */
.ez-click-details-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

.ez-click-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.detail-item {
    background: linear-gradient(135deg, rgba(75, 30, 133, 0.1) 0%, rgba(75, 30, 133, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.detail-item:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.1);
}

.detail-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
}

/* Smart AI Details Section */
.smart-ai-details-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

.smart-ai-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Multi-Cloud Details Section */
.multi-cloud-details-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

.multi-cloud-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Debug Infra Details Section */
.debug-infra-details-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(24, 24, 24, 0.95) 0%, rgba(48, 25, 84, 0.2) 100%);
    margin: 40px 0;
}

.debug-infra-details-section .container {
    max-width: 1400px;
    margin: 0 auto;
}
