@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-blue: #3b82f6;
    --primary-purple: #8b5cf6;
    --primary-orange: #f59e0b;
    --primary-red: #ef4444;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    background: var(--dark-bg);
    color: #fff;
}

/* Split text animation styles */
.section-title .char,
.hero-section h1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* Header & Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85) !important;
    padding: 0.5rem 0;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    letter-spacing: 1px;
    transition: transform 0.3s;
}

a.navbar-brand img {
    max-width: 60px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-header:hover::before {
    left: 100%;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

/* Hero Section */
.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 150px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary-custom {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-right: 1rem;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.btn-secondary-custom {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
    color: white;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.card1 {
    top: 50px;
    right: 10%;
}

.card2 {
    top: 300px;
    right: 5%;
}

.card3 {
    bottom: 150px;
    right: 15%;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    color: #2cbae1;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
}

.step {
    text-align: center;
    padding: 1.5rem;
    height: 100%;
    background: #272727;
    border: 1px solid #dddddd1f;
    border-radius: 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: #888;
    line-height: 1.6;
}

/* Contact Section */
/* glow effect */
.contact-container.glow {
  box-shadow:
    0 0 0 2px rgba(0, 123, 255, 0.6),
    0 0 25px rgba(0, 123, 255, 0.7),
    0 0 50px rgba(0, 123, 255, 0.4);
  animation: glowPulse 1.5s ease-out;
}

@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(0, 123, 255, 0.9),
      0 0 0 rgba(0, 123, 255, 0.9);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(0, 123, 255, 0.6),
      0 0 50px rgba(0, 123, 255, 0.4);
  }
}
.contact {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.form-label {
    color: #b0b0b0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    padding: 1rem;
}
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    padding: 1rem;
}
.form-select option{
    color: #000;
}

.form-control::placeholder {
    color: #fff;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.footer-container {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
    color: white;
    padding: 60px 0 0;
}

.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-item i {
    color: #00d4ff;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00d4ff;
    transform: translateY(-3px);
}

.hero-section {
    text-align: center;
    padding: 0 20px 60px;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}
.hero-section h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
}

.bottom-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
}

.copyright {
    text-align: right;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}


/* packages css */
.package-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: 0.5s;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.package-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price {
    text-align: right;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.price-period {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.b2b-price {
    font-size: 1.2rem;
    color: #764ba2;
    margin-top: 5px;
}

.service-section {
    margin-bottom: 35px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-title i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.service-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-style: italic;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-flow: wrap;
    gap: 10px;
}

.feature-list li {
    padding: 10px 0;
    color: #d0d0d0;
    display: flex;
    align-items: flex-start;
}

.feature-list li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-right: 5px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.addon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2cbae1 0%, #eb7f25 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #d55e1a 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.highlight-box {
    background: rgb(235 155 32 / 12%);
    border-left: 4px solid #667eea;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
}

.onetime-payment {
    background: rgba(245, 87, 108, 0.1);
    border-left: 4px solid #e98f1e;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
.stps-area {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .package-card {
        padding: 25px;
    }

    .package-title {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        text-align: left;
        margin-top: 20px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .btn-primary-custom {
        margin-right: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services {
        padding: 3rem 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .process {
        padding: 3rem 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .btn-header {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
    .stps-area {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.hero-section h2 {
    font-size: 2.5rem;
}
}

/* Tablet Responsive Styles */
@media (min-width: 577px) and (max-width: 992px) {
    .navbar-brand {
        font-size: 1.8rem;
    }

    .hero {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services,
    .process,
    .contact {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .contact-container {
        padding: 3rem;
    }

    .btn-header {
        padding: 0.7rem 1.8rem;
        margin-top: 0.5rem;
    }

    .floating-card {
        display: none;
    }
    .stps-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* iPad Pro and Similar Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .service-card {
        min-height: 350px;
    }
}

/* Navbar Mobile Improvements */
@media (max-width: 992px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .btn-header {
        width: 100%;
        display: block;
    }
}