/* Home page cheap hosting cards */
.hosting-cards .box{
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(45, 55, 72, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 2rem;
    padding-top: 3.6rem; /* space for badge to avoid pushing title */
    box-shadow: 0 8px 24px rgba(45, 55, 72, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.hosting-cards .box h3{
    text-align: center;
    font-size: 2.6rem !important; /* override inline size */
    margin-bottom: 1rem;
}

.hosting-cards .box .price{
    text-align: center;
}

.hosting-cards .box img{
    margin: 1.5rem auto 1rem auto;
    display: block;
    max-height: 140px;
    width: auto;
    object-fit: contain;
}

.hosting-cards .box ul{
    flex: 1 1 auto;
}

.hosting-cards .box .btn{
    margin-top: auto;
    width: 100%;
    text-align: center;
    box-shadow: 0 6px 14px rgba(56, 189, 248, 0.25);
}

.hosting-cards .box:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(45, 55, 72, 0.12);
}

.hosting-cards .box ul li{
    border-top: 1px dashed rgba(45, 55, 72, 0.12);
}
.hosting-cards .box ul li:first-child{
    border-top: none;
}

/* Position the popular badge on home cards without affecting title alignment */
.hosting-cards .box .popular-badge{
    position: absolute;
    top: 10px;
    right: 16px;
    background: var(--main-gradient);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
}
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    /* Enhanced brand colors */
    --main-color:#e8786e;
    --main-gradient: linear-gradient(135deg, #e8786e 0%, #f093fb 100%);
    --secondary-color:#3b82f6;
    --accent-color:#10b981;

    /* Enhanced neutrals with better contrast */
    --black:#1a202c;
    --dark-gray:#2d3748;
    --medium-gray:#4a5568;
    --light-color:#718096;
    --light-bg:#f7fafc;
    --bg:#f0f4f8;

    /* Modern surfaces with better depth */
    --border:.1rem solid rgba(45, 55, 72, 0.1);
    --border-light:.1rem solid rgba(45, 55, 72, 0.05);
    --box-shadow:0 4px 6px -1px rgba(45, 55, 72, 0.1), 0 2px 4px -1px rgba(45, 55, 72, 0.06);
    --shadow-sm:0 1px 3px 0 rgba(45, 55, 72, 0.1), 0 1px 2px 0 rgba(45, 55, 72, 0.06);
    --shadow-md:0 10px 15px -3px rgba(45, 55, 72, 0.1), 0 4px 6px -2px rgba(45, 55, 72, 0.05);
    --shadow-lg:0 20px 25px -5px rgba(45, 55, 72, 0.1), 0 10px 10px -5px rgba(45, 55, 72, 0.04);
    --shadow-xl:0 25px 50px -12px rgba(45, 55, 72, 0.25);

    /* Enhanced border radius */
    --radius:.8rem;
    --radius-lg:1.2rem;
    --radius-xl:1.6rem;
    --radius-2xl:2rem;

    /* Glass morphism effects */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: blur(10px);
}

*{
    font-family: 'Nunito', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: all .25s ease;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
    overflow-x: hidden;
}

body{
    padding-top: 8rem; /* space below fixed header */
    color: var(--black);
    background:#fff;
    line-height:1.7;
}

section{
    padding:4rem 9%;
}

/* compact page title strip used on all subpages */
.page-title{
    padding:6rem 9% 4rem;
    background: #f9fafb;
    border-bottom: 1px solid rgba(2,6,23,.06);
    text-align:center;
}
.page-title .heading{
    padding-bottom: .8rem;
    font-size: 3.2rem;
}
.subtitle{
    font-size:1.5rem;
    color:var(--light-color);
}

/* enhanced subheading UI specifically under page titles */
.page-title .subtitle{
    display:inline-block;
    margin-top:.8rem;
    padding:.7rem 1.2rem;
    border:1px solid rgba(2,6,23,.08);
    border-radius:999px;
    background:#fff;
    color:#6b7280;
    box-shadow: var(--shadow-sm);
}

/* section header utilities */
.section-header{ text-align:center; margin:0 auto 2.2rem; max-width:72rem; }
.eyebrow{
    display:inline-block;
    font-size:1.2rem;
    letter-spacing:.1rem;
    text-transform:uppercase;
    color:var(--orange);
    background:rgba(255,159,67,.12);
    padding:.4rem .8rem;
    border-radius:999px;
}
.section-title{ font-size:2.6rem; margin-top:.6rem; }
.section-subtitle{ font-size:1.5rem; color:var(--light-color); margin-top:.4rem; }

/* themed section backgrounds and dividers */
.section--muted{ background:#f8fafc; }
.section--tint{ background:#f7fbff; }
.section-divider{ 
    height:1px; 
    background:rgba(0,0,0,.06); 
    margin:2.5rem 0; 
}

/* simple anchor nav under page title */
.inpage-nav{ 
    display:flex; gap:1rem; justify-content:center; 
    margin:1rem 0 0; 
}
.inpage-nav a{ 
    font-size:1.4rem; 
    padding:.8rem 1.2rem; 
    border-radius:999px; 
    border:1px solid rgba(0,0,0,.12);
    background:#fff; 
}
.inpage-nav a:hover{ border-color:var(--orange); color:var(--orange); }

/* navbar dropdown */
.navbar{ display:flex; gap:1rem; align-items:center; }
.navbar a{ position:relative; padding:.8rem 1.1rem; border-radius:.6rem; }
.navbar a:hover{ color:var(--main-color); }
.navbar a.active{ color:var(--main-color); }
.navbar a.active::after{
    content:'';
    position:absolute; left:10%; right:10%; bottom:-.6rem;
    height:.3rem; background:var(--main-color); border-radius:999px;
}
.navbar .dropdown{ position:relative; }
.navbar .dropdown > a.dropdown-toggle{ display:inline-flex; align-items:center; gap:.4rem; }
.navbar .dropdown-menu{
    position:absolute; left:0; top:100%;
    background:#fff; border:var(--border); box-shadow:var(--shadow-md);
    min-width:22rem; padding:.8rem 0; border-radius:var(--radius); display:none; z-index:50;
}
.navbar .dropdown-menu a{ display:block; padding:.9rem 1.2rem; white-space:nowrap; font-size:1.5rem; }
.navbar .dropdown-menu a:hover{ background:#f7f7f7; }
.navbar .dropdown:hover .dropdown-menu{ display:block; }

.heading{
    text-align:center; padding-bottom: 2.4rem; font-size: 3.2rem; color:var(--black);
}

.heading span{
    color:var(--main-color);
    border-radius: .6rem;
    background: var(--bg);
    padding:.2rem 1.2rem;
}

.btn{
    margin-top: 1rem;
    display:inline-block;
    padding:1.2rem 2.5rem;
    font-size:1.6rem;
    font-weight:600;
    cursor:pointer;
    color:#fff;
    background: var(--main-gradient);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 0;
    overflow:hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before{
    left: 100%;
}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.1);
}

.btn:active{
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

/* Secondary button variant */
.btn-secondary{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-secondary:hover{
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Outline button variant */
.btn-outline{
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    box-shadow: none;
}

.btn-outline:hover{
    background: var(--main-color);
    color: white;
    transform: translateY(-1px);
}

/* Large button variant */
.btn-lg{
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    border-radius: var(--radius-xl);
}

/* Modern Header Design */
.header{
    position: fixed; top:0; left:0; right: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    box-shadow: 0 4px 20px rgba(45, 55, 72, 0.05);
    display:flex; align-items:center; justify-content:space-between;
    padding: 2rem 9%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
}

.header.scrolled{
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(45, 55, 72, 0.08);
    backdrop-filter: blur(25px);
    padding: 1.5rem 9%;
}

/* Elegant Logo Design */
.header .logo{
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.header .logo::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--main-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.header .logo:hover::before{
    width: 120px;
    height: 120px;
    opacity: 0.1;
}

.header .logo-text{
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* Premium Navigation */
.header .navbar{
    display:flex;
    gap: 0.5rem;
    align-items:center;
    position: relative;
    z-index: 2;
}

.header .navbar a{
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin: 0 0.3rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    letter-spacing: 0.25px;
    overflow: hidden;
}

.header .navbar a::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 120, 110, 0.08), transparent);
    transition: left 0.5s ease;
}

.header .navbar a:hover::before{
    left: 100%;
}

.header .navbar a:hover{
    color: var(--black);
    background: rgba(232, 120, 110, 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 120, 110, 0.15);
}

.header .navbar a.active{
    color: var(--main-color);
    background: rgba(232, 120, 110, 0.08);
    font-weight: 600;
}

.header .navbar .dropdown{
    position: relative;
}

.header .navbar .dropdown-toggle{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.header .navbar .dropdown-toggle::after{
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
    margin-left: 0.2rem;
}

.header .navbar .dropdown:hover .dropdown-toggle::after{
    transform: rotate(180deg);
}

.header .navbar .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 55, 72, 0.08);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

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

.header .navbar .dropdown-menu a{
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    color: var(--medium-gray);
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.header .navbar .dropdown-menu a:hover{
    color: var(--black);
    background: rgba(232, 120, 110, 0.05);
    padding-left: 2rem;
}

/* CTA Button in Header */
.header .cta-btn{
    background: var(--main-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.4rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.header .cta-btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

/* Mobile Menu Button */
#menu-btn{
    cursor:pointer;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
    color: var(--main-color);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 55, 72, 0.1);
    display: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

#menu-btn:hover{
    color: white;
    background: var(--main-gradient);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

#menu-btn.active{
    color: white;
    background: var(--main-gradient);
}

.home{
    display:flex; align-items:center; flex-wrap:wrap; gap:4rem;
    padding: 6rem 9% 4rem; background: var(--bg); position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.home::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 120, 110, 0.03) 0%, rgba(240, 147, 251, 0.03) 100%);
    z-index: 1;
}

.home .content{
    flex:1 1 50rem;
    z-index: 2;
    position: relative;
}

.home .image{
    flex:1 1 50rem;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .image img{
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(45, 55, 72, 0.15));
    animation: float 6s ease-in-out infinite;
}

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

.home .content h3{
    font-size: 4.2rem;
    color:var(--black);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .content .highlight{
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.home .content p{
    font-size: 1.8rem;
    color:var(--medium-gray);
    line-height: 1.7;
    padding:1.5rem 0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.home .content .features{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.home .content .features .feature{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.home .content .features .feature:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.home .content .features .feature i{
    font-size: 2rem;
    color: var(--main-color);
    background: linear-gradient(135deg, var(--main-color) 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .content .features .feature span{
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.home .cloud{
    position: absolute;
    bottom: -2rem; right: 0; left: 0;
    height: 25rem;
    background-size: 300rem 25rem;
    background:url(../images/cloud.png) repeat-x;
    animation: cloud 15s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes cloud{
    0%{
        background-position-x: 0rem;
    }
    100%{
        background-position-x: -300rem;
    }
}

.home .cloud-1{
    opacity: .3;
    height: 30rem;
    background-size: 300rem 30rem;
    animation-direction: reverse;
    animation-duration: 20s;
}

/* Floating animation for decorative elements */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-5px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.services .box-container{ display:grid; grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr)); gap:2rem; }

.services .box-container .box{
    text-align:center;
    border:var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    padding:3.2rem 2rem;
    background:#fff;
}

.services .box-container .box img{ height: 9rem; }

.services .box-container .box h3{ color:var(--black); font-size: 2.2rem; padding-top: 1.2rem; }

.services .box-container .box p{ color:var(--light-color); font-size: 1.5rem; padding:.8rem 0 0; line-height: 1.7; }

.about .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:1.5rem;
}

.about .row .image{
    flex:1 1 45rem;
    padding: 2rem;
}

.about .row .image img{
    width: 100%;
}

.about .row .content{
    flex:1 1 45rem;
}

.about .row .content .title{
    font-size:3rem;
    color:var(--black);
}

.about .row .content p{
    font-size:1.5rem;
    color:var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
}

.about .row .content .icons-container{
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
    padding-top: 2rem;
}

.about .row .content .icons-container .icons{
    flex:1 1 15rem; border-radius: var(--radius); border:var(--border); padding:1.5rem; text-align:center; background:#fff; box-shadow: var(--shadow-sm);
}

.about .row .content .icons-container .icons i{
    border-radius: 50%;
    background: var(--bg);
    color:var(--main-color);
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
}

.about .row .content .icons-container .icons h3{
    color:var(--light-color);
    font-size: 1.6rem;
    padding-top: 1rem;
}

.portfolio .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
}

.portfolio .box-container .box{ height: 30rem; border-radius: var(--radius); overflow:hidden; position: relative; box-shadow: var(--shadow-md); }

.portfolio .box-container .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portfolio .box-container .box span{
    position: absolute;
    top:1rem; right: 2rem;
    font-weight: bolder;
    font-size: 5rem;
    color:var(--black);
}

.portfolio .box-container .box .content{
    height: 100%;
    width: 100%;
    position: absolute;
    top:6rem; left: 0;
    transition-delay: .3s;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.portfolio .box-container .box:hover .content{
    top:0; 
    opacity: 1;
}

.portfolio .box-container .box .content h3{
    font-size: 2.5rem;
    padding-bottom: .5rem;
    color:var(--black);
}

.portfolio .box-container .box .content p{
    font-size: 1.5rem;
    color:var(--light-color);
}

.portfolio .box-container .box::before{
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top:0; left: 0;
    background: #fff;
    clip-path: circle(30% at 93% 0);
    transition: .3s linear;
}

.portfolio .box-container .box:hover::before{
    clip-path: circle(100%);
}

.pricing .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap:2.5rem;
    margin-top: 3rem;
}

.pricing .box-container .box{
    text-align:center;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 55, 72, 0.08);
    box-shadow: var(--shadow-lg);
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.pricing .box-container .box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--main-gradient);
    z-index: 2;
}

.pricing .box-container .box:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 120, 110, 0.2);
}

.pricing .box-container .box.popular{
    transform: scale(1.02);
    border: 2px solid var(--main-color);
    box-shadow: 0 20px 40px rgba(232, 120, 110, 0.15);
}

.pricing .box-container .box.popular::before{
    background: var(--main-gradient);
    height: 6px;
}

.pricing .box-container .box h3{
    color:var(--black);
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    text-align: center;
}

.pricing .box-container .box .popular-badge{
    position: absolute;
    top: 10px; /* move inside to avoid clipping by overflow */
    right: 16px;
    background: var(--main-gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 4;
}

/* add a bit of spacing to the title when a badge is present */
.pricing .box-container .box .popular-badge + h3{
    margin-top: 1.4rem;
}

.pricing .box-container .box img{
    margin: 2rem 0;
    height: 16rem;
    filter: drop-shadow(0 10px 20px rgba(45, 55, 72, 0.1));
    transition: transform 0.3s ease;
}

.pricing .box-container .box:hover img{
    transform: scale(1.05);
}

.pricing .box-container .box .price{
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--main-color);
    margin: 2rem 0;
    position: relative;
    z-index: 3;
}

.pricing .box-container .box .price span{
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    top: -0.5rem;
    margin-right: 0.5rem;
}

.pricing .box-container .box .price .period{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--light-color);
    margin-left: 0.5rem;
}

.pricing .box-container .box ul{
    padding: 1.5rem 0;
    list-style: none;
    margin: 0;
    flex: 1;
}

.pricing .box-container .box ul li{
    padding: 1.2rem 0;
    font-size: 1.6rem;
    color: var(--medium-gray);
    border-bottom: 1px solid rgba(45, 55, 72, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pricing .box-container .box ul li::before{
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.4rem;
}

.pricing .box-container .box ul li:last-child{
    border-bottom: none;
}

.review .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:2rem;
}

.review .box-container .box{
    padding: 2rem;
    border-radius: var(--radius);
    border:var(--border);
    box-shadow: var(--shadow-sm);
    background:#fff;
}

.review .box-container .box .user{
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
}

.review .box-container .box .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.review .box-container .box .user h3{
    font-size: 2.2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.review .box-container .box .user .stars i{
    font-size: 1.5rem;
    color: var(--main-color);
}

.review .box-container .box .fa-quote-right{
    margin-left: auto;
    font-size: 5rem;
    color:var(--bg);
}

.review .box-container .box p{
    padding-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--light-color);
    font-style: italic;
}

.contact .icons-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap:1.5rem;
}

.contact .icons-container .icons{
    padding: 2.2rem;
    text-align:center;
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background:#fff;
}

.contact .icons-container .icons i{
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    color:var(--main-color);
    background: var(--bg);
    border-radius: 50%;
}

.contact .icons-container .icons h3{
    color:var(--black);
    padding: 1rem 0;
    font-size: 2.5rem;
}

.contact .icons-container .icons p{
    color:var(--light-color);
    line-height: 1.8;
    font-size: 1.5rem;
}

.contact .row{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact .row .map{
    flex:1 1 45rem;
    width: 100%;
    padding:2rem;
    border:var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    background:#fff;
}

.contact .row form{
    flex:1 1 45rem;
    padding:2rem;
    border:var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius);
    background:#fff;
}

.contact .row form .box{
    margin:.7rem 0;
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
    color:var(--black);
    border-radius: var(--radius);
    border:1px solid rgba(2,6,23,.12);
    background:#f8fafc;
    text-transform:none;
    width:100%;
}

.contact .row form .box:focus{
    background:#fff;
    border-color: var(--main-color);
    box-shadow: 0 0 0 4px rgba(232,120,110,.15);
}

.contact .row form textarea{
    height: 20rem;
    resize: vertical;
}

.contact .row form .btn:hover{
    filter:brightness(.95);
}

.footer{
    margin-top: 1rem;
    background: #f9fafb;
    padding-bottom: 6rem;
    border-top:1px solid rgba(2,6,23,.06);
}

.footer .box-container{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    gap:2rem;
}

.footer .box-container .box h3{
    font-size: 2rem;
    padding:1rem 0;
    color:var(--black);
}

.footer .box-container .box a{
    display:block;
    font-size: 1.5rem;
    padding:.6rem 0;
    color:var(--light-color);
}

.footer .box-container .box a i{
    padding-right: .6rem;
    color:var(--main-color);
}

.footer .box-container .box a:hover i{
    padding-right: 1.2rem;
}

.footer .credit{
    color: var(--black);
    text-align:center;
    padding:1rem;
    margin-top: 1rem;
    padding-top: 1.2rem;
    font-size: 1.6rem;
}

.footer .credit span{
    color:var(--main-color);
}

/* Modern Card Components */
.card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 55, 72, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--main-gradient);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 120, 110, 0.15);
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--glass-border);
}

.card-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.card-gradient .card-title {
    color: white;
}

/* Enhanced Typography */
.text-gradient {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 900; }

.text-6xl { font-size: 4rem; }
.text-5xl { font-size: 3.2rem; }
.text-4xl { font-size: 2.6rem; }
.text-3xl { font-size: 2.2rem; }
.text-2xl { font-size: 1.8rem; }
.text-xl { font-size: 1.6rem; }

/* Spacing Utilities */
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

/* Enhanced Section Styles */
.section--hero {
    background: linear-gradient(135deg, var(--bg) 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.section--hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(232,120,110,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.section--features {
    background: #fff;
    position: relative;
}

.section--features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232,120,110,0.02) 0%, rgba(240,147,251,0.02) 100%);
    z-index: 1;
}

/* Feature Icons Enhancement */
.feature-icon {
    width: 5rem;
    height: 5rem;
    background: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Stats Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 0.8s ease-out forwards;
}

/* Modern Testimonial Cards */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 55, 72, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(232, 120, 110, 0.1);
    font-family: Georgia, serif;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card .content {
    position: relative;
    z-index: 2;
}

/* Modern Domain Cards */
.domain-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45, 55, 72, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--main-gradient);
}

.domain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 120, 110, 0.2);
}

.domain-card .domain-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.domain-card .domain-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.domain-card .domain-period {
    font-size: 1.4rem;
    color: var(--light-color);
}

/* Loading Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


/* media queries  */
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:2rem;
    }

    section{ padding:3rem 2rem; }

}

@media (max-width:768px){
    #menu-btn{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .navbar{
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-xl);
        border-top: 1px solid rgba(45, 55, 72, 0.08);
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 0;
    }

    .header .navbar.active{
        max-height: 500px;
        transform: translateY(0);
        opacity: 1;
        padding: 2rem 0;
    }

    .header .navbar::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(232, 120, 110, 0.3), transparent);
    }

    .header .navbar a{
        font-size: 1.6rem;
        display: block;
        padding: 1.2rem 2rem;
        margin: 0.3rem 1rem;
        border-radius: var(--radius-lg);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        text-align: center;
        font-weight: 500;
    }

    .header .navbar a:hover{
        background: rgba(232, 120, 110, 0.08);
        color: var(--black);
        transform: translateX(5px);
    }

    .header .navbar .dropdown-menu{
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0.5rem 0;
    }

    .header .navbar .dropdown-menu a{
        padding: 0.8rem 3rem;
        font-size: 1.4rem;
        background: rgba(232, 120, 110, 0.05);
        margin: 0.2rem 2rem;
    }

    .header .navbar .dropdown-menu a:hover{
        background: rgba(232, 120, 110, 0.1);
        transform: translateX(10px);
    }

    .home .content{
        text-align: center;
    }

    .header{
        padding: 1.5rem 5%;
    }

    .header.scrolled{
        padding: 1.2rem 5%;
    }
}

@media (max-width:450px){

    html{
        font-size: 50%;
    }

}