/* assets/css/style.css */

:root {
    --primary: #f28c18;
    --primary-dark: #d97706;

    --secondary: #001f54;
    --secondary-light: #0b2f7a;

    --text-dark: #0b1635;
    --text-body: #5f6475;
    --text-muted: #8a91a3;

    --white: #ffffff;

    --bg-light: #f8fafd;
    --bg-section: #f4f7fb;

    --border: #e8edf5;

    --success: #16a34a;
    --danger: #dc2626;

    --shadow-sm: 0 5px 20px rgba(0, 31, 84, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 31, 84, 0.08);
    --shadow-lg: 0 15px 60px rgba(0, 31, 84, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title span {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title h2 {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.btn {
    border-radius: var(--radius-sm);
    padding: 14px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
}

.btn-outline-custom:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-client-area {
    background: var(--secondary);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 600;
}

.btn-client-area:hover {
    background: var(--secondary-light);
    color: var(--white);
}

.navbar {
    padding: 18px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(232, 237, 245, 0.7);
}

.navbar-brand img {
    max-height: 58px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.card-custom {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-custom:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-card {
    text-align: center;
    padding: 35px;
}

.feature-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.form-control,
.form-select {
    min-height: 56px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 30px;
}

.price {
    color: var(--text-dark);
    font-size: 48px;
    font-weight: 700;
}

.price small {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-features li {
    margin-bottom: 14px;
}

.pricing-features i {
    color: var(--success);
    margin-right: 10px;
}

.table-custom {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 0;
}

.table-custom thead,
.table-custom thead tr,
.table-custom thead th {
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-color: var(--secondary) !important;
}

.table-custom thead th {
    font-size: 14px;
    font-weight: 600;
    padding: 16px;
}

.table-custom tbody td {
    padding: 16px;
    vertical-align: middle;
    border-color: #edf1f7;
}

.table-custom tbody tr:hover {
    background: #f8fbff;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.footer-section {
    background: linear-gradient(135deg, #001f54 0%, #00153d 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 90px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 25px;
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
}

.bg-light-section {
    background: var(--bg-light);
}

.text-primary-custom {
    color: var(--primary);
}

.text-secondary-custom {
    color: var(--secondary);
}
.hero-section {
    padding: 120px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: #eef4ff;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-description {
    max-width: 520px;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature i {
    color: var(--primary);
    font-size: 20px;
}

.hero-feature strong {
    display: block;
    color: var(--text-dark);
    font-size: 15px;
}

.hero-feature span {
    display: block;
    font-size: 13px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-dashboard-card {
    position: relative;
    z-index: 1;
}

.hero-server-image {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 240px;
    z-index: 2;
}
.domain-search-wrapper{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
}

.domain-input{
    height:70px;
    border-radius:14px;
    padding:0 25px;
    font-size:18px;
}

.domain-search-btn{
    height:70px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;
}

.domain-pricing{
    margin-top:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.domain-item{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    font-weight:500;
}

.domain-item .extension{
    font-size:18px;
    font-weight:700;
    color:var(--secondary);
}

.domain-item .price{
    font-size:18px;
    font-weight:500;
    color:#64748b;
}

.domain-item.featured{
    background:#f7f8fb;
    border-radius:50px;
    padding:10px 20px;
}
.domain-pricing span{
    font-size:4rem;
}
.view-all-tlds{
    text-align:center;
    margin-top:25px;
}

.view-all-tlds a{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.view-all-tlds a:hover{
    color:var(--secondary);
}

.view-all-tlds i{
    transition:.3s;
}

.view-all-tlds a:hover i{
    transform:translateX(4px);
}
@media(max-width:991px){

    .domain-search-wrapper{
        padding:25px;
    }

    .domain-input,
    .domain-search-btn{
        height:60px;
    }

    .domain-pricing{
        gap:20px;
    }
}
.shared-hosting-section {
    background: #ffffff;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.pricing-card .price {
    margin-bottom: 20px;
}

.pricing-features {
    min-height: 320px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(232, 237, 245, 0.6);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured {
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
}
.vps-section .table {
    background: #fff;
    margin-bottom: 0;
}

.vps-section tbody tr {
    transition: var(--transition);
}

.vps-section tbody tr:hover {
    background: rgba(242, 140, 24, 0.04);
}

.vps-section .btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}
.workspace-section {
    background: #ffffff;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.workspace-content h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

.workspace-content p {
    margin-bottom: 30px;
}

.workspace-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.workspace-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.workspace-feature i {
    color: var(--success);
    font-size: 18px;
}

.workspace-buttons {
    display: flex;
    gap: 15px;
}
.features-section .feature-card {
    padding: 35px 30px;
    text-align: center;
}

.features-section .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: rgba(242, 140, 24, 0.1);
    color: var(--primary);
}

.features-section .feature-icon i {
    font-size: 30px;
}

.features-section h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.features-section p {
    margin-bottom: 0;
}
.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f28c18;
    margin-right: 3px;
}

.testimonial-card p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #dbe7ff;
    color: #2457d6;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-user h5 {
    margin: 0 0 4px;
    font-size: 16px;
}

.testimonial-user span {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
}

.testimonial-dots span.active {
    background: var(--primary);
}
.faq-section {
    position: relative;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--text-body);
}
.support-cta-section {
    padding-top: 0;
}

.support-cta-card {
    background: linear-gradient(
        135deg,
        var(--secondary),
        #0b2f7a
    );

    color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.support-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.support-cta-card h2 {
    color: #fff;
    margin-bottom: 15px;
}

.support-cta-card p {
    margin-bottom: 0;
    opacity: .9;
}
.page-banner {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--secondary),
        #0b2f7a
    );
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    color: #fff;
    font-size: 56px;
    margin-bottom: 20px;
}

.page-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: .9;
}
.contact-section {
    background: #fff;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(242, 140, 24, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
}

.contact-item h5 {
    margin-bottom: 5px;
}

.contact-item p {
    margin-bottom: 0;
}
.blog-section {
    background: #fff;
}

.blog-card {
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
}
.legal-page {
    background: #fff;
}

.legal-content {
    max-width: 1100px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content table {
    margin-top: 20px;
}
/* ==========================================
   WEBSITE DESIGN PACKAGES
========================================== */

.web-design-section{
    padding:80px 0;
}

.web-design-title{
    font-size:58px;
    font-weight:800;
    color:var(--secondary);
    margin-bottom:20px;
}

.web-design-description{
    max-width:850px;
    margin:auto;
    font-size:18px;
    color:#6b7280;
}

/* =========================
   PACKAGE CARD
========================= */

.website-package-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px;
    height:100%;
    position:relative;
    transition:.3s;
}

.website-package-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.website-package-card.featured{
    border:2px solid #ff6b00;
}

.popular-badge{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    background:#001b55;
    color:#fff;
    text-align:center;
    padding:10px;
    font-size:12px;
    font-weight:700;
    border-radius:14px 14px 0 0;
    letter-spacing:.8px;
}

.package-top{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
    margin-top:10px;
}

.package-icon{
    width:55px;
    height:55px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.starter{
    background:#fff1e8;
    color:#ff6b00;
}

.basic{
    background:#edf4ff;
    color:#2563eb;
}

.pro{
    background:#fff1e8;
    color:#ff6b00;
}

.ecommerce{
    background:#eef9f0;
    color:#16a34a;
}

.package-top h4{
    font-size:18px;
    font-weight:700;
    color:#001b55;
    margin-bottom:5px;
}

.package-top p{
    margin:0;
    font-size:14px;
    color:#6b7280;
    line-height:1.6;
}

/* =========================
   PRICE
========================= */

.package-price{
    margin-bottom:25px;
}

.package-price h3{
    font-size:46px;
    font-weight:800;
    color:#001b55;
    margin-bottom:5px;
}

.package-price span{
    font-size:20px;
    font-weight:600;
}

.package-price small{
    color:#6b7280;
}

/* =========================
   FEATURES
========================= */

.package-features{
    list-style:none;
    padding:0;
    margin:0;
}

.package-features li{
    padding:8px 0;
    font-size:15px;
    color:#334155;
    line-height:1.6;
}

.package-features li i{
    width:20px;
}

.package-features .fa-check{
    color:#22c55e;
}

.disabled{
    color:#94a3b8 !important;
}

.disabled i{
    color:#94a3b8 !important;
}

/* =========================
   BUTTON
========================= */

.package-cta{
    margin-top:25px;
}

.package-cta .btn{
    height:52px;
    border-radius:10px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   BENEFITS
========================= */

.website-benefits{
    margin-top:60px;
}

.benefit-card{
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    height:100%;
}

.benefit-card i{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ff6b00;
    font-size:18px;
    flex-shrink:0;
}

.benefit-card h6{
    margin-bottom:4px;
    font-weight:700;
    color:#001b55;
}

.benefit-card p{
    margin:0;
    font-size:13px;
    color:#6b7280;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .web-design-title{
        font-size:48px;
    }

    .package-price h3{
        font-size:38px;
    }
}

@media(max-width:768px){

    .web-design-title{
        font-size:34px;
    }

    .web-design-description{
        font-size:16px;
    }

    .website-package-card{
        padding:25px;
    }

    .package-price h3{
        font-size:34px;
    }
}
/*======Serach result domain======*/
.domain-result{
    margin-top:25px;
    text-align:center;
}

.domain-available{
    background:#ecfdf5;
    color:#166534;
    padding:20px;
    border-radius:12px;
}

.domain-taken{
    background:#fef2f2;
    color:#991b1b;
    padding:20px;
    border-radius:12px;
}

.domain-error{
    background:#fff7ed;
    color:#9a3412;
    padding:20px;
    border-radius:12px;
}

.checking-domain{
    background:#eff6ff;
    color:#1d4ed8;
    padding:20px;
    border-radius:12px;
}
.domain-search-results {
    margin-top: 20px;
}

.domain-result-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.domain-name {
    font-size: 20px;
    font-weight: 600;
}

.domain-discount {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #dff7f4;
}

.domain-price {
    font-size: 26px;
    font-weight: 700;
    text-align: right;
}

.domain-retail {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
    text-align: right;
    margin-bottom: 10px;
}

.domain-right {
    text-align: right;
}

.domain-unavailable {
    opacity: 0.6;
    font-weight: 600;
}
