                /* ====== FONT & VARIABLES ====== */
                
                @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@600;700;800&display=swap');
                 :root {
                    /* Colors */
                    --primary: #1FC2C2;
                    --accent: #1D9BF0;
                    --dark: #222;
                    --light: #f8f9fa;
                    --text: #333;
                    --white: #fff;
                    --radius: 12px;
                    --shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
                    --line-height-body: 1.7;
                }
                /* ====== BASE STYLES ====== */
                
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
                
                body {
                    font-family: 'Inter', sans-serif;
                    background: var(--light);
                    color: var(--text);
                    line-height: var(--line-height-body);
                    font-weight: 400;
                }
                /* Headings */
                
                h1,
                h2,
                h3 {
                    font-family: 'Montserrat', sans-serif;
                    margin-bottom: 0.75rem;
                    color: var(--accent);
                    letter-spacing: 0.5px;
                }
                
                h1 {
                    font-size: 3.5rem;
                    font-weight: 800;
                }
                
                h2 {
                    font-size: 2.25rem;
                    font-weight: 700;
                }
                
                h3 {
                    font-size: 1.5rem;
                    font-weight: 600;
                }
                /* Links & Buttons */
                
                a {
                    text-decoration: none;
                    color: var(--accent);
                }
                
                .btn {
                    display: inline-block;
                    padding: 0.8rem 1.8rem;
                    border-radius: var(--radius);
                    font-weight: 600;
                    transition: all 0.3s ease;
                    text-align: center;
                    text-transform: uppercase;
                    border: 2px solid transparent;
                    font-family: 'Montserrat', sans-serif;
                    letter-spacing: 0.5px;
                }
                
                .btn {
                    background: var(--primary);
                    color: white;
                    border-color: var(--primary);
                }
                
                .btn:hover {
                    background: var(--accent);
                    border-color: var(--accent);
                }
                
                .btn.secondary {
                    background: transparent;
                    color: var(--accent);
                    border-color: var(--accent);
                }
                
                .btn.secondary:hover {
                    background: var(--accent);
                    color: white;
                }
                /* Containers */
                
                .container {
                    width: 90%;
                    max-width: 1100px;
                    margin: auto;
                    padding: 0;
                    text-align: center;
                }
                /* ====== NAVBAR ====== */
                
                .navbar {
                    background: linear-gradient(130deg, rgba(12, 141, 141, 2.6), rgba(18, 40, 54, 0.9));
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    color: white;
                    padding: 0.75rem 0;
                    /* consistent vertical padding */
                    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
                    position: sticky;
                    top: 0;
                    z-index: 1000;
                }
                
                .navbar .container {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 0 1.5rem;
                    /* fixed typo (was 1.rem) */
                    max-width: 1200px;
                    margin: auto;
                }
                /* Logo */
                
                .navbar .logo img {
                    height: 90px;
                    /* reduced to a cleaner navbar height */
                    display: block;
                }
                /* Nav links */
                
                .nav-links {
                    display: flex;
                    align-items: center;
                    gap: 2rem;
                    /* consistent spacing between links */
                }
                
                .nav-links a {
                    color: #f1f1f1;
                    font-weight: 500;
                    font-size: 1.1rem;
                    padding: 0.4rem 0;
                    /* vertical breathing room */
                    transition: all 0.3s ease;
                    border-bottom: 2px solid transparent;
                }
                
                .nav-links a:hover,
                .nav-links a.active {
                    color: var(--primary);
                    border-bottom: 2px solid var(--primary);
                    text-shadow: 0 0 8px rgba(31, 194, 194, 0.6);
                }
                /* CTA in nav */
                
                .nav-links .nav-cta {
                    background: var(--primary);
                    color: #fff !important;
                    font-weight: 600;
                    padding: 0.5rem 1.3rem;
                    border-radius: 30px;
                    border: 2px solid var(--primary);
                    transition: all 0.3s ease;
                    margin-left: 1rem;
                    /* separation from normal links */
                }
                
                .nav-links .nav-cta:hover {
                    background: transparent;
                    color: var(--primary) !important;
                    text-shadow: 0 0 10px rgba(31, 194, 194, 0.7);
                }
                /* Mobile menu toggle */
                
                .menu-toggle {
                    display: none;
                    font-size: 1.6rem;
                    background: none;
                    border: none;
                    color: white;
                    cursor: pointer;
                }
                
                @media (max-width: 768px) {
                    .nav-links {
                        position: absolute;
                        top: 70px;
                        /* directly below navbar */
                        left: 0;
                        width: 100%;
                        /* full width */
                        background: rgba(18, 40, 54, 0.95);
                        backdrop-filter: blur(12px);
                        flex-direction: column;
                        align-items: center;
                        /* center links */
                        padding: 1rem 0;
                        border-radius: 0 0 12px 12px;
                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
                        display: none;
                        /* hidden by default */
                        z-index: 1000;
                    }
                    .nav-links a {
                        display: block;
                        width: 100%;
                        text-align: center;
                        /* center text */
                        padding: 1rem 0;
                        font-size: 1.2rem;
                        color: white;
                    }
                    .menu-toggle {
                        display: block;
                        font-size: 1.8rem;
                        background: none;
                        border: none;
                        color: white;
                        cursor: pointer;
                        margin-left: auto;
                    }
                    /* Show menu when active */
                    .nav-links.active {
                        display: flex;
                        animation: slideDown 0.3s ease forwards;
                    }
                }
                /* Slide-down animation */
                
                @keyframes slideDown {
                    from {
                        opacity: 0;
                        transform: translateY(-10px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                /* ====== HERO CLEAN VERSION ====== */
                
                .hero {
                    position: relative;
                    top: 0;
                    width: 100%;
                    min-height: 80vh;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 6rem 1rem;
                    text-align: center;
                    /* Gradient background */
                    background: linear-gradient(130deg, #0c8d8d, #122836) !important;
                }
                /* Glassmorphic container */
                
                .hero .container {
                    position: relative;
                    z-index: 1;
                    max-width: 1100px;
                    padding: 1.5rem 2rem;
                    border-radius: 20px;
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
                    color: #fff;
                }
                /* Hero background icons wrapper */
                
                .hero-icons {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 0;
                    overflow: hidden;
                }
                /* Icons */
                
                .hero-icons i {
                    position: absolute;
                    font-size: 3rem;
                    color: rgba(255, 255, 255, 0.15);
                    animation: float 5s infinite ease-in-out;
                }
                /* Floating animation */
                
                @keyframes float {
                    0% {
                        transform: translateY(0) translateX(0) rotate(0deg);
                    }
                    50% {
                        transform: translateY(-10px) translateX(15px) rotate(10deg);
                    }
                    100% {
                        transform: translateY(0) translateX(0) rotate(0deg);
                    }
                }
                /* SVG network lines */
                
                .network-lines {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    left: 0;
                }
                
                .network-lines line {
                    stroke: rgba(255, 255, 255, 0.15);
                    stroke-width: 2;
                    stroke-dasharray: 6;
                    animation: dashmove 10s linear infinite;
                }
                /* Animate dashes moving */
                
                @keyframes dashmove {
                    to {
                        stroke-dashoffset: -900;
                    }
                }
                /* Hero heading */
                
                .hero h1 {
                    font-size: 3.5rem;
                    font-weight: 800;
                    margin-bottom: 1rem;
                    color: #fff;
                    letter-spacing: 1px;
                    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
                }
                /* Hero paragraph */
                
                .hero p {
                    font-size: 1.25rem;
                    margin-bottom: 2.5rem;
                    max-width: 700px;
                    margin-left: auto;
                    margin-right: auto;
                    color: #f1f1f1;
                }
                /* CTA buttons */
                
                .cta-buttons {
                    display: flex;
                    justify-content: center;
                    gap: 1.5rem;
                }
                
                .cta-buttons .btn {
                    font-size: 1rem;
                    font-weight: 600;
                    padding: 0.9rem 2rem;
                    border-radius: 50px;
                    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
                }
                
                @media (max-width: 480px) {
                    .hero h1 {
                        font-size: 2rem;
                    }
                    .hero p {
                        font-size: 1rem;
                    }
                }
                /* ====== Hosting Plans ====== */
                
                .hosting-preview {
                    text-align: center;
                    padding: 5rem 1rem;
                }
                
                .plans-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
                    margin-top: 3rem;
                }
                
                .plan-card {
                    background: rgba(255, 255, 255, 0.7);
                    border-radius: var(--radius);
                    box-shadow: var(--shadow);
                    padding: 2rem 1.5rem;
                    backdrop-filter: blur(8px);
                    -webkit-backdrop-filter: blur(8px);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                }
                
                .plan-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
                }
                
                .plan-card h3 {
                    font-size: 1.5rem;
                    margin-bottom: 1rem;
                    color: var(--accent);
                }
                
                .plan-card .price {
                    font-size: 2rem;
                    font-weight: 700;
                    margin-bottom: 1.5rem;
                    color: var(--dark);
                }
                
                .plan-card .price span {
                    font-size: 1rem;
                    font-weight: 400;
                    color: var(--text);
                }
                
                .plan-card ul {
                    list-style: none;
                    padding: 0;
                    margin-bottom: 2rem;
                    text-align: left;
                }
                
                .plan-card ul li {
                    margin-bottom: 0.6rem;
                    color: var(--text);
                }
                /* Highlighted (most popular) plan */
                
                .plan-card.featured {
                    background: linear-gradient(135deg, #1FC2C2, #1D9BF0);
                    color: #fff;
                    transform: scale(1.05);
                }
                
                .plan-card.featured h3,
                .plan-card.featured .price,
                .plan-card.featured ul li {
                    color: #fff;
                }
                
                .billing-toggle {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 12px;
                    margin: 20px 0;
                }
                
                .toggle-label {
                    font-size: 1rem;
                    font-weight: 500;
                    color: #ccc;
                    transition: color 0.3s ease;
                }
                
                .toggle-label.active {
                    color: var(--primary);
                    font-weight: 600;
                }
                /* Switch styling */
                
                .switch {
                    position: relative;
                    display: inline-block;
                    width: 50px;
                    height: 24px;
                }
                
                .switch input {
                    opacity: 0;
                    width: 0;
                    height: 0;
                }
                
                .slider {
                    position: absolute;
                    cursor: pointer;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background-color: #aaa;
                    transition: 0.4s;
                    border-radius: 24px;
                }
                
                .slider:before {
                    position: absolute;
                    content: "";
                    height: 18px;
                    width: 18px;
                    left: 3px;
                    bottom: 3px;
                    background-color: white;
                    transition: 0.4s;
                    border-radius: 50%;
                }
                
                input:checked+.slider {
                    background-color: var(--primary);
                }
                
                input:checked+.slider:before {
                    transform: translateX(26px);
                }
                /* ====== SECTION STYLES ====== */
                
                section {
                    padding: 5rem 1rem;
                    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                }
                
                section:nth-child(even) {
                    background: var(--white);
                }
                
                section:nth-child(odd) {
                    background: var(--light);
                }
                
                section h2 {
                    font-size: 2.25rem;
                    margin-bottom: 1rem;
                    color: var(--accent);
                }
                
                section p {
                    max-width: 700px;
                    margin: 0.5rem auto 2rem;
                    font-weight: 300;
                }
                /* ===== DOMAIN SEARCH SECTION (Hero Style) ===== */
                
                .domain-search {
                    position: relative;
                    width: 100%;
                    padding: 6rem 1rem;
                    text-align: center;
                    background: linear-gradient(130deg, #0c8d8d, #173447) !important;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                /* Glassmorphic container like hero */
                
                .domain-container {
                    position: relative;
                    z-index: 1;
                    max-width: 1100px;
                    padding: 2.5rem 2rem;
                    border-radius: 20px;
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
                    color: #fff;
                }
                /* Headings and text */
                
                .domain-container h2 {
                    font-size: 2.2rem;
                    font-weight: 700;
                    margin-bottom: 1rem;
                    color: #fff;
                    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
                }
                
                .domain-container p {
                    font-size: 1.1rem;
                    margin-bottom: 2rem;
                    color: #e6e6e6;
                }
                /* Form Styling */
                
                .domain-form {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 12px;
                    max-width: 600px;
                    margin: 0 auto 2.5rem auto;
                }
                
                .domain-form input[type="text"] {
                    flex: 1;
                    padding: 0.9rem 1.2rem;
                    border-radius: 50px;
                    border: none;
                    outline: none;
                    font-size: 1rem;
                    background: rgba(255, 255, 255, 0.85);
                    color: #333;
                    transition: all 0.3s ease;
                }
                
                .domain-form input[type="text"]::placeholder {
                    color: #555;
                }
                
                .domain-form input[type="text"]:focus {
                    background: #fff;
                    box-shadow: 0 0 0 3px rgba(12, 141, 141, 0.3);
                }
                /* Search button */
                
                .domain-form .btn.primary {
                    background: var(--primary);
                    color: #fff;
                    padding: 0.9rem 2rem;
                    border-radius: 50px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: background 0.3s ease;
                    border: none;
                }
                
                .domain-form .btn.primary:hover {
                    background: var(--dark);
                }
                /* TLD Cards */
                
                .tld-grid {
                    display: flex;
                    justify-content: center;
                    gap: 20px;
                    margin-top: 2rem;
                    flex-wrap: wrap;
                }
                
                .tld-card {
                    background: rgba(255, 255, 255, 0.15);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    border-radius: 50px;
                    padding: 0.8rem 2rem;
                    font-size: 1.25rem;
                    font-weight: 700;
                    color: #fff;
                    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
                    transition: all 0.3s ease;
                    backdrop-filter: blur(8px);
                }
                
                .tld-card:hover {
                    transform: translateY(-5px);
                    background: rgba(255, 255, 255, 0.3);
                    color: var(--primary);
                }
                
                @media (max-width: 600px) {
                    .domain-form {
                        flex-direction: column;
                        align-items: stretch;
                        /* full width */
                    }
                    .domain-form input,
                    .domain-form button {
                        width: 100%;
                    }
                }
                
                @media (max-width: 768px) {
                    .price-table {
                        /* Set a fixed minimum width so it triggers horizontal scroll */
                        min-width: 800px;
                        font-size: 0.9rem;
                    }
                }
                /* For screens where the scrollable nature becomes necessary */
                
                @media (max-width: 1024px) {
                    /* Ensures the feature column (first column) remains sticky on the left */
                    .price-table th:first-child,
                    .price-table td:first-child {
                        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
                    }
                }
                /* --- Web Design Preview --- */
                
                .design-feature-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 30px;
                    margin-top: 3rem;
                    margin-bottom: 4rem;
                    color: #f7f5f5;
                }
                
                .design-card {
                    background: rgba(255, 255, 255, 0.7);
                    backdrop-filter: blur(8px);
                    border: 1px solid rgba(255, 255, 255, 0.3);
                    padding: 30px 20px;
                    border-radius: var(--radius);
                    box-shadow: var(--shadow);
                    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
                }
                
                .design-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
                    background: rgba(255, 255, 255, 0.9);
                }
                
                .icon-large {
                    font-size: 3rem;
                    display: block;
                    margin-bottom: 1rem;
                    color: var(--primary);
                }
                
                .heading-design-card {
                    font-size: 1.25rem;
                    color: var(--dark);
                    margin-top: 0;
                }
                
                .design-description-box {
                    background: var(--accent);
                    color: white;
                    padding: 2.5rem 2rem;
                    border-radius: var(--radius);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;
                    box-shadow: var(--shadow);
                }
                
                .description-card-content {
                    max-width: 800px;
                }
                
                .design-description-box h3 {
                    color: rgb(255, 255, 255) !important;
                    margin-bottom: 0.5rem;
                }
                
                .design-description-box .btn.secondary {
                    background: var(--primary);
                    color: white;
                    border-color: var(--primary);
                }
                
                .design-description-box .btn.secondary:hover {
                    background: var(--dark);
                    border-color: var(--dark);
                }
                
                .large-btn {
                    padding: 1rem 2.5rem;
                }
                /* ===== CONTAINER ===== */
                
                .quote-container {
                    background: rgba(5, 74, 77, 0.979);
                    border-radius: 20px;
                    backdrop-filter: blur(14px);
                    -webkit-backdrop-filter: blur(14px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
                    width: 90%;
                    max-width: 850px;
                    padding: 2.5rem;
                    animation: fadeIn 0.8s ease-in-out;
                }
                /*
 * NEW CSS STYLES FOR CIRCULAR LOGO WRAPPER IN QUOTATION PDF
 */
                
                .logo-wrapper {
                    /* Fixed size for the circular container */
                    width: 150px;
                    height: 150px;
                    /* Apply your Gradient Background */
                    background: linear-gradient(135deg, #1FC2C2, #1D9BF0);
                    /* Make it a perfect circle */
                    border-radius: 50%;
                    /* Center the wrapper horizontally */
                    margin: 20px auto;
                    /* Enable Flexbox to perfectly center the logo image inside */
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    /* Optional: Add a subtle lift/shadow */
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                }
                
                .quote-logo-img {
                    /* Style the image inside the wrapper */
                    height: 90px;
                    /* Smaller than the wrapper to allow padding/background to show */
                    width: auto;
                    max-width: 80%;
                    /* Ensure it doesn't overflow the wrapper */
                    /* Optional: Invert the image color if the logo is dark, so it pops on the bright background */
                    /* filter: invert(100%); */
                }
                
                @keyframes fadeIn {
                    from {
                        opacity: 0;
                        transform: translateY(15px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
                
                h2 {
                    text-align: center;
                    font-size: 2rem;
                    margin-bottom: 0.5rem;
                    letter-spacing: 1px;
                }
                
                p {
                    text-align: center;
                    color: #030303;
                    margin-bottom: 2rem;
                }
                
                .quote-p {
                    color: #d8efff;
                }
                /* ===== FORM ===== */
                
                form {
                    display: flex;
                    flex-direction: column;
                    gap: 1.2rem;
                }
                
                label {
                    font-weight: 600;
                    color: #e8e8e8;
                }
                
                input,
                select,
                textarea {
                    width: 100%;
                    padding: 0.85rem;
                    border-radius: 10px;
                    border: none;
                    background: rgba(255, 255, 255, 0.15);
                    color: #fff;
                    font-size: 1rem;
                    outline: none;
                    transition: all 0.3s ease;
                }
                
                select,
                option {
                    background-color: #122836;
                    color: #fff;
                }
                
                input:focus,
                select:focus,
                textarea:focus {
                    background-color: #122836;
                    color: #fff;
                    box-shadow: 0 0 6px rgba(31, 194, 194, 0.5);
                }
                
                 ::placeholder {
                    color: rgba(255, 255, 255, 0.7);
                }
                /* ===== ADD-ONS ===== */
                
                .add-ons label {
                    font-weight: 400;
                    display: block;
                    margin-top: 0.5rem;
                    cursor: pointer;
                }
                /* ===== DEPOSIT NOTE ===== */
                
                .deposit-note {
                    background: rgba(12, 68, 85, 0.822);
                    padding: 1rem;
                    border-radius: 12px;
                    font-size: 0.95rem;
                    color: #d9fafa;
                    border-left: 4px solid #1FC2C2;
                }
                
                .deposit {
                    color: #dfdfdf;
                }
                
                .deposit-note strong {
                    color: #1FC2C2;
                }
                /* ===== SUMMARY BOX ===== */
                
                .summary-box {
                    background: rgba(255, 255, 255, 0.1);
                    border-radius: 12px;
                    padding: 1rem 1.5rem;
                    margin-top: 1.5rem;
                    color: #fff;
                }
                
                .summary-box h3 {
                    color: #1FC2C2;
                    margin-top: 0;
                    text-transform: uppercase;
                    font-size: 1.2rem;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    padding-bottom: 0.5rem;
                    margin-bottom: 1rem;
                }
                
                .summary-box p {
                    text-align: left;
                    margin: 0.4rem 0;
                    color: #bce3fd;
                }
                /* ===== BUTTONS ===== */
                
                .btn-group {
                    display: flex;
                    justify-content: space-between;
                    gap: 1rem;
                    margin-top: 1.5rem;
                }
                
                .btn-group button {
                    flex: 1;
                    padding: 0.9rem;
                    border-radius: 30px;
                    border: none;
                    background: linear-gradient(135deg, #1FC2C2, #1D9BF0);
                    color: #fff;
                    font-size: 1.05rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
                
                .btn-group button:hover {
                    background: transparent;
                    border: 2px solid #1FC2C2;
                    color: #1FC2C2;
                    box-shadow: 0 0 10px rgba(31, 194, 194, 0.6);
                }
                /* ===== FOOTER NOTE ===== */
                
                .footer-note {
                    text-align: center;
                    margin-top: 1.5rem;
                    font-size: 0.9rem;
                    color: #b5e5e5;
                    font-style: italic;
                }
                /* ===== RESPONSIVE ===== */
                
                @media (max-width: 600px) {
                    .quote-container {
                        padding: 1.5rem;
                    }
                    h2 {
                        font-size: 1.6rem;
                    }
                    .btn-group {
                        flex-direction: column;
                    }
                }
                /* ====== ABOUT PREVIEW SECTION ====== */
                
                .about-preview {
                    padding: 6rem 1rem;
                    background: #f9f9f9;
                    /* light neutral background */
                }
                
                .about-preview .container {
                    max-width: 1200px;
                    margin: 0 auto;
                }
                
                .about-content {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 3rem;
                    flex-wrap: wrap;
                }
                /* Left column (text) */
                
                .about-text {
                    flex: 1;
                    min-width: 300px;
                }
                
                .about-text h2 {
                    font-size: 2.5rem;
                    font-weight: 700;
                    color: #173447;
                    margin-bottom: 1.5rem;
                }
                
                .about-text p {
                    font-size: 1.15rem;
                    line-height: 1.8;
                    color: #444;
                    margin-bottom: 2rem;
                }
                /* Button styling reused */
                
                .about-text .btn {
                    background: #0c8d8d;
                    color: #fff;
                    padding: 0.9rem 2rem;
                    border-radius: 50px;
                    text-decoration: none;
                    font-weight: 600;
                    transition: all 0.3s ease;
                }
                
                .about-text .btn:hover {
                    background: #173447;
                }
                /* Right column (image) */
                
                .about-image {
                    flex: 1;
                    text-align: center;
                    min-width: 300px;
                }
                
                .about-image img {
                    max-width: 100%;
                    border-radius: 20px;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
                }
                /* ====== PORTFOLIO ====== */
                
                .portfolio {
                    padding: 5rem 1rem;
                    background: linear-gradient(135deg, #0c8d8d, #122836);
                    color: white;
                    text-align: center;
                }
                
                .portfolio h2 {
                    font-size: 2.5rem;
                    margin-bottom: 0.5rem;
                }
                
                .portfolio p {
                    margin-bottom: 3rem;
                    color: #ddd;
                }
                
                .portfolio-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
                }
                
                .portfolio-item {
                    position: relative;
                    border-radius: 1rem;
                    overflow: hidden;
                    backdrop-filter: blur(10px);
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                    transition: transform 0.3s ease;
                    cursor: pointer;
                }
                
                .portfolio-item:hover {
                    transform: translateY(-10px);
                }
                
                .portfolio-item img {
                    width: 100%;
                    display: block;
                    border-radius: 1rem;
                }
                
                .portfolio-item .overlay {
                    position: absolute;
                    inset: 0;
                    background: rgba(0, 0, 0, 0.6);
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    opacity: 0;
                    transition: opacity 0.4s ease;
                }
                
                .portfolio-item:hover .overlay {
                    opacity: 1;
                }
                
                .overlay h3 {
                    color: #fff;
                    margin-bottom: 1rem;
                }
                
                .view-btn {
                    padding: 0.5rem 1.2rem;
                    background: var(--primary, #0c8d8d);
                    border: none;
                    color: white;
                    font-weight: 600;
                    border-radius: 0.5rem;
                    cursor: pointer;
                    transition: background 0.3s ease;
                }
                
                .view-btn:hover {
                    background: #099;
                }
                /* ====== LIGHTBOX ====== */
                
                .lightbox {
                    position: fixed;
                    inset: 0;
                    background: rgba(0, 0, 0, 0.85);
                    display: none;
                    justify-content: center;
                    align-items: center;
                    z-index: 2000;
                }
                
                .lightbox.active {
                    display: flex;
                }
                
                .lightbox-content {
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(15px);
                    padding: 2rem;
                    border-radius: 1rem;
                    max-width: 600px;
                    text-align: center;
                    color: white;
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
                }
                
                .lightbox img {
                    max-width: 100%;
                    border-radius: 0.8rem;
                    margin-bottom: 1rem;
                }
                
                .close-btn {
                    position: absolute;
                    top: 2rem;
                    right: 2rem;
                    font-size: 2rem;
                    color: white;
                    cursor: pointer;
                }
                /* Templates Section */
                
                .templates {
                    padding: 4rem 1rem;
                    background: #f9f9f9;
                    text-align: center;
                }
                
                .templates h2 {
                    font-size: 2.5rem;
                    margin-bottom: 1rem;
                }
                
                .templates p {
                    font-size: 1.2rem;
                    margin-bottom: 3rem;
                    color: #555;
                }
                
                .templates-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
                }
                
                .template-item {
                    position: relative;
                    border-radius: 12px;
                    overflow: hidden;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
                }
                
                .template-item img {
                    width: 100%;
                    display: block;
                    transition: transform 0.3s ease;
                }
                
                .template-item:hover img {
                    transform: scale(1.05);
                }
                
                .template-item .overlay {
                    position: absolute;
                    inset: 0;
                    background: rgba(18, 40, 54, 0.75);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                    color: #fff;
                }
                
                .template-item:hover .overlay {
                    opacity: 1;
                }
                
                .template-item h3 {
                    margin-bottom: 1rem;
                }
                
                .template-item .view-btn {
                    background: #0c8d8d;
                    color: #fff;
                    padding: 0.8rem 1.5rem;
                    border-radius: 6px;
                    text-decoration: none;
                    transition: background 0.3s ease;
                }
                
                .template-item .view-btn:hover {
                    background: #0a6f6f;
                }
                /* ====== CONTACT PREVIEW (Hero-style) ====== */
                
                .contact-preview {
                    position: relative;
                    width: 100%;
                    min-height: 80vh;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 6rem 1rem;
                    text-align: center;
                    /* Gradient background */
                    background: linear-gradient(130deg, #0c8d8d, #173447) !important;
                }
                
                .contact-preview .container {
                    position: relative;
                    z-index: 1;
                    max-width: 1100px;
                    margin: 0 auto;
                    padding: 2rem 2.5rem;
                    /* Glassmorphism effect */
                    border-radius: 20px;
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(12px);
                    -webkit-backdrop-filter: blur(12px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
                    color: #fff;
                }
                /* Heading */
                
                .contact-preview h2 {
                    font-size: 2.5rem;
                    font-weight: 800;
                    margin-bottom: 1rem;
                    color: #fff;
                    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
                }
                /* Paragraph */
                
                .contact-preview p {
                    font-size: 1.2rem;
                    margin-bottom: 2rem;
                    color: #f1f1f1;
                }
                /* Button (reuse hero style) */
                
                .contact-preview .btn {
                    font-size: 1rem;
                    font-weight: 600;
                    padding: 0.9rem 2rem;
                    border-radius: 50px;
                    background: #fff;
                    color: #0c8d8d;
                    text-decoration: none;
                    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
                    transition: all 0.3s ease;
                }
                
                .contact-preview .btn:hover {
                    background: #173447;
                    color: #fff;
                }
                
                .hosting-overview {
                    padding: 4rem 0;
                    background: #f9f9f9;
                }
                
                .two-column {
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    gap: 2rem;
                }
                
                .text-column {
                    flex: 1 1 45%;
                    text-align: left;
                    /* ensure left alignment */
                }
                
                .text-column h2 {
                    color: var(--primary-color);
                    margin-bottom: 1rem;
                }
                
                .text-column p {
                    margin-bottom: 1rem;
                    line-height: 1.6;
                }
                
                .image-column {
                    flex: 1 1 45%;
                    text-align: center;
                }
                
                .image-column img.responsive-img {
                    max-width: 100%;
                    height: auto;
                    border-radius: 10px;
                }
                /* Mobile responsiveness */
                
                @media screen and (max-width: 768px) {
                    .two-column {
                        flex-direction: column;
                    }
                    .image-column {
                        margin-top: 1.5rem;
                    }
                }
                /* ====== Sticky CTA Bar ====== */
                
                .sticky-cta {
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    background: linear-gradient(130deg, #0c8d8d, #122836);
                    color: #fff;
                    padding: 0.8rem 1.5rem;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    z-index: 9999;
                    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
                }
                
                .sticky-cta p {
                    margin: 0;
                    font-weight: 600;
                    font-size: 1rem;
                }
                
                .sticky-cta .btn {
                    background: #fff;
                    color: #0c8d8d;
                    font-weight: 700;
                    padding: 0.6rem 1.2rem;
                    border-radius: 30px;
                    transition: 0.3s;
                }
                
                .sticky-cta .btn:hover {
                    background: #173447;
                    color: #fff;
                }
                /* ====== Quick Lead Form (Glass style) ====== */
                
                .lead-form {
                    background: linear-gradient(135deg, #0c8d8d, #122836);
                    font-family: 'Quicksand', sans-serif;
                    color: #fff;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                
                .lead-form h3 {
                    margin-bottom: 1rem;
                    font-size: 1.5rem;
                    font-weight: 700;
                    color: #fff;
                }
                
                .lead-form input,
                .lead-form select,
                .lead-form textarea {
                    width: 100%;
                    margin-bottom: 1rem;
                    padding: 0.8rem 1rem;
                    border-radius: 10px;
                    border: none;
                    outline: none;
                    font-size: 1rem;
                }
                
                .lead-form button {
                    width: 100%;
                    padding: 0.9rem;
                    background: linear-gradient(130deg, #0c8d8d, #122836);
                    border: none;
                    border-radius: 30px;
                    color: #fff;
                    font-size: 1.1rem;
                    font-weight: 600;
                    cursor: pointer;
                    transition: 0.3s;
                }
                
                .lead-form button:hover {
                    background: #0a6a6a;
                }
                /* ===== Testimonials Section ===== */
                
                .testimonials {
                    padding: 5rem 1rem;
                    background: #122836;
                    /* Dark base for contrast */
                    color: #fff;
                    text-align: center;
                }
                
                .testimonials h2 {
                    font-size: 2.5rem;
                    margin-bottom: 2.5rem;
                    font-weight: 700;
                    letter-spacing: 1px;
                }
                
                .testimonial-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
                    max-width: 1100px;
                    margin: 0 auto;
                }
                
                .testimonial {
                    background: linear-gradient(135deg, #0c8d8d, #1ca3ec);
                    padding: 2rem;
                    border-radius: 1.5rem;
                    color: #fff;
                    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    text-align: left;
                }
                
                .testimonial:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
                }
                
                .testimonial p {
                    font-size: 1.1rem;
                    line-height: 1.6;
                    font-style: italic;
                    margin-bottom: 1rem;
                }
                
                .testimonial span {
                    display: block;
                    font-weight: 600;
                    color: #f0f0f0;
                    margin-bottom: 0.5rem;
                }
                /* Project link button */
                
                .testimonial .project-link {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.3rem;
                    font-size: 0.95rem;
                    font-weight: 600;
                    color: #122836;
                    background: #fff;
                    padding: 0.4rem 0.9rem;
                    border-radius: 999px;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }
                
                .testimonial .project-link:hover {
                    background: #122836;
                    color: #fff;
                    text-decoration: none;
                    transform: translateY(-2px);
                }
                /* ====== Trust Badges (SSL, PayFast, Partners) ====== */
                
                .trust-badges {
                    display: flex;
                    justify-content: center;
                    gap: 2rem;
                    flex-wrap: wrap;
                    margin-top: 2rem;
                }
                
                .trust-badges img {
                    height: 40px;
                    object-fit: contain;
                    filter: grayscale(100%);
                    transition: filter 0.3s;
                }
                
                .trust-badges img:hover {
                    filter: grayscale(0%);
                }
                /* ====== Footer Mini Site Map ====== */
                
                .footer-nav {
                    margin-top: 1rem;
                    display: flex;
                    justify-content: center;
                    gap: 1.5rem;
                    flex-wrap: wrap;
                }
                
                .footer-nav a {
                    color: #aaa;
                    font-weight: 600;
                    transition: color 0.3s;
                }
                
                .footer-nav a:hover {
                    color: var(--primary);
                }
                /* PROCESS TIMELINE */
                
                .process {
                    padding: 60px 20px;
                    background: #f9f9f9;
                    text-align: center;
                }
                
                .process h2 {
                    font-size: 2rem;
                    margin-bottom: 40px;
                }
                
                .timeline {
                    position: relative;
                    margin: 0 auto;
                    max-width: 700px;
                    text-align: left;
                    padding-left: 30px;
                    border-left: 3px solid #0077cc;
                    /* timeline line */
                }
                
                .timeline-step {
                    position: relative;
                    margin-bottom: 40px;
                }
                
                .timeline-step .circle {
                    position: absolute;
                    left: -22px;
                    top: 15px;
                    width: 40px;
                    height: 40px;
                    background: #0077cc;
                    color: #fff;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                    z-index: 2;
                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                }
                
                .timeline-step .content {
                    background: linear-gradient(135deg, #1a1a1a, #333);
                    color: #fff;
                    padding: 20px;
                    border-radius: 12px;
                    margin-left: 30px;
                    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
                }
                
                .timeline-step h3 {
                    font-size: 1.3rem;
                    margin-bottom: 8px;
                    color: #fff;
                }
                
                .timeline-step p {
                    margin: 0;
                    color: #ddd;
                }
                /* ====== FAQ SECTION ====== */
                
                .faq {
                    padding: 4rem 1rem;
                    background: var(--light);
                    text-align: center;
                }
                
                .faq h2 {
                    margin-bottom: 2rem;
                    font-size: 2rem;
                    color: var(--accent);
                }
                
                .accordion {
                    max-width: 800px;
                    margin: 0 auto;
                    text-align: left;
                }
                
                .accordion-item {
                    background: #fff;
                    border-radius: var(--radius);
                    box-shadow: var(--shadow);
                    margin-bottom: 1rem;
                    overflow: hidden;
                    transition: all 0.3s ease;
                }
                
                .accordion-header {
                    width: 100%;
                    padding: 1.2rem 1rem;
                    background: transparent;
                    border: none;
                    outline: none;
                    font-size: 1.1rem;
                    font-weight: 600;
                    color: var(--dark);
                    cursor: pointer;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
                
                .accordion-header:hover {
                    background: rgba(0, 0, 0, 0.03);
                }
                
                .accordion-body {
                    max-height: 0;
                    overflow: hidden;
                    padding: 0 1rem;
                    transition: max-height 0.4s ease, padding 0.4s ease;
                }
                
                .accordion-body p {
                    padding: 1rem 0;
                    font-size: 1rem;
                    line-height: 1.6;
                    color: var(--text);
                }
                
                .accordion-item.active .accordion-body {
                    max-height: 300px;
                    padding: 1rem;
                }
                
                @media (max-width: 600px) {
                    .accordion-header {
                        font-size: 1rem;
                        padding: 1rem;
                    }
                    .accordion-body p {
                        font-size: 0.95rem;
                    }
                }
                /* ====== DOMAIN PRICING ====== */
                
                .tld-pricing {
                    padding: 4rem 1.5rem;
                    background: #f9fafb;
                }
                
                .tld-pricing h2 {
                    font-size: 2rem;
                    margin-bottom: 0.5rem;
                    text-align: center;
                    color: var(--dark);
                }
                
                .tld-pricing p {
                    text-align: center;
                    margin-bottom: 2rem;
                    color: #555;
                }
                /* Category Tabs */
                
                .category-tabs {
                    display: flex;
                    justify-content: center;
                    gap: 1rem;
                    margin-bottom: 2rem;
                    flex-wrap: wrap;
                }
                
                .tab-btn {
                    background: rgba(255, 255, 255, 0.2);
                    border: 2px solid var(--primary);
                    color: var(--primary);
                    padding: 0.6rem 1.4rem;
                    border-radius: 25px;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
                
                .tab-btn:hover {
                    background: var(--primary);
                    color: white;
                }
                
                .tab-btn.active {
                    background: linear-gradient(130deg, #0c8d8d, #122836);
                    color: white;
                    border-color: transparent;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                }
                /* Table Wrapper */
                
                .price-table-wrapper {
                    overflow-x: auto;
                    border-radius: 12px;
                    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
                }
                /* Pricing Table */
                
                .price-table {
                    width: 100%;
                    border-collapse: collapse;
                    min-width: 650px;
                    background: rgba(255, 255, 255, 0.75);
                    backdrop-filter: blur(12px);
                    border-radius: 12px;
                    overflow: hidden;
                }
                
                .price-table thead {
                    background: linear-gradient(130deg, #0c8d8d, #122836);
                    color: white;
                }
                
                .price-table thead th {
                    padding: 1rem;
                    text-align: left;
                    font-size: 1rem;
                    font-weight: 600;
                }
                
                .price-table tbody tr {
                    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                    transition: background 0.3s ease;
                }
                
                .price-table tbody tr:hover {
                    background: rgba(12, 141, 141, 0.08);
                }
                
                .price-table td {
                    padding: 0.9rem 1rem;
                    font-size: 0.95rem;
                    color: #333;
                }
                /* Responsive */
                
                @media (max-width: 768px) {
                    .tab-btn {
                        padding: 0.5rem 1rem;
                        font-size: 0.9rem;
                    }
                    .price-table thead {
                        font-size: 0.9rem;
                    }
                    .price-table td {
                        font-size: 0.85rem;
                    }
                }
                /* ====== FOOTER ====== */
                
                .footer {
                    background: var(--dark);
                    color: white;
                    padding: 2.5rem 1rem;
                    text-align: center;
                }
                
                .footer .container {
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;
                }
                
                .footer a {
                    color: var(--primary);
                    font-weight: 600;
                }
                
                .social-links {
                    display: flex;
                    gap: 0.8rem;
                }
                
                .social-links a {
                    color: #aaa;
                    font-size: 1.2rem;
                    transition: color 0.3s ease;
                }
                
                .social-links a:hover {
                    color: var(--primary);
                }
                
                @media (max-width: 480px) {
                    .social-links {
                        justify-content: center;
                        flex-wrap: wrap;
                    }
                }
                /* ====== RESPONSIVE ====== */
                
                @media (max-width: 768px) {
                    h1 {
                        font-size: 2.5rem;
                    }
                    .hero {
                        padding: 4rem 1rem;
                    }
                    .cta-buttons {
                        flex-direction: column;
                        gap: 1rem;
                    }
                    .nav-links {
                        top: 65px;
                    }
                    .domain-search input {
                        width: 100%;
                        margin-right: 0;
                        margin-bottom: 1rem;
                    }
                    .navbar .container {
                        flex-wrap: wrap;
                        justify-content: center;
                    }
                    .navbar .logo {
                        margin-bottom: 10px;
                    }
                    .design-description-box {
                        flex-direction: column;
                    }
                }
                
                @media (min-width: 900px) {
                    .design-description-box {
                        flex-direction: row;
                        justify-content: space-between;
                        text-align: left;
                    }
                    .description-card-content {
                        text-align: left;
                        flex-grow: 1;
                        padding-right: 30px;
                    }
                }