/* Color Scheme Variables */
:root {
    --medium-slate-blue: #8558EC;
    --rich-black: #020E1E;
    --naples-yellow: #F1D65E;
    --cyan-rgb: #01FDFC;
    --atomic-tangerine: #FE924E;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rich-black);
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--medium-slate-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a:hover {
    background: var(--medium-slate-blue);
    color: white;
    transform: translateY(-2px);
}

/* Dropdown Menu Styles */
.nav-menu .has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    color: var(--atomic-tangerine);
}

.nav-menu .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--medium-slate-blue);
}

.nav-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    list-style: none;
    padding: 1.5rem 0;
    margin: 0.5rem 0 0 0;
    min-width: 280px;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(133, 88, 236, 0.15),
        0 0 0 1px rgba(133, 88, 236, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(133, 88, 236, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.nav-menu .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-menu .dropdown li {
    margin: 0;
    position: relative;
}

.nav-menu .dropdown li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--atomic-tangerine), var(--medium-slate-blue));
    transition: width 0.3s ease;
}

.nav-menu .dropdown li:hover::before {
    width: 4px;
}

.nav-menu .dropdown a {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: var(--rich-black);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    border-radius: 0;
}

.nav-menu .dropdown a i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
    color: var(--medium-slate-blue);
    transition: all 0.3s ease;
}

.nav-menu .dropdown a:hover {
    background: linear-gradient(135deg, rgba(68, 97, 171, 0.08) 0%, rgba(255, 214, 0, 0.08) 100%);
    color: var(--medium-slate-blue);
    transform: translateX(8px);
    font-weight: 600;
}

.nav-menu .dropdown a:hover i {
    color: var(--atomic-tangerine);
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(2, 14, 30, 0.5), rgba(2, 14, 30, 0.5)),
        url('./assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: white;
    /* Debug: Add a fallback background color to see if the element is styled */
    background-color: #1a1a1a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--naples-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--naples-yellow));
    color: white;
    box-shadow: 0 4px 15px rgba(254, 146, 78, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 146, 78, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--naples-yellow);
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.12) 0%, rgba(1, 253, 252, 0.08) 100%);
    position: relative;
    margin: 0;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(133, 88, 236, 0.12);
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--medium-slate-blue), var(--cyan-rgb), var(--atomic-tangerine), var(--naples-yellow));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.15;
    z-index: -1;
}

.services::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 28px;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.services .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--medium-slate-blue), var(--cyan-rgb));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--rich-black);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow-x: auto;
}

/* Responsive adjustment: horizontal scroll on smaller screens */
@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .service-card {
        flex: 0 0 80%;
        min-width: 280px;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--rich-black);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(133, 88, 236, 0.08);
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(133, 88, 236, 0.15);
    border-color: var(--atomic-tangerine);
    background: rgba(255, 255, 255, 0.85);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--atomic-tangerine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(254, 146, 78, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(254, 146, 78, 0.4);
    background: var(--medium-slate-blue);
}

.service-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 0.75rem;
    text-align: center;
}

.service-card p {
    color: var(--rich-black);
    opacity: 0.8;
    margin-bottom: 0.75rem;
    text-align: center;
    line-height: 1.5;
    font-size: 1rem;
}

.service-card ul {
    text-align: left;
    margin: 0;
    padding-left: 1.2rem;
}

.service-card li {
    color: var(--rich-black);
    opacity: 0.8;
    margin-bottom: 0.3rem;
    text-align: left;
    line-height: 1.4;
    font-size: 0.95rem;
}

.service-card li::before {
    content: '•';
    color: var(--atomic-tangerine);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(254, 146, 78, 0.1) 0%, rgba(133, 88, 236, 0.1) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Modern About Text Styling */
.about-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
    position: relative;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(133, 88, 236, 0.15);
    border: 1px solid rgba(133, 88, 236, 0.1);
    backdrop-filter: blur(10px);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-black);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text p {
    text-align: justify;
    text-justify: inter-word;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--medium-slate-blue);
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-slate-blue), var(--cyan-rgb));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder i {
    font-size: 4rem;
    color: white;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(254, 146, 78, 0.08) 0%, rgba(241, 214, 94, 0.05) 100%);
    position: relative;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(254, 146, 78, 0.12);
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--naples-yellow), var(--medium-slate-blue), var(--cyan-rgb));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.15;
    z-index: -1;
}

.process::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 28px;
    z-index: -1;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(133, 88, 236, 0.1) 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(254, 146, 78, 0.15);
    border: 2px solid rgba(254, 146, 78, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(254, 146, 78, 0.25);
    border-color: var(--atomic-tangerine);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(133, 88, 236, 0.15) 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--atomic-tangerine), var(--medium-slate-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 25px rgba(254, 146, 78, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(254, 146, 78, 0.4);
    background: linear-gradient(135deg, var(--medium-slate-blue), var(--cyan-rgb));
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rich-black);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--medium-slate-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step p {
    color: var(--rich-black);
    line-height: 1.6;
    opacity: 0.8;
}

/* Process Section Header Styling */
.process .section-header h2 {
    background: linear-gradient(45deg, var(--atomic-tangerine), var(--medium-slate-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process .section-header p {
    color: var(--rich-black);
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fbbf24;
}

.address-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.address-link:hover {
    color: var(--naples-yellow);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
}

/* Center only the send message button */
.contact-form .btn-primary {
    display: block;
    margin: 1rem auto 0;
}

/* Calendly Modal Styles */
.calendly-modal {
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    height: 700px;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
}

.calendly-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendly-modal .modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.05) 0%, rgba(133, 88, 236, 0.02) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(133, 88, 236, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(241, 214, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(133, 88, 236, 0.1);
    border: 1px solid rgba(133, 88, 236, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.pricing-card.featured {
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.1) 0%, rgba(241, 214, 94, 0.1) 100%);
    border: 2px solid var(--medium-slate-blue);
}

.pricing-card.onetime {
    background: linear-gradient(135deg, rgba(254, 146, 78, 0.1) 0%, rgba(241, 214, 94, 0.1) 100%);
    border: 2px solid var(--atomic-tangerine);
    position: relative;
}

.pricing-card.onetime::before {
    content: 'Special Offer';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--atomic-tangerine), var(--naples-yellow));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}



.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rich-black);
    margin: 0.5rem 0 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--medium-slate-blue);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--rich-black);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.plan-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.pricing-features {
    margin: 1rem 0;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(133, 88, 236, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}



.pricing-features i {
    color: var(--medium-slate-blue);
    font-size: 1.1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-features li:first-child {
    font-weight: 600;
    color: var(--medium-slate-blue);
    background: rgba(133, 88, 236, 0.1);
}

.pricing-footer {
    text-align: center;
    margin-top: auto;
    padding-top: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--medium-slate-blue);
    border: 2px solid var(--medium-slate-blue);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--medium-slate-blue);
    color: white;
}

/* Responsive Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        max-width: 1200px;
    }
    
    /* Typography adjustments for tablets */
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card h3,
    .pricing-card h3 {
        font-size: 1.4rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    
    .nav-menu.show {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 100%;
        height: 3px;
        background: var(--rich-black);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--rich-black);
        text-align: center;
    }
    
    /* Mobile dropdown */
    .nav-menu .has-dropdown .dropdown {
        position: static !important;
        display: none !important;
        background: rgba(68, 97, 171, 0.1) !important;
        border-radius: 10px !important;
        margin: 0.5rem auto !important;
        padding: 1rem 0 !important;
        width: 90% !important;
        text-align: center !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        backdrop-filter: none !important;
        min-width: auto !important;
    }
    
    .nav-menu .has-dropdown .dropdown.active {
        display: block !important;
    }
    
    .nav-menu .has-dropdown .dropdown li {
        text-align: center !important;
        margin: 0 !important;
        position: static !important;
    }
    
    .nav-menu .has-dropdown .dropdown li::before {
        display: none !important;
    }
    
    .nav-menu .has-dropdown .dropdown li a {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        color: #000000 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        width: fit-content !important;
        background: none !important;
        border-radius: 0 !important;
        transition: none !important;
    }
    
    .nav-menu .has-dropdown .dropdown li a i {
        margin-right: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 2rem;
        margin: 0;
    }
    
    .pricing-card.featured {
        transform: none;
        z-index: 1;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: #3b82f6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--medium-slate-blue);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-visual {
        margin-top: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step,
.stat {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
} 

/* Make service cards clickable */
.service-card {
    cursor: pointer;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 14, 30, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border: 2px solid var(--medium-slate-blue);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--atomic-tangerine);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 146, 78, 0.3);
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 35px rgba(254, 146, 78, 0.4);
    background: var(--medium-slate-blue);
}

.modal-content h2, .modal-content h3 {
    color: var(--medium-slate-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modal-content ul, .modal-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.modal-content li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.modal-content li::before {
    content: '✦';
    position: absolute;
    left: -1.2rem;
    color: var(--medium-slate-blue);
    font-weight: bold;
}

.modal-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
    color: var(--rich-black);
    opacity: 0.9;
}

.modal-content ul li {
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-content::-webkit-scrollbar-track {
    display: none;
}

.modal-content::-webkit-scrollbar-thumb {
    display: none;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    display: none;
}

/* Service Cards Text Alignment */
.service-card h3 {
    text-align: center;
}

.service-card p {
    text-align: center;
}

.service-card ul {
    text-align: left;
}

.service-card li {
    text-align: left;
}

/* Modal Content Text Justification */
.modal-content p {
    text-align: justify;
    text-justify: inter-word;
}

.modal-content ul li {
    text-align: justify;
    text-justify: inter-word;
} 

/* Modern About Section Styling */
.about-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.about-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.about-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.about-content-wrapper {
    position: relative;
}

.about-preview {
    margin-bottom: 2rem;
}

.about-expanded {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.about-expanded.show {
    opacity: 1;
    transform: translateY(0);
}

.show-more-btn {
    background: linear-gradient(135deg, var(--medium-slate-blue), var(--cyan-rgb));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(133, 88, 236, 0.3);
    margin: 0 auto;
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(133, 88, 236, 0.4);
}

.show-more-btn.expanded {
    background: linear-gradient(135deg, var(--atomic-tangerine), var(--naples-yellow));
}

.btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
} 

/* Logo Image Styling */
.logo-img {
    width: 37.5px;
    height: 37.5px;
    object-fit: contain;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.nav-logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
} 

/* Smooth Scrolling and Page Flow */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--rich-black);
    margin: 0;
    padding: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(133, 88, 236, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(254, 146, 78, 0.08) 2px, transparent 2px),
        linear-gradient(135deg, rgba(133, 88, 236, 0.15) 0%, rgba(133, 88, 236, 0.08) 100%);
    background-size: 50px 50px, 60px 60px, 100% 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container improvements for better flow */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Improved section transitions */
.services, .about, .process, .contact {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6rem 0;
    overflow: hidden;
}

/* Fix for potential gaps between sections */
.services {
    margin-top: 0;
    margin-bottom: 0;
}

.about {
    margin-top: 0;
    margin-bottom: 0;
}

.process {
    margin-top: 0;
    margin-bottom: 0;
}

.contact {
    margin-top: 0;
    margin-bottom: 0;
}

/* Improved navbar for better flow */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(133, 88, 236, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(133, 88, 236, 0.1);
}

/* Hero section improvements */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: 
        linear-gradient(rgba(2, 14, 30, 0.5), rgba(2, 14, 30, 0.5)),
        url('./assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

/* Improved animations for smoother flow */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.step {
    animation: fadeInUp 0.6s ease-out;
    will-change: transform;
}

/* Smooth transitions for all interactive elements */
.service-card,
.step,
.btn,
.nav-menu a,
.social-links a,
.modal-close,
.show-more-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, box-shadow;
}

/* Improved scroll performance */
.service-card:hover,
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(133, 88, 236, 0.15);
}

/* Fix for any potential layout shifts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow-x: auto;
    padding: 0;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
    margin: 0;
}

/* Improved footer positioning */
.footer {
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Better responsive behavior */
@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1.5rem;
        padding: 0 1rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .process-steps::-webkit-scrollbar {
        display: none;
    }
    
    .modal-content {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .modal-content::-webkit-scrollbar {
        display: none;
    }
    
    .modal-content::-webkit-scrollbar-track {
        display: none;
    }
    
    .modal-content::-webkit-scrollbar-thumb {
        display: none;
    }
    
    .modal-content::-webkit-scrollbar-thumb:hover {
        display: none;
    }
}

/* Prevent horizontal scroll */
* {
    box-sizing: border-box;
}

/* Improved section spacing */
.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

/* Better modal positioning */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 14, 30, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
} 

/* Design circles patterns and two-tone design */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--rich-black);
    margin: 0;
    padding: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(133, 88, 236, 0.25) 0, transparent 80px),
        radial-gradient(circle at 80% 80%, rgba(254, 146, 78, 0.2) 0, transparent 90px),
        radial-gradient(circle at 40% 60%, rgba(133, 88, 236, 0.18) 0, transparent 70px),
        radial-gradient(circle at 90% 30%, rgba(254, 146, 78, 0.15) 0, transparent 75px),
        radial-gradient(circle at 60% 40%, rgba(175, 160, 142, 0.6) 0, transparent 80px),
        rgba(133, 88, 236, 0.12);
    background-size: 200px 200px, 250px 250px, 150px 150px, 180px 180px, 120px 120px, 100% 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Enhanced modal with simple background */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border: 2px solid var(--medium-slate-blue);
    border-radius: 25px;
    padding: 3rem;
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}


.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--atomic-tangerine);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 146, 78, 0.3);
}

.modal-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 35px rgba(254, 146, 78, 0.4);
    background: var(--medium-slate-blue);
}

.modal-content h2 {
    color: var(--atomic-tangerine);
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(254, 146, 78, 0.2);
}

.modal-content h3 {
    color: var(--medium-slate-blue);
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: left;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--atomic-tangerine);
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--atomic-tangerine);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(254, 146, 78, 0.3);
}

.modal-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--atomic-tangerine);
    border-radius: 1px;
}

/* Enhanced services section with design circles */
.services {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(133, 88, 236, 0.25) 0, transparent 90px),
        radial-gradient(circle at 75% 75%, rgba(254, 146, 78, 0.2) 0, transparent 100px),
        radial-gradient(circle at 50% 50%, rgba(133, 88, 236, 0.18) 0, transparent 60px),
        rgba(133, 88, 236, 0.12);
    background-size: 200px 200px, 250px 250px, 150px 150px, 100% 100%;
    position: relative;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(133, 88, 236, 0.12);
    overflow: hidden;
}

/* Enhanced process section with design circles */
.process {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(254, 146, 78, 0.25) 0, transparent 90px),
        radial-gradient(circle at 70% 70%, rgba(133, 88, 236, 0.2) 0, transparent 100px),
        radial-gradient(circle at 20% 80%, rgba(254, 146, 78, 0.18) 0, transparent 60px),
        rgba(254, 146, 78, 0.12);
    background-size: 200px 200px, 250px 250px, 150px 150px, 100% 100%;
    position: relative;
    margin: 2rem 0;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(254, 146, 78, 0.12);
    overflow: hidden;
} 

/* Enhanced modal headers with better styling */
.modal-content h2 {
    color: var(--atomic-tangerine);
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(254, 146, 78, 0.2);
}

.modal-content h3 {
    color: var(--medium-slate-blue);
    margin: 2rem 0 1rem 0;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: left;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--atomic-tangerine);
}

.modal-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--atomic-tangerine);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(254, 146, 78, 0.3);
}

.modal-content h3::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--atomic-tangerine);
    border-radius: 1px;
}

/* Enhanced polka dot patterns with animation */
@keyframes polkaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(133, 88, 236, 0.1) 4px, transparent 4px),
        radial-gradient(circle at 80% 80%, rgba(254, 146, 78, 0.08) 4px, transparent 4px);
    background-size: 80px 80px, 90px 90px;
    animation: polkaFloat 6s ease-in-out infinite;
    pointer-events: none;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(254, 146, 78, 0.1) 4px, transparent 4px),
        radial-gradient(circle at 75% 75%, rgba(133, 88, 236, 0.08) 4px, transparent 4px);
    background-size: 80px 80px, 90px 90px;
    animation: polkaFloat 6s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Enhanced modal content with better spacing */
.modal-content p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 10px;
    border-left: 4px solid var(--medium-slate-blue);
}

.modal-content strong {
    color: var(--medium-slate-blue);
    font-weight: 700;
}

.modal-content em {
    color: var(--medium-slate-blue);
    font-style: normal;
    font-weight: 600;
}

/* Training Page Styles */
.training-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(rgba(2, 14, 30, 0.5), rgba(2, 14, 30, 0.5)),
        url('./assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.training-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.training-overview {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(133, 88, 236, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--medium-slate-blue), var(--naples-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--rich-black);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.training-programs {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.05) 0%, rgba(133, 88, 236, 0.02) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(133, 88, 236, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Removed hover effects for training cards */

/* Ensure consistent button alignment in program cards */
.program-card .btn {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
}

.program-card.featured {
    border: 2px solid var(--medium-slate-blue);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--medium-slate-blue), var(--naples-yellow));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.program-header {
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.1) 0%, rgba(241, 214, 94, 0.1) 100%);
    padding: 2rem;
    text-align: center;
}

.program-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--medium-slate-blue);
}

.program-header h3 {
    font-size: 1.5rem;
    color: var(--rich-black);
    margin-bottom: 0.5rem;
}

.program-duration {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-content {
    padding: 2rem;
}

.program-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--rich-black);
    font-size: 0.95rem;
}

.program-features i {
    color: var(--medium-slate-blue);
    font-size: 1rem;
}

.program-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 1.5rem;
    padding: 1rem;
    background: rgba(133, 88, 236, 0.05);
    border-radius: 10px;
}

.price-label {
    color: #6b7280;
    font-size: 0.95rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--medium-slate-blue);
}

.program-content .btn {
    width: 100%;
}

.custom-training {
    padding: 5rem 0;
    background: white;
}

.custom-training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.custom-training-visual {
    position: relative;
}

.custom-training-text h2 {
    font-size: 2.5rem;
    color: var(--rich-black);
    margin-bottom: 1.5rem;
}

.custom-training-text p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.custom-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.custom-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--rich-black);
    font-size: 1.1rem;
}

.custom-features i {
    color: var(--medium-slate-blue);
    font-size: 1.2rem;
}

.custom-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
}

.custom-icon-item {
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.1) 0%, rgba(241, 214, 94, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(133, 88, 236, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.custom-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(133, 88, 236, 0.15);
}

.custom-icon-item.clickable {
    cursor: pointer;
    overflow: hidden;
}

.custom-icon-item.clickable .click-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(68, 97, 171, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 0 15px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.custom-icon-item.clickable:hover {
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.15) 0%, rgba(241, 214, 94, 0.15) 100%);
    border-color: var(--medium-slate-blue);
}

.custom-icon-item.clickable:hover .click-info {
    transform: translateY(0);
}

.custom-icon-item i {
    font-size: 3rem;
    color: var(--medium-slate-blue);
    margin-bottom: 1rem;
    display: block;
}

.custom-icon-item > span:not(.click-info) {
    color: var(--rich-black);
    font-weight: 600;
    font-size: 1.1rem;
}

.training-testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(133, 88, 236, 0.05) 0%, rgba(133, 88, 236, 0.02) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(133, 88, 236, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(133, 88, 236, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--naples-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #6b7280;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(133, 88, 236, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--rich-black);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Training Styles */
@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-training-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .training-hero {
        padding: 6rem 0 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile typography optimization */
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .pricing-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: center;
    }
    
    /* Button text sizing */
    .btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile spacing improvements */
    .hero {
        padding: 2rem 0;
        min-height: 80vh;
    }
    
    .hero-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-grid {
        margin: 2rem auto;
    }
    
    .process-steps {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .about-content {
        padding: 2rem 1rem;
        text-align: left;
    }
    
    .contact-info {
        padding: 2rem 1rem;
        text-align: left;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        text-align: center;
        gap: 1.5rem;
    }
    
    .custom-icon-grid {
        grid-template-columns: 1fr;
        padding-bottom: 3rem;
    }
    
    .custom-training-text h2 {
        font-size: 2rem;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .pricing-card,
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .nav-toggle {
        width: 25px;
        height: 20px;
    }
    
    .nav-toggle span {
        height: 2px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 2rem 0.75rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-container {
        padding: 1.5rem 0.75rem;
    }
} 