 /*==================================================
    SHARNA ENTERPRISE BRANDING
==================================================*/

:root{
    --primary:#4955FD;
    --primary-dark:#3445E0;
    --accent:#A5E300;
    --dark:#1F2937;
    --light:#F8FAFC;
    --border:#E5E7EB;
    --text:#374151;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

/*==================================================
    GENERAL
==================================================*/

body{
    font-family:'Open Sans',sans-serif;
    background:#f8fafc;
    color:var(--text);
}

a{
    transition:.3s;
}

a:hover{
    text-decoration:none;
}

/*==================================================
    HEADER
==================================================*/

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
}

.navbar-light{
    min-height:90px;
    display:flex;
    align-items:center;
}

.logo-img{
    max-height:85px;
    width:auto;
}

/*==================================================
    NAVIGATION
==================================================*/
.sharna-nav{

    gap:18px;

    align-items:center;

}

.sharna-nav .nav-link{

    color:#fff !important;

    font-size:15px;

    font-weight:600;

    padding:24px 10px;

    transition:.3s;

}

.sharna-nav .nav-link:hover{

    color:#a5e300 !important;

}

/*==================================================
    ACCOUNT & CART
==================================================*/

.toolbar .nav-link{
    border:2px solid var(--primary);
    border-radius:30px;
    padding:8px 18px;
    transition:.3s;
}

.toolbar .nav-link:hover{
    background:var(--primary);
    color:#fff!important;
}

.badge-info{
    background:var(--accent)!important;
    color:#000;
}

/*==================================================
    SEARCH BAR
==================================================*/

.search .form-control{
    border-radius:30px;
    border:2px solid var(--border);
    box-shadow:none;
}

.search .btn{
    border-radius:30px 0 0 30px;
    background:var(--primary);
    color:#fff;
    border:none;
}

/*==================================================
    HERO
==================================================*/

.hero{
    padding:70px 0;
}

.hero h1{
    font-size:46px;
    font-weight:700;
    color:var(--dark);
}

.hero p{
    font-size:18px;
    color:#6B7280;
}

/*==================================================
    BUTTONS
==================================================*/

.btn-primary{
    background:var(--primary)!important;
    border:none!important;
    border-radius:8px;
}

.btn-primary:hover{
    background:var(--primary-dark)!important;
}

.btn-success{
    background:var(--accent)!important;
    color:#1f2937!important;
    border:none!important;
}

.hero .btn{

padding:15px 35px;

border-radius:40px;

font-weight:700;

margin-right:15px;

}

/*==================================================
    CARDS
==================================================*/

.card,
.panel,
.product{
    border:none;
    border-radius:16px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.card:hover,
.panel:hover,
.product:hover{
    transform:translateY(-6px);
}

/*==================================================
    PRODUCT PRICING
==================================================*/

.product{
    overflow:hidden;
}

.product header{
    background:var(--primary)!important;
    color:#fff;
}

.product .price{
    color:var(--primary);
    font-size:32px;
    font-weight:700;
}

.product .btn{
    border-radius:8px;
}

/*==================================================
    CLIENT AREA
==================================================*/

.client-home-panels .card{
    border-radius:15px;
    box-shadow:var(--shadow);
}

.client-home-panels .card-header{
    background:var(--primary);
    color:#fff;
    border:none;
}

/*==================================================
    DOMAIN SEARCH
==================================================*/

.domain-search{
    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:var(--shadow);
}

/*==================================================
    TRUST BAR
==================================================*/

.trust-bar{
    background:var(--primary);
    color:#fff;
    padding:15px 0;
    margin-top:40px;
}

.trust-bar .container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}

.trust-bar i{
    color:var(--accent);
    margin-right:8px;
}

/*==================================================
    FOOTER
==================================================*/

.sharna-footer{
    background:#1F2937;
    color:#fff;
    padding:60px 0 30px;
}

.sharna-footer h5{
    color:var(--accent);
    margin-bottom:18px;
    font-weight:700;
}

.sharna-footer a{
    color:#fff;
}

.sharna-footer a:hover{
    color:var(--accent);
}

.sharna-footer ul{
    list-style:none;
    padding:0;
}

.sharna-footer ul li{
    margin-bottom:10px;
}

.footer-social a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    background:var(--primary);
    border-radius:50%;
    color:#fff;
    margin-left:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--accent);
    color:#1F2937;
    transform:translateY(-4px);
}

/*==================================================
    MOBILE
==================================================*/

@media(max-width:991px){

.logo-img{
    max-height:60px;
}

.main-navbar-wrapper .nav-link{
    padding:12px;
}

.trust-bar .container{
    justify-content:center;
}

.footer-social{
    text-align:center!important;
    margin-top:20px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

.search{
    display:none!important;
}

.sharna-footer{
    text-align:center;
}

}

/*==================================================
DASHBOARD HERO
==================================================*/

.sharna-dashboard-hero{

background:linear-gradient(135deg,#4955FD,#3445E0);

color:#fff;

padding:50px;

border-radius:18px;

margin-bottom:35px;

box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.sharna-dashboard-hero h1{

font-size:42px;

font-weight:700;

margin-bottom:12px;

}

.sharna-dashboard-hero p{

font-size:18px;

opacity:.95;

margin:0;

}

.tiles .tile{

background:#fff;

border-radius:18px;

border-left:5px solid #4955FD;

padding:30px;

box-shadow:0 8px 30px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.tiles .tile:hover{

transform:translateY(-8px);
border-left-color:#A5E300;
}

.tiles .tile i{

font-size:42px;

color:#4955FD;

margin-bottom:20px;

}

.tiles .stat{

font-size:38px;

font-weight:700;

color:#1F2937;

}

.tiles .title{

font-size:16px;

font-weight:600;

color:#6B7280;

}

.highlight{

display:none;

}

.client-home-cards .card{

border:none;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.08);

margin-bottom:30px;

}

.client-home-cards .card-header{

background:#4955FD;

color:#fff;

padding:18px 25px;

}

.client-home-cards .card-title{

font-size:20px;

font-weight:600;

}

.client-home-cards .list-group-item{

padding:18px 25px;

border:none;

border-bottom:1px solid #F1F5F9;

}

.client-home-cards .list-group-item:hover{

background:#F8FAFC;

}

/*==================================================
QUICK ACTIONS
==================================================*/

.sharna-quick-actions{

margin-bottom:40px;

}

.quick-card{

display:block;

background:#fff;

padding:35px 25px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

text-align:center;

transition:.35s;

height:100%;

color:#374151;

text-decoration:none;

}

.quick-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(73,85,253,.18);

text-decoration:none;

}

.quick-card i{

font-size:48px;

color:#4955FD;

margin-bottom:20px;

}

.quick-card h4{

font-weight:700;

margin-bottom:10px;

color:#1F2937;

}

.quick-card p{

font-size:15px;

color:#6B7280;

margin:0;

}

.client-home-cards{

margin-top:30px;

}

body{

background:#F5F7FB;

}

section#main-body{

padding-top:40px;

padding-bottom:60px;

}

.support-banner{

margin-top:50px;

padding:40px;

background:linear-gradient(135deg,#4955FD,#3445E0);

border-radius:20px;

color:#fff;

}

.support-banner h3{

font-size:30px;

font-weight:700;

margin-bottom:10px;

}

.support-banner p{

margin-bottom:0;

font-size:17px;

}
/*==========================================
HOSTING PLANS
==========================================*/

.hosting-section{

padding:80px 0;

}

.hosting-section h2{

font-size:42px;

font-weight:700;

color:#1F2937;

}

.hosting-section p{

font-size:18px;

color:#6B7280;

margin-top:15px;

margin-bottom:50px;

}
.hosting-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

position:relative;

height:100%;

}

.hosting-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.hosting-header{

background:#4955fd;

padding:20px;

color:#fff;

text-align:center;

}

.hosting-header h3{

margin:0;

font-size:24px;

font-weight:700;

}

.hosting-price{

text-align:center;

padding:35px 20px;

font-size:48px;

font-weight:700;

color:#4955fd;

}

.hosting-price span{

display:block;

font-size:18px;

color:#777;

margin-top:8px;

}

.hosting-features{

list-style:none;

padding:0 30px;

margin:0;

}

.hosting-features li{

padding:12px 0;

border-bottom:1px solid #eee;

}

.hosting-features i{

color:#a5e300;

margin-right:10px;

}

.hosting-footer{

padding:30px;

}

.btn-sharna{

display:block;

width:100%;

background:#a5e300;

color:#111;

font-weight:700;

padding:14px;

border-radius:10px;

text-align:center;

transition:.3s;

}

.btn-sharna:hover{

background:#8fd100;

color:#111;

text-decoration:none;

}

.featured-plan{

border:4px solid #a5e300;

transform:scale(1.05);

}

.popular-badge{

position:absolute;

right:-45px;

top:18px;

background:#ff9800;

color:#fff;

padding:8px 50px;

transform:rotate(45deg);

font-size:12px;

font-weight:bold;

}
/* ==========================
   COMPARISON TABLE
==========================*/

.plan-comparison{

padding:90px 0;

background:#ffffff;

}

.comparison-table{

background:#fff;

border-radius:16px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.comparison-table th{

background:#4955fd;

color:#fff;

font-size:18px;

padding:18px;

text-align:center;

}

.comparison-table td{

padding:16px;

text-align:center;

vertical-align:middle;

font-size:15px;

}

.comparison-table td:first-child{

font-weight:700;

text-align:left;

background:#fafafa;

}

.comparison-table tbody tr:nth-child(even){

background:#fafcff;

}

.popular-column{

background:#eefbd0 !important;

font-weight:700;

}

.comparison-table tbody tr:hover{

background:#f3f7ff;

transition:.3s;

}

@media(max-width:768px){

.comparison-table{

font-size:13px;

}

.comparison-table th,

.comparison-table td{

padding:10px;

}

}
/*==========================
WHY SHARNA
==========================*/

.why-sharna{

padding:90px 0;

background:#f8fbff;

}

.feature-box{

background:#fff;

padding:40px 30px;

border-radius:18px;

text-align:center;

height:100%;

transition:.35s;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.feature-box:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.feature-box i{

font-size:52px;

margin-bottom:20px;

color:#4955fd;

}

.feature-box h4{

font-weight:700;

margin-bottom:15px;

}

.feature-box p{

color:#666;

line-height:1.7;

}
.hosting-stats{

background:#4955fd;

padding:70px 0;

color:#fff;

}

.hosting-stats h2{

font-size:52px;

font-weight:800;

color:#a5e300;

}

.hosting-stats p{

font-size:18px;

margin-top:10px;

}
.hosting-cta{

padding:100px 0;

background:linear-gradient(135deg,#4955fd,#3643d8);

color:#fff;

text-align:center;

}

.hosting-cta h2{

font-size:46px;

font-weight:800;

margin-bottom:20px;

}

.hosting-cta p{

font-size:20px;

max-width:700px;

margin:0 auto 40px;

}

.hosting-cta .btn{

background:#a5e300;

color:#111;

padding:16px 45px;

border-radius:40px;

font-weight:700;

}
/*=========================
DOMAIN SEARCH
=========================*/

.domain-search{

padding:100px 0;

background:#fff;

}

.domain-search-box{

display:flex;

max-width:850px;

margin:auto;

border-radius:60px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.domain-search-box input{

flex:1;

padding:22px;

border:none;

font-size:18px;

outline:none;

}

.domain-search-box button{

background:#4955fd;

color:#fff;

border:none;

padding:0 45px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.domain-search-box button:hover{

background:#3644f5;

}

.domain-pricing{

margin-top:35px;

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.domain-pricing div{

background:#f8f9fc;

padding:15px 25px;

border-radius:12px;

font-weight:600;

}
.testimonials{

padding:100px 0;

background:#f8fbff;

}

.testimonial{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 35px rgba(0,0,0,.08);

height:100%;

}

.testimonial p{

margin:20px 0;

color:#666;

line-height:1.8;

}

.testimonial h5{

font-weight:700;

}
.hosting-faq{

padding:100px 0;

background:#fff;

}

.faq-item{

background:#f8f9fc;

padding:30px;

margin-bottom:20px;

border-radius:15px;

border-left:5px solid #4955fd;

}

.faq-item h4{

font-size:20px;

font-weight:700;

margin-bottom:15px;

}

.faq-item p{

margin:0;

color:#666;

line-height:1.7;

}
/* Sticky Navigation */

.main-navbar-wrapper{

position:sticky;

top:0;

z-index:9999;

background:#fff;

box-shadow:0 8px 30px rgba(0,0,0,.08);

transition:all .3s ease;

}
.sharna-nav .nav-link{

position:relative;

}

.sharna-nav .nav-link::after{

content:'';

position:absolute;

bottom:-8px;

left:50%;

width:0;

height:3px;

background:#a5e300;

transition:.3s;

transform:translateX(-50%);

border-radius:10px;

}

.sharna-nav .nav-link:hover::after{

width:70%;

}
/* =========================================
   SHARNA MEGA MENU
========================================= */

.navbar .dropdown-menu{

    width:850px;

    max-width:90vw;

    border:none;

    border-radius:16px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.navbar .dropdown-menu .row{

    display:flex;

    flex-wrap:wrap;

}

.navbar .dropdown-menu .col-lg-4{

    flex:0 0 33.333%;

    max-width:33.333%;

}

.navbar .dropdown-menu h6{

    font-size:18px;

    font-weight:700;

    margin-bottom:15px;

}

.navbar .dropdown-menu p{

    line-height:1.7;

    font-size:15px;

}

.navbar .dropdown-menu ul{

    list-style:none;

    padding:0;

    margin:0;

}

.navbar .dropdown-menu li{

    padding:8px 0;

    white-space:nowrap;

}

.navbar .dropdown-menu li i{

    color:#a5e300;

    width:24px;

}

.navbar .dropdown-menu a{

    color:#222;

    text-decoration:none;

}

.navbar .dropdown-menu a:hover{

    color:#4955fd;

}

/* ==============================
Hosting Cards
============================== */

.hosting-card{

position:relative;

background:#fff;

border:1px solid #ececec;

border-radius:16px;

padding:20px;

margin-bottom:15px;

transition:.3s;

}

.hosting-card:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

border-color:#4955fd;

}

.hosting-card h6{

font-weight:700;

margin-bottom:10px;

}

.hosting-card p{

font-size:14px;

color:#666;

margin-bottom:15px;

}

.hosting-card .btn{

background:#4955fd;

border:none;

border-radius:30px;

padding:8px 20px;

}

.hosting-card .btn:hover{

background:#3445ff;

}

.popular{

border:2px solid #a5e300;

}

.popular-ribbon{

position:absolute;

top:-10px;

right:15px;

background:#a5e300;

color:#111;

font-size:11px;

font-weight:700;

padding:5px 10px;

border-radius:30px;

}
.header-actions{

    display:flex;

    align-items:center;

    gap:15px;

}

.btn-login{

    color:#fff;

    border:2px solid rgba(255,255,255,.3);

    border-radius:30px;

    padding:10px 22px;

    transition:.3s;

}

.btn-login:hover{

    background:white;

    color:#4955fd;

}

.btn-order{

    background:#a5e300;

    color:#222;

    font-weight:700;

    border-radius:30px;

    padding:10px 26px;

}

.btn-order:hover{

    background:#b7f700;

    transform:translateY(-2px);

}
.navbar-brand img{

    max-height:70px;

    transition:.3s;

}

.navbar-brand img:hover{

    transform:scale(1.05);

}
.top-contact{

    background:#111827;

    color:#fff;

    font-size:14px;

    padding:8px 0;

}

.top-contact a{

    color:#fff;

}

.top-contact i{

    color:#a5e300;

    margin-right:6px;

}
.trust-icons{

padding:70px 0;

background:#fff;

}

.trust-icons i{

font-size:42px;

color:#4955fd;

margin-bottom:20px;

}

.trust-icons h5{

font-weight:700;

margin-bottom:15px;

}

.trust-icons p{

color:#666;

}
/* ===============================
   Product Hero
================================ */

.sharna-product-hero{

background:linear-gradient(135deg,#4955fd,#6a73ff);

padding:80px 0;

border-radius:18px;

margin-bottom:40px;

color:#fff;

overflow:hidden;

}

.sharna-product-hero h1{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.sharna-product-hero p{

font-size:20px;

opacity:.95;

margin-bottom:30px;

}

.hero-badges{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-top:25px;

}

.hero-badges span{

background:rgba(255,255,255,.15);

padding:10px 18px;

border-radius:30px;

font-weight:600;

}

.hero-badges i{

color:#a5e300;

margin-right:8px;

}

.hero-image{

max-height:320px;

}
/* ===========================================
   Hosting Package Cards
=========================================== */

.sharna-product-card{

background:#fff;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

padding:25px;

margin-bottom:35px;

transition:.35s;

border:1px solid #eee;

}

.sharna-product-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.plan-title{

font-size:30px;

font-weight:700;

margin-bottom:20px;

color:#222;

}

.popular-badge{

background:#a5e300;

color:#111;

font-size:12px;

padding:6px 12px;

border-radius:30px;

margin-left:10px;

font-weight:700;

}

.sharna-price-container{

padding:30px;

background:#4955fd;

color:#fff;

border-radius:15px;

}

.price-cont{

font-size:34px;

font-weight:700;

margin:20px 0;

display:block;

}

.btn-order{

background:#a5e300;

color:#111;

font-weight:700;

padding:14px 28px;

border-radius:10px;

display:inline-block;

transition:.3s;

text-decoration:none;

}

/* Hosting Dropdown */

.navbar .dropdown-menu{
    min-width:260px;
    border:none;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    padding:10px 0;
}

.navbar .dropdown-item{
    padding:12px 20px;
    font-weight:500;
    transition:.3s;
}

.navbar .dropdown-item i{
    width:22px;
    color:#4955fd;
}

.navbar .dropdown-item:hover{
    background:#4955fd;
    color:#fff;
}

.navbar .dropdown-item:hover i{
    color:#a5e300;
}

.btn-order:hover{

background:#c3ff2f;

color:#000;

text-decoration:none;

}
/* ==========================================
   SHARNA MAIN NAVIGATION
========================================== */

.main-navbar-wrapper{
    background:#4955fd !important;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    padding:0;
}

.main-navbar-wrapper .navbar{
    background:#4955fd !important;
}

.sharna-nav{
    align-items:center;
}

.sharna-nav .nav-link{
    color:#ffffff !important;
    font-weight:600;
    padding:18px 18px !important;
    position:relative;
    transition:.3s;
}

.sharna-nav .nav-link:hover{
    color:#a5e300 !important;
}

.sharna-nav .active .nav-link,
.sharna-nav .nav-item.active .nav-link{
    color:#a5e300 !important;
}

.header-actions .btn-login{
    color:#fff;
    border:2px solid rgba(255,255,255,.35);
    border-radius:8px;
    padding:10px 22px;
    margin-right:12px;
    transition:.3s;
}

.header-actions .btn-login:hover{
    background:#fff;
    color:#4955fd;
}

.header-actions .btn-order{
    background:#a5e300;
    color:#111;
    border-radius:8px;
    padding:10px 24px;
    font-weight:700;
    transition:.3s;
}

.header-actions .btn-order:hover{
    background:#8ac700;
    color:#111;
}

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.dropdown-item:hover{
    background:#4955fd;
    color:#fff;
}
/* ==========================
   SHARNA NAVBAR
========================== */

.main-navbar-wrapper{
    background:#4955fd;
    min-height:72px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.sharna-nav .nav-link{
    color:#fff!important;
    font-weight:600;
    padding:24px 18px!important;
    transition:.25s;
}

.sharna-nav .nav-link:hover{
    color:#a5e300!important;
}

.sharna-nav .dropdown-menu{
    border:none;
    border-radius:12px;
    margin-top:0;
    min-width:240px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.sharna-nav .dropdown-item{
    padding:12px 20px;
    font-weight:500;
}

.sharna-nav .dropdown-item:hover{
    background:#4955fd;
    color:#fff;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login{
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
    padding:10px 22px;
    border-radius:8px;
}

.btn-login:hover{
    background:#fff;
    color:#4955fd;
}

.btn-order{
    background:#a5e300;
    color:#111;
    font-weight:700;
    border-radius:8px;
    padding:10px 24px;
}

.btn-order:hover{
    background:#8ed100;
    color:#111;
}

.navbar-toggler{
    border:none;
    color:#fff;
}

.navbar-toggler:focus{
    outline:none;
    box-shadow:none;
}