/* =================================================================== */
/* 1. ROOT VARIABLES & GLOBAL STYLES
    /* =================================================================== */
:root {
    --brand-orange: #FF6600;
    --brand-orange-dark: #E65A00;
    --dark-blue: #0a192f;
    --light-blue: #112240;
    --lightest-blue: #1e2a47;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --white: #e6f1ff;
    --green-accent: #64ffda;
}
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-blue);
    color: var(--slate);
    line-height: 1.6;
}

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

/* =================================================================== */
/* 2. PRE-LOADER
    /* =================================================================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.75s, visibility 0.75s;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader img {
    height: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite ease-in-out;
}

.spinner {
    border: 4px solid var(--light-blue);
    border-top: 4px solid var(--brand-orange);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* =================================================================== */
/* 3. HEADER & NAVIGATION
    /* =================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-slate);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--brand-orange);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.nav-right-side {
    display: flex;
    align-items: center;
}

.currency-switcher {
    margin-left: 30px;
    position: relative;
}

.currency-switcher select {
    background-color: var(--light-blue);
    color: var(--white);
    border: 1px solid var(--slate);
    border-radius: 5px;
    padding: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.nav-buttons-desktop {
    margin-left: 15px;
}

.nav-buttons-desktop a,
.nav-buttons-desktop button {
    margin-left: 15px;
}

.login-btn {
    background-color: transparent;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
}

.login-btn:hover {
    background-color: var(--brand-orange);
    color: var(--white);
}

.register-btn {
    background-color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    color: var(--white);
}

.register-btn:hover {
    background-color: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.nav-buttons-mobile {
    display: none;
}

/* =================================================================== */
/* 4. HERO SECTION
    /* =================================================================== */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    animation: kenburns 20s ease-in-out infinite;
    transition: background-image 1s ease-in-out;
}

@keyframes kenburns {
    0% {
        transform: scale(1.1) translateX(-5%) translateY(2%);
    }

    50% {
        transform: scale(1) translateX(0) translateY(0);
    }

    100% {
        transform: scale(1.1) translateX(-5%) translateY(2%);
    }
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 10px;
}

.dynamic-text-wrapper {
    display: inline-block;
    color: var(--brand-orange);
    transition: opacity 0.5s ease-in-out;
    min-width: 300px;
    text-align: center;
}

.dynamic-text-wrapper.fade-out {
    opacity: 0;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-slate);
    margin-bottom: 40px;
    max-width: 600px;
}

.domain-search-container {
    background: rgba(30, 42, 71, 0.5);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
    max-width: 700px;
}

.domain-search-form {
    display: flex;
    gap: 10px;
}

.domain-search-form input {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid var(--slate);
    border-radius: 5px;
    background: var(--light-blue);
    color: var(--white);
    font-size: 1rem;
}

.domain-search-form button {
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn {
    background-color: var(--brand-orange);
    color: var(--white);
}

.search-btn:hover {
    background-color: var(--brand-orange-dark);
}

.transfer-btn {
    background-color: var(--slate);
    color: var(--dark-blue);
}

.transfer-btn:hover {
    background-color: var(--light-slate);
}

/* =================================================================== */
/* 5. GENERAL & REUSABLE COMPONENTS
    /* =================================================================== */
.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-orange);
    border-radius: 2px;
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    border: 2px solid var(--brand-orange);
}

.cta-button:hover {
    background-color: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.plan-card {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.plan-card.popular {
    border-color: var(--brand-orange);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 25px;
}

.plan-price .old-price {
    text-decoration: line-through;
    color: var(--slate);
    font-size: 1rem;
}

.plan-price .current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.plan-price .billing-cycle {
    font-size: 1rem;
    color: var(--light-slate);
}

.plan-price .savings {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--green-accent);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green-accent);
    position: absolute;
    left: 0;
}

/* =================================================================== */
/* 6. SPECIFIC SECTION STYLES
    /* =================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-blue);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left-color: var(--brand-orange);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

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

.domain-pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
}

.domain-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.domain-pricing-table th,
.domain-pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--dark-blue);
}

.domain-pricing-table th {
    color: var(--white);
    font-weight: 600;
}

.domain-pricing-table td:last-child {
    font-weight: bold;
    color: var(--green-accent);
    text-align: right;
}

.highlight-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.highlight-section:nth-child(even) {
    flex-direction: row-reverse;
}

.highlight-image,
.highlight-content {
    flex: 1;
}

.highlight-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.highlight-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.highlight-content .highlight-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--green-accent);
    margin-bottom: 20px;
}

.highlight-content p {
    margin-bottom: 20px;
}

.highlight-content ul {
    list-style: none;
    padding-left: 0;
}

.highlight-content ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.highlight-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-orange);
    position: absolute;
    left: 0;
}

#portfolio {
    background-color: var(--light-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--dark-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-info h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.portfolio-info p {
    flex-grow: 1;
}

.portfolio-info .cta-button {
    margin-top: 20px;
    align-self: flex-start;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--brand-orange);
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--white);
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    color: var(--slate);
    font-size: 0.9em;
}

#about {
    background: url() no-repeat center center/cover;
    background-attachment: fixed;
}

.about-content {
    background-color: rgba(10, 25, 47, 0.9);
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

#contact {
    background-color: var(--lightest-blue);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-blue);
    border: 1px solid var(--slate);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: center;
}


/* Domain Pricing Section */
.domain-pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
}

.domain-pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.domain-pricing-table th,
.domain-pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--dark-blue);
}

.domain-pricing-table th {
    color: var(--white);
    font-weight: 600;
}

.domain-pricing-table td:last-child {
    font-weight: bold;
    color: var(--green-accent);
    text-align: right;
}

/* Domain Pricing Section */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.domain-item {
    background-color: var(--lightest-blue);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.domain-item:hover {
    background-color: var(--brand-orange);
    transform: translateY(-5px);
}

/* =================================================================== */
/* 7. FLOATING BUTTONS & FOOTER
    /* =================================================================== */
footer {
    background-color: #061221;
    color: var(--slate);
    text-align: center;
    padding: 40px 0 20px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--slate);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--brand-orange);
}

.footer-text {
    font-size: 0.9rem;
}

.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.cart-fab {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background-color: var(--brand-orange);
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.cart-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-orange);
}

/* =================================================================== */
/* 8. MODALS & FORMS
    /* =================================================================== */
.modal-content {
    background-color: var(--light-blue);
    color: var(--white);
}

.modal-header {
    border-bottom: 1px solid var(--slate);
}

.modal-footer {
    border-top: 1px solid var(--slate);
}

.form-control,
.form-select {
    background-color: var(--dark-blue);
    border-color: var(--slate);
    color: var(--white);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--dark-blue);
    border-color: var(--brand-orange);
    color: var(--white);
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.input-group-text {
    background-color: var(--dark-blue);
    border-color: var(--slate);
    color: var(--light-slate);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a8b2d1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

#regCountry option {
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 40px;
}

.otp-input {
    width: 45px;
    height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
}

/* =================================================================== */
/* 9. RESPONSIVE STYLES
    /* =================================================================== */
@media (max-width: 992px) {
    .nav-right-side {
        display: none;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        background-color: var(--light-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1001;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu-wrapper.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        border-top: 1px solid var(--slate);
        margin-top: 20px;
        padding-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    nav ul li a {
        padding: 10px;
        display: block;
        width: 100%;
        border-radius: 5px;
    }

    .nav-buttons-mobile {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        width: 100%;
    }

    .nav-buttons-mobile a {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .currency-switcher {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .currency-switcher select {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .highlight-section,
    .highlight-section:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
}

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

    .hero-content p {
        font-size: 1rem;
    }

    .domain-search-form {
        flex-direction: column;
    }
}

/* =================================================================== */
/* Growth Packages Section Styles (Corrected for Dark Theme) */
/* =================================================================== */
#packages {
    background-color: var(--dark-blue); /* Match the main background */
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background-color: var(--light-blue); /* Match other cards */
    border: 1px solid transparent; /* Change border for dark theme */
    border-radius: 10px; /* Match other cards */
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.package-card.popular {
    position: relative;
    border-color: var(--brand-orange); /* Use brand orange for highlight */
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.2);
}

.package-card.popular:hover {
     transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange); /* Use brand orange */
    color: var(--white); /* Use light text */
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-header {
    text-align: center;
    border-bottom: 1px solid var(--lightest-blue); /* Use a darker border */
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 1.6rem;
    color: var(--white); /* Use light text */
    margin: 0;
}

.package-target {
    font-size: 0.95rem;
    color: var(--light-slate); /* Use light text */
    margin-top: 5px;
}

.package-price {
    text-align: center;
    margin-bottom: 25px;
}

.package-price .price-main {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white); /* Use light text */
    line-height: 1;
}

.package-price .price-currency {
    font-size: 1.2rem;
    color: var(--light-slate); /* Use light text */
    margin-left: 5px;
}

.package-price .price-cycle {
    display: block;
    font-size: 0.9rem;
    color: var(--light-slate); /* Use light text */
    margin-top: 5px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.package-features li {
    font-size: 1rem;
    color: var(--light-slate); /* Use light text */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--brand-orange); /* Use brand orange for icons */
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.package-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    /* CTA button will inherit global styles which are already correct */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }
    .package-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
     .package-card.popular {
        transform: scale(1);
    }
}

/* =================================================================== */
/* Refined Hosting Plan Card Styles */
/* =================================================================== */
.plan-card .currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-slate);
}

.plan-features-highlight {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex-grow: 1; /* Pushes toggle button down */
}

.plan-features-highlight li {
    font-size: 1rem;
    color: var(--light-slate);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features-highlight li i {
    color: var(--brand-orange);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.full-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.plan-card.features-expanded .full-features {
    max-height: 300px; /* Adjust if more features are added */
}

.toggle-features-btn {
    background: none;
    border: 1px solid var(--slate);
    color: var(--light-slate);
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.toggle-features-btn:hover {
    background-color: var(--lightest-blue);
    color: var(--white);
    border-color: var(--light-slate);
}

.toggle-features-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.plan-card.features-expanded .toggle-features-btn i {
    transform: rotate(180deg);
}

/* Ensure CTA button is last */
.plan-card {
    display: flex;
    flex-direction: column;
}

.plan-card .cta-button {
    margin-top: auto; /* Pushes button to the very bottom */
}

/* =================================================================== */
/* 6.1. REDESIGNED PORTFOLIO SECTION
/* =================================================================== */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.portfolio-tab-btn {
    background-color: transparent;
    border: 2px solid var(--light-blue);
    color: var(--slate);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-tab-btn:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

.portfolio-tab-btn.active {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.portfolio-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.portfolio-panel.active {
    display: block;
}

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

.portfolio-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item-new {
    background: linear-gradient(145deg, var(--light-blue), rgba(30, 42, 71, 0.5));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(136, 146, 176, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-image-wrapper {
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(136, 146, 176, 0.2);
}

.portfolio-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item-new:hover .portfolio-image-wrapper img {
    transform: scale(1.05);
}

.portfolio-info-new {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-category {
    display: inline-block;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--green-accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.portfolio-info-new h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.portfolio-info-new p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1; /* Pushes button to the bottom */
}

.portfolio-info-new .cta-button {
    margin-top: 20px;
    align-self: flex-start; /* Aligns button to the left */
}

.portfolio-info-new .cta-button i {
    margin-left: 8px;
    font-size: 0.9em;
}

.placeholder-content {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--light-blue);
    border-radius: 10px;
    border: 2px dashed var(--slate);
}

.placeholder-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}
