@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&display=swap');



a {
    text-decoration: none;
    color: white;
}

/* pricing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.text-center {
  text-align: center;
}

.text-center p {
  font-size: 30px;
  font-weight: bold;
}

.description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: normal;
  color: #8f9bb2;
}

.grid {
  display: flex;
  justify-content: space-between;
}

.product {
  background-color: #1d273aab;
  border-radius: 18px;
  padding: 20px;
  flex: 2;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  border: 2px solid #ffffff1e;
 
}

.product-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.product-details {
  margin-bottom: 20px;
  color: #8f9bb2;
}

.product-price {
  font-size: 28px;
  margin-bottom: 20px;
}

.product-price span {
  position: relative;
  display: inline-block;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: transparent;
  background: linear-gradient(to right, #ffffff 0%, #ffffff 10%, #d2e4ff 20%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  margin-bottom: 0.5em;

}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin: 10px 0;
  text-align: left;
}

/* Highlight for popular product */
.product-popular {
    border: 2px solid #5cd9ff;
    transform: scale(1.1);
    position: relative;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.062), 0 0 40px rgba(0, 195, 255, 0.11), 0 0 60px rgba(0, 195, 255, 0.2);
    background: linear-gradient(#1d293a, #000f14);
}

.product-popular .tag {
  background-color: #77dfff;
  color: #00293b;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 30px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
}

.product-popular h2 {
  font-size: 26px; /* Larger font size for the popular product */
  position: relative;
  color: #fff;
}

@media (max-width: 992px) {
  .grid {
    flex-direction: column;
  }
}

/* Update the existing CSS with these specific changes */



/* --- HEADER and SUBTITLE STYLES --- */

.text-center h1 {

  font-size: 35px;

  color: #fff; /* Ensure header is white */

  margin-bottom: 5px;

}



/* Updated style for the paragraph under the header (subtitle) */

.text-center p {
    margin-bottom: 60px;
    font-size: 20px;
    /* font-weight: bold; */
    color: #5cd9ff;

}



/* --- BUTTON STYLES (Focusing on .btn) --- */

.btn {

  display: block;

  width: 100%;

  padding: 12px 20px;

  border-radius: 8px; 

  font-weight: 700;

  text-transform: uppercase;

  transition: background-color 0.3s ease, transform 0.2s;

  margin-bottom: 15px !important; 

 

  /* Specific style for the Mini and CTF+ buttons (darker background) to match the image */

  background-color: #2a3c58;

  color: #ffffff;

  border: 1px solid #4a668e;

  text-decoration: none; /* Ensure link style is removed */

}



/* Button hover effect */

.btn:hover {

  background-color: #3d557c;

}



/* Override for the popular product's button (Standard Mixed), making it a highlight color */

.product-popular .btn {

  background-color: #5cd9ff; /* Highlight color */

  color: #00293b; /* Dark text for contrast */

  border: none;

}



.product-popular .btn:hover {

  background-color: #8ce1ff;

}

/* Custom cursor styles */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    z-index: 9999;
    box-shadow: 0 5px 600px #00a2ff25;
    background-color: transparent;
    border: 2px solid white;
    transition: transform 0.1s ease;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Chakra Petch', sans-serif;
    line-height: 1.6;
    background-color: #051626;
    cursor: auto;
}

/* Banner container */
.banner {

    background: url('../img/background.png') fixed center center;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

/* Logo */
.logo-ctf {
    margin-bottom: 3rem;
    width: 100px;
}

/* Heading */
.banner-heading {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Description */
.banner-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 3rem;
    color: #c0c6cc;
}

/* Buttons container */
.buttons-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #00b5e2;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #0099c1;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Icon in button */
.btn-icon {
    margin-right: 0.5rem;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .banner-heading {
        font-size: 3rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .buttons-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

/* Section 2 */
/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Features section */
.features-section {
    background: linear-gradient(180deg, rgba(0, 12, 20, 0.7) 0%, rgba(4, 20, 41, 0.7) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 181, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

/* Left side content */
.features-intro {
    flex: 0 0 33.333%;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.features-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #00B5E2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Right side content - feature cards */
.features-grid {
    flex: 0 0 66.666%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.features-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: #00B5E2;
    transition: transform 0.3s ease;
}

.feature-icon svg {
    width: 3rem;
    height: 3rem;
}

.features-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    order: 1;
    color: white;
}

.features-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-weight: 300;
    order: 2;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .features-intro {
        flex: 0 0 100%;
    }
    
    .features-grid {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 5rem 1.5rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
}


/* Section 3 */ 
/* Platform section */
.platform-section {
    background: #000C14;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(0, 181, 226, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3rem;
    font-weight: 600;

    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Feature cards */
.platform-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.platform-card {
    background: rgba(9, 24, 43, 0.3);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    min-height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.platform-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 181, 226, 0.15);
}

.platform-card-content {
    flex: 1;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.platform-card-content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 181, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.platform-card:hover .platform-card-content::after {
    opacity: 1;
}

.platform-card-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    color: white;
    letter-spacing: -0.02em;
    position: relative;
}

.platform-card-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00B5E2, transparent);
    border-radius: 2px;
}

.platform-card-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 300;
}

.platform-card-image {
    flex: 1;
    min-width: 45%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.platform-card-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 181, 226, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card:hover .platform-card-image::before {
    opacity: 1;
}

.platform-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.platform-card:hover .platform-card-image img {
    transform: scale(1.08);
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .platform-card {
        flex-direction: column;
    }
    
    .platform-card-content {
        padding: 2.5rem;
    }
    
    .platform-card-image {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .platform-card-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .platform-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-card-title {
        font-size: 1.6rem;
    }
    
    .platform-card-content {
        padding: 2rem;
    }
}



/* banner */
.banner-container {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #13687e 0%, #043d4b 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 8%;
}

.banner-content {
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 30px;
}

.icon {
    margin-right: 8px;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to sections */
.section-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Scrollbar styling */
::-webkit-scrollbar {
    width: 16px; /* Width of the scrollbar */
    }
    
    ::-webkit-scrollbar-track {
    background: #000c14; /* Dark blue track color */
    border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(45deg, #007bff, #00bfff);
    border-radius: 10px;
    border: 2px solid #000c14;
    cursor: pointer;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(45deg, #0056b3, #0080ff);
    }


 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #051626;
            color: white;
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        /* Pricing Section */
        .pricing-section {
            background: #000c14;
            padding: 6rem 2rem;
            position: relative;
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-title {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #ffffff;
            letter-spacing: -0.03em;
        }

        .pricing-subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1120px;
            margin: 0 auto;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 2.25rem 1.75rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.25s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            border-color: rgba(0, 181, 226, 0.4);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border: 1px solid rgba(0, 181, 226, 0.35);
            background: rgba(0, 181, 226, 0.04);
        }

        .pricing-card.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #00B5E2, #0099c1);
            color: white;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .card-header {
            margin-bottom: 1.75rem;
        }

        .card-type {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
            letter-spacing: -0.02em;
        }

        .card-duration {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 6px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .card-features {
            margin: 1.5rem 0;
            list-style: none;
            flex-grow: 1;
        }

        .card-features li {
            padding: 0.65rem 0;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
        }

        .feature-icon {
            color: #00B5E2;
            margin-right: 0.75rem;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .card-price {
            margin-top: 1.75rem;
            padding-top: 1.75rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            display: block;
            text-align: center;
            letter-spacing: -0.03em;
        }

        .price-currency {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            margin-left: 0.25rem;
        }

        .cta-button {
            width: 100%;
            margin-top: 1.5rem;
            padding: 0.9rem 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .pricing-card.featured .cta-button {
            background: linear-gradient(135deg, #00B5E2, #0099c1);
            border: none;
        }

        .pricing-card.featured .cta-button:hover {
            background: linear-gradient(135deg, #0099c1, #007a99);
            box-shadow: 0 4px 16px rgba(0, 181, 226, 0.25);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                max-width: 420px;
            }

            .pricing-card.featured::before {
                top: 1.5rem;
                left: 1.5rem;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .pricing-section {
                padding: 4rem 1.25rem;
            }

            .pricing-title {
                font-size: 2rem;
            }

            .pricing-subtitle {
                font-size: 0.95rem;
            }

            .card-type {
                font-size: 1.35rem;
            }

            .price-amount {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 480px) {
            .pricing-section {
                padding: 3rem 1rem;
            }

            .pricing-title {
                font-size: 1.75rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }
        }


