* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

img {
    max-width: 100%;
}

/* DO NOT TOUCH html, body */
html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* Only hide horizontal overflow */
.page-wrapper {
    overflow-x: hidden;
}

.site-content {
    overflow-x: hidden;
    /* SAFE */
}

.container {
    max-width: 1200px;
    padding: 0 12px;
    margin: auto;
}

a {
    text-decoration: none;
}



li {
    list-style: none;
}


/* Top Header */
.top-header {
    background: #044F91;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.top-header marquee {
    white-space: nowrap;
}

/* Top Header Exit*/


/* Navbar-Start */
:root {
    --star-blue: #176CB1;
    --star-dark: #001f3f;
    --star-accent: #00d4ff;
    --star-silver: #e0e0e0;
    --nav-bg: #ffffff;
}

/* ===== NAVBAR CORE ===== */
.navbar {
    background: var(--nav-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    width: 100%;
    z-index: 999;
    /* fallback */
    position: sticky;
    top: 0;
}
.navbar-toggler {
    width: 50px;
}

/* Fixed style on scroll */
.navbar.fixed {
    position: fixed;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.3s ease-in-out;
}


.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

/* ===== SIDE DESIGN HOVER EFFECT (DESKTOP) ===== */
.side-style-nav .nav-item {
    position: relative;
    margin: 0 15px;

}

.side-style-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 8px 12px !important;
    color: var(--star-dark) !important;
    background: #f8f9fa;
    border-radius: 50px;
    /* Circular side design */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 45px;
    /* Initial icon-only width */
    overflow: hidden;
    white-space: nowrap;
}

.side-style-nav .nav-link i {
    font-size: 1.2rem;
    min-width: 22px;
}

.side-style-nav .link-text {
    opacity: 0;
    font-size: 14px;
    margin-left: 10px;
    font-weight: 600;
    transition: 0.3s;
}

/* The Hover Selection Effect */
.side-style-nav .nav-item:hover .nav-link {
    width: 140px;
    /* Expands to show text */
    background: var(--star-blue);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(23, 108, 177, 0.3);
}

.side-style-nav .nav-item:hover .link-text {
    opacity: 1;
}

/* ===== DROPDOWN PANE (DESKTOP) ===== */
.custom-dropdown .dropdown-pane {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-top: 3px solid var(--star-blue);
    z-index: 1000;
}

.custom-dropdown:hover .dropdown-pane {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-pane a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.2s;
}

.dropdown-pane a:hover {
    background: #f0f7ff;
    color: var(--star-blue);
    padding-left: 20px;
}

/* ===== LOGIN BUTTON ===== */
.btn-login {
    background: linear-gradient(135deg, var(--star-blue), #004a8b);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-login:hover {
    color: white;
    box-shadow: 0 5px 15px rgba(23, 108, 177, 0.4);
    transform: translateY(-2px);
}



.btn-support {
    background: linear-gradient(135deg, var(--star-blue), #004a8b);
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    margin-right: 12px;
    /* ✅ right-side gap */
}

.btn-login:support {
    color: white;
    box-shadow: 0 5px 15px rgba(23, 108, 177, 0.4);
    transform: translateY(-2px);
}


/* ===== STYLISH OFFCANVAS ===== */
.stylish-offcanvas {
    background: linear-gradient(180deg, #001f3f 0%, #000c1a 100%);
    color: white;
    width: 280px !important;
    /* Slightly smaller to avoid overflow */
    max-width: 80%;
    height: 100vh;
    /* Full viewport height */
    overflow-y: auto;
    /* Scroll if content overflows */
    border-right: 2px solid var(--star-blue);
    padding: 15px 10px;
}

.stylish-offcanvas .offcanvas-header {
    background: rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    padding: 10px 15px;
}

/* Mobile Nav Links */
.mobile-nav-list .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 10px !important;
    border-radius: 8px;
    transition: 0.3s;
}

.mobile-nav-list .nav-link:hover {
    background: rgba(23, 108, 177, 0.2);
    color: var(--star-accent) !important;
}

/* Dropdown Toggle Icon (+ / -) */
.toggle-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-icon i {
    transition: transform 0.3s;
}

.toggle-icon[aria-expanded="true"] i {
    transform: rotate(135deg);
    /* Turns + into x */
    color: var(--star-accent);
}

/* Sub-Menu Styling */
.sub-menu {
    list-style: none;
    padding-left: 35px;
    margin-bottom: 10px;
}

.sub-menu li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: 0.3s;
}

.sub-menu li a:hover {
    color: white;
    padding-left: 5px;
}

/* Contact Card in Offcanvas */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h6 {
    color: var(--star-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-card a,
.contact-card p {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-card i {
    color: var(--star-blue);
    margin-right: 8px;
}

/* Social Icons */
.social-icon {
    font-size: 1.3rem;
    color: white;
    transition: 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--star-accent);
}

/* Login Button Mobile */
.login-mob-btn {
    background: var(--star-blue);
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: 10px;
}

/* Navbar-End */




/* Hero Section-Start */

.hero-section {
    background-color: #000000;
    /* Slate Grey background */
    color: #ffffff;
    padding: 120px 20px 80px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    /* Center everything */
}

/* Container */
.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Main Heading */
.hero-container h1 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-container h1 span {
    font-size: 52px;
    font-weight: 800;
    color: #d60b15;
    margin-bottom: 20px;
}


/* Sub Heading */
.hero-container h2 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Primary Button - WhatsApp */
.hero-btn-primary {
    background-color: darkgreen;
    /* Electric/Cyan Blue */
    color: #ffffff;
    /* Black text for contrast */
    /* box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3); */
    /* Glow effect */
}

.hero-btn-primary:hover {
    background-color: #00d4ff;
    color: #000;
    /* Slightly darker cyan */
    /* box-shadow: 0 10px 25px rgba(0, 212, 255, 0.5); */
}

/* Secondary Button - Explore */
.hero-btn-secondary {
    background-color: #004a8b;
    /* Deep Royal Blue */
    color: #ffffff;
    border: 2px solid #004a8b;
    /* Electric Blue outline */
}

.hero-btn-secondary:hover {
    background-color: #00ffff;
    border: 2px solid #00ffff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 18px;
    }

    .hero-container h1 span {
        font-size: 30px;
    }

    .hero-container h2 {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

}

/* Hero Section-End */



/* breadcrumb-section-Start */
#breadcrumb-section {
    background: #1366AA;
    border-bottom: 1px solid #e6eaf0;
    min-height: 40vh;
    /* ✅ correct height handling */
    display: flex;
    /* ✅ vertical centering */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
}

.breadcrumb-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Heading */
.breadcrumb-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Breadcrumb Nav */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffffe1;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb Buttons */
.breadcrumb-btn {
    display: inline-block;
    padding: 6px 14px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    user-select: none;
    cursor: default;
}

/* Separator */
.breadcrumb-separator {
    font-weight: 600;
    color: #000000;
}

/* Clickable breadcrumb link */
.breadcrumb-link {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Optional hover (still clean, not noisy) */
.breadcrumb-link:hover {
    background-color: #1366AA;
    /* match section blue */
    color: #ffffff;
    /* white text */
    box-shadow: 0 4px 10px rgba(19, 102, 170, 0.35);
}

/* Prevent focus outline */
.breadcrumb-link:focus {
    outline: none;
}


/* Tablet */
@media (max-width: 992px) {
    #breadcrumb-section {
        min-height: 50vh;
    }

    .breadcrumb-container h1 {
        font-size: 24px;
    }

    .breadcrumb-btn {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #breadcrumb-section {
        min-height: 22vh;
    }

    .breadcrumb-container h1 {
        font-size: 22px;
    }

    .breadcrumb-btn {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* breadcrumb-section-End */



/* About-Start */
.hp-about-section {
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
    /* deep navy */
}

.hp-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.hp-image {
    flex: 1;
    text-align: center;
}

.hp-image img {
    width: 65%;
}

.hp-image img:hover {
    transform: translateY(-8px) scale(1.02);
}

/* RIGHT CONTENT */
.hp-content {
    flex: 1;
    color: #000000;
}

/* ===== NON-CLICKABLE LABEL BUTTON ===== */
.hp-tag {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 20px;
    background: #0C5C9F;
    cursor: default;
    /* Not clickable */
    user-select: none;
}

/* Center on mobile */
@media (max-width: 991px) {
    .hp-tag {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 768px) {
    .hp-haeding h2 {
        font-size: 18px;
    }

    .hp-image img {
        width: 100%;
    }
}

.hp-haeding h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000000;
    /* polished silver */
}

.hp-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.hp-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.hp-content ul li {
    display: flex;
    /* align icon & text */
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Emoji/Icon alignment fix */
.hp-content ul li::marker {
    content: "";
}

.hp-icon {
    min-width: 26px;
    /* forces same start line */
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .hp-content ul li {
        font-size: 15px;
        gap: 8px;
    }
}

/* BUTTON */
.hp-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00e5ff, #4169e1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
}

.hp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.185);
}

/* FLOAT ANIMATION */
@keyframes hp-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hp-container {
        flex-direction: column;
        text-align: center;
    }
}

/* About-End */


/* company-overview-section-Start */
.company-overview {
    padding: 70px 15px;
    background: #ffffff;
}

.company-overview-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.overview-box {
    background: #f9fbff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    border-top: 4px solid #176CB1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* ===== ICON ANIMATION ===== */
.overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #176CB1, #00d4ff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    position: relative;

    /* Animation */
    animation: floatIcon 3s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Floating animation */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Glow ring effect */
.overview-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(rgba(0, 212, 255, 0.35),
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover effects */
.overview-box:hover .overview-icon {
    transform: scale(1.1) rotate(6deg);
    /* box-shadow: 0 0 25px rgba(0, 212, 255, 0.6); */
}

.overview-box:hover .overview-icon::after {
    opacity: 1;
}


.overview-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 12px;
}

.overview-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.overview-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #444;
    position: relative;
    padding-left: 18px;
}

.overview-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #176CB1;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .company-overview-wrapper {
        grid-template-columns: 1fr;
    }
}

/* company-overview-section-End */



/* hosting-plans-Start */
.hosting-plans {
    padding: 40px 20px;
    background: #f4f4f4;
}


.hosting-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.hosting-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #045192;
    /* Star Blue */
    margin-bottom: 12px;
    line-height: 1.2;
}

.hosting-heading p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 992px) {
    .hosting-heading h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hosting-heading {
        margin-bottom: 35px;
    }

    .hosting-heading h2 {
        font-size: 24px;
    }

    .hosting-heading p {
        font-size: 15px;
    }
}

/* Container */
.plans-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
}

/* Plan Card - 3 per row on desktop */
.plan-card {
    background: #fff;
    flex: 0 0 calc(33.33% - 20px);
    /* force 3 cards per row */
    max-width: calc(33.33% - 20px);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* stack content vertically */
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
}

/* Plan GIF/Icon */
.plan-gif {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: block;
}

/* Plan Card Heading */
.plan-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #176CB1;
    text-align: center;
}

.plan-card h2 span {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #d60b15;
    text-align: center;
}

/* Extra Info */
.extra {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #d60b15;
    text-align: center;
    padding: 15px;
    margin-top: -10px;
}

/* Price */
.old-price {
    text-decoration: line-through;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-bottom: 5px;
}

.new-price {
    color: #ff9800;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* Features List */
.plan-card ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
}

.plan-card ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-card ul li i {
    color: #176CB1;
}

/* Button */
.plan-card a {
    display: block;
    /* makes it button-like */
    text-align: center;
    background: #176CB1;
    color: #fff;
    padding: 12px 0;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    /* remove underline */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: auto;
    /* pushes to bottom */
}

/* Hover */
.plan-card a:hover {
    background: #0f4e8c;
    transform: translateY(-2px);
}

/* Active / click */
.plan-card a:active {
    background: #0c3f73;
    transform: translateY(0);
}


/* Responsive - 2 per row on tablets */
@media (max-width: 1100px) {
    .plan-card {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
    }
}

/* Responsive - 1 per row on mobile */
@media (max-width: 700px) {
    .plan-card {
        flex: 1 1 100%;
    }
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.view-more-btn:hover {
    background: #e68900;
}

/* hosting-plans-End */



/* inner-ser-hos-section-start */
/* Section Wrapper */
.inner-ser-hos-section {
    padding: 60px 20px;
    background-color: #fefefe;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.inner-ser-hos-section .container {
    max-width: 900px;
    /* narrower, cleaner look */
    margin: 0 auto;
}

.inner-ser-hos-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.inner-ser-hos-content h2:hover {
    color: #0073e6;
}



.inner-ser-hos-box {
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.inner-ser-hos-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}


.inner-ser-hos-box p::first-letter {
    font-size: 42px;
    font-weight: 700;
    color: #0073e6;
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 4px;
}

/* Heading */
.inner-ser-hos-box h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.inner-ser-hos-box:hover h2 {
    color: #0073e6;
}

/* Paragraphs */
.inner-ser-hos-box p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 15px;
}

/* Section Heading Accent */
.section-heading {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}



.section-heading:hover {
    color: #0073e6;
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    background: #F6F9FF;
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}



/* Hover animation */
.feature-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}


/* Paragraphs */
.inner-ser-hos-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.inner-ser-hos-content p:hover {
    transform: translateX(5px);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.feature-list li::before {
    content: '✔';
    padding-left: 7px;
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.inner-ser-hos-info-box {
    background: #f6f9ff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Hover effect for whole box */
.inner-ser-hos-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Section Headings */
.inner-ser-hos-info-box .section-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 30px;
    color: #1a1a1a;
    position: relative;
    padding-left: 18px;
}


/* Paragraph Text */
.inner-ser-hos-info-box p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 10px;
}


.feature-list li:hover {
    transform: translateX(8px);
    color: #0073e6;
}

/* Responsive */
@media (max-width: 767px) {
    .inner-ser-hos-section {
        padding: 40px 15px;
    }

    .inner-ser-hos-content h2 {
        font-size: 24px;
    }

    .section-heading {
        font-size: 18px;
    }

    .inner-ser-hos-content p {
        font-size: 12px;
    }

    .inner-ser-hos-box h2 {
        font-size: 20px;
    }

    .feature-list li {
        font-size: 12px;
    }
}

/* inner-ser-hos-section-end */


.inner-ser-hos-keywords-section {
    background-color: #f0f8ff;
    padding: 30px 20px;
    border-radius: 12px;
    /* margin: 40px 0; */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.inner-ser-hos-keywords-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.inner-ser-hos-keywords-section .section-heading {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.inner-ser-hos-keywords-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

@media(max-width: 700px) {
    .inner-ser-hos-keywords-section p {
        font-size: 12px;

    }
}







/* Free With All Plans Section Start */
.free-plans {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.free-plans .container {
    max-width: 1100px;
    margin: 0 auto;
}

.all-features-btn {
    display: inline-block;
    background: #176CB1;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    cursor: none;
    margin-bottom: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.all-features-btn:hover {
    background: #0f4e8c;
}

.free-plans h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #222;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.feature-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    width: 100%;
    max-width: 150px;
}

.feature-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Free With All Plans Section End */





/* hp-feature-section Start */
.hp-feature-section {
    padding: 80px 8%;
    background: #030712;
    /* deep charcoal */
}

/* HEADER */
.hp-feature-section .hp-plan-header {
    text-align: center;
    margin-bottom: 50px;
}

.hp-feature-section .hp-plan-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    /* polished silver */
    margin-bottom: 10px;
}

.hp-feature-section .hp-plan-header p {
    color: #ffffff;
    font-size: 15px;
}

/* GRID */
.hp-feature-section .hp-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.hp-feature-section .hp-plan-card {
    background: linear-gradient(180deg,
            #0a1628,
            #050b16);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 16px;
    padding: 28px 22px;
    color: #e9f4ff;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.35s ease;
}

.hp-feature-section .hp-plan-card:hover {
    transform: translateY(-8px);
    border-color: #00e5ff96;
    box-shadow:
        0 0 25px rgba(0, 229, 255, 0.075),
        0 25px 45px rgba(0, 0, 0, 0.288);
}

/* TITLES */
.hp-feature-section .hp-plan-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #f0f6ff;
}

.hp-feature-section .hp-plan-best {
    font-size: 13px;
    color: #00e5ff;
    margin-bottom: 12px;
    display: inline-block;
}

/* DESCRIPTION */
.hp-feature-section .hp-plan-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #b6c3d6;
    margin-bottom: 16px;
}

/* LIST */
.hp-feature-section .hp-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex-grow: 1;
    /* pushes button down */
}

.hp-feature-section .hp-plan-card ul li {
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
    color: #d6e1f2;
}

.hp-feature-section .hp-plan-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00e5ff;
    font-size: 12px;
}

/* BUTTONS */
.hp-feature-section .hp-plan-btn {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            #00e5ff,
            #1f4fd8);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hp-feature-section .hp-plan-btn:hover {
    transform: translateY(-2px);
}

/* VIEW MORE BUTTON BELOW ALL CARDS */
.hp-feature-section .view-more-btn {
    display: inline-block;
    margin: 30px auto 0 auto;
    text-align: center;
    max-width: 200px;
    width: 100%;
}


.hp-view-more-container {
    text-align: center;
    margin-top: 40px;
}

.hp-view-more-btn {
    max-width: 220px;
    width: 100%;
    display: inline-block;
    padding: 12px 0;
    border-radius: 30px;
    background: linear-gradient(135deg, #00e5ff, #1f4fd8);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hp-view-more-btn:hover {
    transform: translateY(-2px);
}



/* RESPONSIVE */
@media (max-width: 1200px) {
    .hp-feature-section .hp-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-feature-section .hp-plan-grid {
        grid-template-columns: 1fr;
    }

    .hp-feature-section .hp-plan-card {
        text-align: center;
    }

    .hp-feature-section .hp-plan-card ul {
        text-align: left;
    }

    .hp-feature-section .hp-plan-header h2 {
        font-size: 24px;
    }

    .hp-feature-section .hp-plan-header p {
        font-size: 13px;
    }
}

/* hp-feature-section End */



/* hosting-benefits-Start */
.hosting-benefits {
    padding: 60px 0;
    background: #f9f9f9;
}

.hosting-benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    margin-top: 0px;
    color: #176CB1;
    font-weight: 700;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-subheading {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #001f3f;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefit-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #333;
}

@media(max-width: 700px) {
    .section-heading {
        text-align: center;
        padding: 20px;
        font-size: 22px;
    }
}

/* hosting-benefits-End */



/* hosting-partner-section-Start */
.hosting-partner-section {
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 per row on desktop */
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.hosting-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    /* subtle card effect */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hosting-item img {
    width: 70px;
    height: 70px;
    /* same height */
    object-fit: contain;
    /* keeps logo aspect ratio */
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.hosting-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

/* Hover effect */
.hosting-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hosting-item:hover img {
    transform: scale(1.2);
}

.hosting-item:hover p {
    color: #176CB1;
    /* highlight text color */
}

/* Responsive: 2 per row on tablets */
@media (max-width: 992px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 per row on small screens */
@media (max-width: 576px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* hosting-partner-section-End */



/* hp-cta-section-Start */

.hp-cta-section {
    background: linear-gradient(135deg, #0b1c2d, #030712);
    /* deep dark gradient */
    padding: 80px 8%;
    text-align: center;
    color: #eef4fd;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 40px 0;
}

.hp-cta-container h2 {
    font-size: 2.5rem;
    color: #00e5ff;
    /* electric/cyan blue */
    margin-bottom: 20px;
}

.hp-cta-container p {
    font-size: 16px;
    color: #b6c3d6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* CTA Buttons Container */
.hp-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* CTA Buttons Base Style */
.hp-cta-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 140px;
}

/* Individual Buttons Colors */
.hp-cta-whatsapp {
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    /* WhatsApp green */
}

.hp-cta-contact {
    background: linear-gradient(135deg, #ff9a00, #ff6a00);
    /* Amber/Orange */
}

.hp-cta-login {
    background: linear-gradient(135deg, #00e5ff, #1f4fd8);
    /* Cyan/Blue */
}

/* Hover Effects */
.hp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hp-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hp-cta-container h2 {
        font-size: 22px;
    }

    .hp-cta-container p {
        font-size: 14px;
    }
}

/* hp-cta-section-End */



/* custom-code-Start */
.custom-code {
    background-color: #FF7B00;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

.custom-code .navigator-content {
    display: flex;
    align-items: center;
    height: 90px;
    justify-content: space-between;
    gap: 20px;
}

/* Text */
.custom-code h2 {
    font-size: 28px;
    color: #ffffff;
    margin: 0;
    max-width: 65%;
}

/* Button wrapper */
.custom-code .navigator-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.custom-code .navigator-btn {
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s, background-color 0.3s;
    white-space: nowrap;
}

/* Call button */
.custom-code .call-btn {
    background-color: #0073c8;
}

.custom-code .call-btn:hover {
    background-color: #005fa3;
}

/* WhatsApp button */
.custom-code .whatsapp-btn {
    background-color: #25D366;
}

.custom-code .whatsapp-btn:hover {
    background-color: #1da851;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-code .navigator-content {
        flex-direction: column;
        text-align: center;
    }

    .custom-code h2 {
        max-width: 100%;
        font-size: 15px;
    }

    .custom-code h2 span {
        display: block;
        /* forces line break */
        margin-top: 6px;
    }

    .custom-code .navigator-actions {
        justify-content: center;
    }
}


/* custom-code-End */



/* legal-trust-section-start */
.legal-trust-section {
    padding: 80px 15px;
    background: #f9fbff;
}

.legal-trust-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.legal-trust-heading {
    text-align: center;
    margin-bottom: 40px;
}

.legal-trust-heading h2 {
    font-size: 46px;
    font-weight: 700;
    /* text-transform: lowercase; */
    color: #001f3f;
}

.legal-trust-heading p {
    font-size: 18px;
    color: #2b2b2b;
}

/* Content Box */
.legal-trust-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover Effect for Legal Content with a little pop animation */
.legal-trust-content:hover {
    animation: pop 0.45s ease forwards;
}

/* Pop animation keyframes */
@keyframes pop {
    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    }

    100% {
        transform: translateY(-5px) scale(1.002);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
    }
}


/* Meta */
.legal-meta p {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 6px;
}

/* Sections */
.legal-section {
    margin-top: 25px;
}

.legal-section h3 {
    font-size: 1.05rem;
    color: #176CB1;
    margin-bottom: 8px;
}

.legal-section p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.6;
}

/* Footer */
.legal-footer {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #e0e6f1;
}

.legal-footer p {
    font-size: 0.9rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-trust-content {
        padding: 25px;
    }

    .legal-trust-heading h2 {
        font-size: 1.35rem;
    }

    .legal-trust-heading p {
        font-size: 12px;
    }
}

/* legal-trust-section-end */



/* faq-section-start */
.faq-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #045092;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #555;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #176CB1;
    background: #f0f5fb;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.3rem;
    transition: transform 0.35s ease, color 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

/* Answer Animation */
.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, padding 0.35s ease;
    background-color: #fff;
}

.faq-answer p {
    margin: 15px 0;
    color: #333;
    line-height: 1.7;
}

/* Active toggle with slide + fade animation */
.faq-item.active .faq-answer {
    max-height: 500px;
    /* adjust based on content */
    padding: 15px 25px 20px 25px;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 12px 20px 18px 20px;
    }
}


.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #176CB1, #00aaff);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(23, 108, 177, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.faq-cta-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq-cta-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.faq-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(23, 108, 177, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-cta p {
        font-size: 1.2rem;
    }

    .faq-cta-link {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .faq-cta-buttons {
        gap: 10px;
    }
}

/* faq-section-end */



/* support-help-section-start */
.support-help-section {
    background: #f8fbff;
    padding: 80px 20px;
}

.support-help-section .support-container {
    max-width: 1200px;
    margin: auto;
}

/* ---------- Header ---------- */
.support-help-section .support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-help-section .support-header h2 {
    font-size: 46px;
    font-weight: 700;
    color: #001f3f;
}

.support-help-section .support-header p {
    font-size: 16px;
    color: #555;
    max-width: 650px;
    margin: 10px auto 0;
}

/* ---------- GRID (3 + 2 CENTERED) ---------- */
.support-help-section .support-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* virtual columns */
    gap: 25px;
}

/* First row (3 cards) */
.support-help-section .support-grid .support-card:nth-child(1),
.support-help-section .support-grid .support-card:nth-child(2),
.support-help-section .support-grid .support-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row (2 cards centered) */
.support-help-section .support-grid .support-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.support-help-section .support-grid .support-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* ---------- Card ---------- */
.support-help-section .support-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-help-section .support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #176CB1, #00d4ff);
    opacity: 0;
    transition: 0.4s ease;
    z-index: 0;
}

.support-help-section .support-card:hover::before {
    opacity: 1;
}

.support-help-section .support-card * {
    position: relative;
    z-index: 1;
}

/* ---------- Icon ---------- */
.support-help-section .support-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(23, 108, 177, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.support-help-section .support-icon i {
    font-size: 28px;
    color: #176CB1;
}

/* ---------- Text ---------- */
.support-help-section .support-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 10px;
}

.support-help-section .support-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

/* ---------- Hover ---------- */
.support-help-section .support-card:hover {
    transform: translateY(-10px);
}

.support-help-section .support-card:hover h3,
.support-help-section .support-card:hover p {
    color: #ffffff;
}

.support-help-section .support-card:hover .support-icon {
    background: rgba(255, 255, 255, 0.25);
}

.support-help-section .support-card:hover .support-icon i {
    color: #ffffff;
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {
    .support-help-section .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-help-section .support-grid .support-card {
        grid-column: auto !important;
    }

    .support-help-section .support-header h2 {
        font-size: 30px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 576px) {
    .support-help-section .support-grid {
        grid-template-columns: 1fr;
    }

    .support-help-section .support-header h2 {
        font-size: 26px;
    }
}

/* support-help-section-end */



/* all-support-section-start */
.all-support-section {
    padding: 80px 20px;
    background: #f0f8ff;
    font-family: 'Poppins', sans-serif;

}

.all-support-wrapper {
    max-width: 700px;
    margin: auto;
}

.all-support-header {
    text-align: center;
    margin-bottom: 60px;
}

.all-support-header h2 {
    font-size: 2.5rem;
    color: #176CB1;
    font-weight: 700;
    margin-bottom: 10px;
}

.all-support-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Timeline Container */
.timeline-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
}

/* Vertical line */
.timeline-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #176CB1, #00aaff);
    border-radius: 2px;
}

/* Single Timeline Step */
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* Step Number Circle */
.timeline-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: #176CB1;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Timeline Content Box */
.timeline-content {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #176CB1;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    /* Aligns text to the top of the icon */
    gap: 15px;
    /* Space between icon and text */
}

.timeline-icon {
    font-size: 30px;
    /* Adjust icon size */
    color: #176CB1;
    /* Example icon color */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.timeline-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.timeline-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-steps::before {
        left: 39px;
    }

    .timeline-step {
        gap: 15px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .all-support-header p {
        font-size: 14px;

    }

    .all-support-header h2 {
        font-size: 26px;

    }

    .timeline-content {
        padding: 15px 18px;
    }
}

/* all-support-section-end */

/* Hosting Comparison Section */
.hosting-comparison-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.hosting-comparison-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-timeline-text h3 {
    font-size: 26px;
    text-align: center;
    color: #000;
    font-weight: 600;
}

.hosting-timeline-text p {
    font-size: 18px;
    color: #044F91;
}

.hosting-comparison-header h2 {
    font-size: 2.5rem;
    color: #176CB1;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.hosting-comparison-header p {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.hosting-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hosting-timeline-step {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hosting-timeline-number {
    font-size: 24px;
    font-weight: bold;
    color: #176CB1;
    margin-bottom: 15px;
}

.hosting-timeline-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hosting-timeline-icon {
    font-size: 36px;
    color: #176CB1;
    margin-bottom: 10px;
}

.hosting-timeline-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.hosting-table-wrapper {
    overflow-x: auto;
}

.hosting-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.hosting-comparison-table th,
.hosting-comparison-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.hosting-comparison-table th {
    background-color: #176CB1;
    color: #fff;
    text-align: left;
}

.hosting-comparison-table td {
    background-color: #fff;
    color: #333;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .hosting-comparison-header h2 {
        font-size: 24px;
    }

    .hosting-timeline-step {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .hosting-comparison-header h2 {
        font-size: 22px;
    }

    .hosting-timeline-step {
        padding: 10px;
    }

    .hosting-timeline-icon {
        font-size: 28px;
    }

    .hosting-timeline-text p {
        font-size: 16px;
        color: #044F91;
    }
}

@media screen and (max-width: 480px) {
    .hosting-comparison-header h2 {
        font-size: 20px;
    }

    .hosting-comparison-header p {
        font-size: 14px;
    }

    .hosting-comparison-table th,
    .hosting-comparison-table td {
        padding: 8px;
        font-size: 12px;
    }

    .hosting-timeline-text p {
        font-size: 12 px;
        color: #044F91;
    }
}







/* SitePad Section-start */
.sitepad-section {
    padding: 60px 20px;
    background: #ececec;
}

.sitepad-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.sitepad-image {
    flex: 1 1 300px;
    overflow: hidden;
    /* ensures scaling doesn't overflow */
    border-radius: 12px;
}

.sitepad-image img {
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Effect */
.sitepad-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sitepad-content {
    flex: 1 1 400px;
}

.sitepad-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #003874;
    font-weight: 600;
}

.sitepad-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #1f1f1f;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .sitepad-container {
        flex-direction: row;
        text-align: center;
    }


    .sitepad-content h2 {
        font-size: 20px;
    }

    .sitepad-content p {
        font-size: 12px;
        text-align: left;
    }
}

/* SitePad Section-end */

/* SitePad Key Features Section-start */

.features-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.features-section .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.features-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.features-section .section-desc {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 40px;
}

/* Feature List Grid */
.features-section .feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Feature Card */
.features-section .feature {
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

/* Feature Icon */
.features-section .feature .icon {
    font-size: 36px;
    color: #176CB1;
    /* Blue accent color */
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Card Hover Effect */
.features-section .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.features-section .feature:hover .icon {
    transform: scale(1.2);
    color: #00d4ff;
    /* Hover icon color */
}

.features-section .feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #055193;
    font-weight: 600;
}

.features-section .feature p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    .features-section .feature-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .features-section .section-title {
        font-size: 22px;
    }

    .features-section .section-desc {
        font-size: 12px;
    }

    .features-section .feature h3 {
        font-size: 16px;
    }

    .features-section .feature p {
        font-size: 12px;
    }
}

/* SitePad Key Features Section-end */



/* ===== SitePad Info Section Start===== */

.info-section {
    padding: 60px 20px;
    background-color: #f0f4f8;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-section .title {
    font-size: 36px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-section .subtitle {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 50px;
}

/* Info Cards Grid */
.info-section .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Individual Card */
.info-section .card {
    background: linear-gradient(135deg, #ffffff, #e0f7ff);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.info-section .card .icon {
    font-size: 40px;
    color: #176CB1;
    background-color: #ffffff;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.info-section .card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
    font-weight: 600;
}

.info-section .card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

/* Hover Effects */
.info-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
}

.info-section .card:hover .icon {
    transform: scale(1.2);
    color: #00d4ff;
    background-color: #176CB1;
}

/* Responsive */
@media (max-width: 768px) {
    .info-section .title {
        font-size: 18px;
    }

    .info-section .subtitle {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .info-section .card h3 {
        font-size: 18px;
    }

    .info-section .card p {
        font-size: 12px;
    }
}

/* ===== SitePad Info Section End===== */


/*  Pricing Section Start */
.pricing-section {
    padding: 60px 20px;
    background-color: #f0f4f8;
}

.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-wrapper .title {
    font-size: 36px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-wrapper .subtitle {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 50px;
}

/* Pricing Cards Grid */
.pricing-wrapper .pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Pricing Card */
.pricing-wrapper .card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.pricing-wrapper .card.popular {
    border: 2px solid #176CB1;
}

/* Badge */
.pricing-wrapper .card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #176CB1;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Plan & Price */
.pricing-wrapper .card .plan {
    font-size: 18px;
    font-weight: 600;
    color: #176CB1;
    margin-bottom: 15px;
}

.pricing-wrapper .card .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.pricing-wrapper .card .price span {
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
}

/* Features List */
.pricing-wrapper .card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-wrapper .card .features li {
    font-size: 14px;
    color: #000000;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-wrapper .card .features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Button */
.pricing-wrapper .card .btn {
    display: inline-block;
    background-color: #176CB1;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pricing-wrapper .card .btn:hover {
    background-color: #00d4ff;
    transform: translateY(-3px);
}

/* Hover Card Effect */
.pricing-wrapper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-wrapper .pricing-cards {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-wrapper .title {
        font-size: 20px;
    }

    .pricing-wrapper .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .pricing-wrapper .card {
        width: 100%;
        max-width: 350px;
    }
}

/*  Pricing Section End */


/* blog-section-Start */
.starserver-blog-section {
    padding: 60px 20px;
    background: #f6f9fc;
    font-family: Arial, sans-serif;
}

/* Container */
.starserver-blog-container {
    max-width: 1100px;
    margin: auto;
}

/* Title */
.starserver-blog-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1366AA;
    font-weight: 700;
}

/* Grid */
.starserver-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.starserver-blog-card {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    /* stack content */
}

/* Animated background */
.starserver-blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #176CB1, #FF7B00, #176CB1);
    opacity: 0.08;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.starserver-blog-card:hover::before {
    transform: translateX(0);
}

.starserver-blog-card:hover {
    transform: translateY(-8px);
}

/* Card Content */
.starserver-blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #176CB1;
}

.starserver-blog-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* BUTTON FIX: push to bottom without stretching card */
.starserver-blog-btn {
    display: inline-block;
    margin-top: 20px;
    /* avoid using auto if in flex with column */
    background-color: #176CB1;
    color: #fff;
    margin-top: auto;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    width: 130px;
    white-space: nowrap;
    transition: background 0.3s;
    position: relative;
    /* make clickable */
    z-index: 10;
    cursor: pointer;
}

.starserver-blog-btn:hover {
    background-color: #0f4e84;
}


/* Responsive */
@media (max-width: 991px) {
    .starserver-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .starserver-blog-grid {
        grid-template-columns: 1fr;
    }

    .starserver-blog-title {
        font-size: 30px;
    }

    .starserver-blog-card h3 {
        font-size: 16px;
    }

    .starserver-blog-card p {
        font-size: 14px;

    }
}

/* blog-section-End */



/* inner-blog-page-start */
.inner-blog-page {
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.inner-blog-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Title */
.blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a293e;
    margin-bottom: 40px;
}

/* Intro Section Flex */
.blog-intro-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    background-color: #e6f0fb69;
    /* light blue background */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.blog-intro-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background-color: #d0e2fa18;
    /* slightly darker on hover */
}


.blog-intro-image {
    flex: 1 1 100px;
}

.blog-intro-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.blog-intro-image img:hover {
    transform: scale(1.05);
}

.blog-intro-content {
    flex: 2 1 100px;
    display: flex;
    align-items: center;
    /* vertical center */
}

.blog-intro-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* Subtitles */
.blog-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #0D3B66;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
}

.blog-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #176CB1;
    margin-top: 5px;
    border-radius: 2px;
    transition: width 0.3s ease;
}


/* Lists and Paragraphs */
.inner-blog-page p,
.inner-blog-page ul {
    font-size: 14px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.inner-blog-page ul {
    padding-left: 20px;
    list-style-type: disc;

}

.inner-blog-page ul li {
    position: relative;
    padding-left: 30px;
    /* space for the icon */
    margin-bottom: 10px;
}

.inner-blog-page ul li::before {
    content: "◉";
    /* Unicode checkmark icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    /* icon color */
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
}


/* CTA */
.blog-cta {
    font-size: 22px;
    color: #176CB1;
    font-weight: 600;
    margin-top: 30px;
    text-align: center;
}


.ready-website {
    background-color: #f0f8ff;
    /* light blue background */
    padding: 15px;
    color: #00115a;
    font-weight: 700;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ready-website:hover {
    background-color: #cce7ff;
    /* darker blue on hover */
    transform: translateY(-3px);
}


/* Responsive */
@media (max-width: 768px) {
    .blog-intro-section {
        flex-direction: column;
    }

    .blog-intro-content {
        align-items: flex-start;
    }

    .blog-intro-image img {
        height: 150px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .inner-blog-page p,
    .inner-blog-page ul {
        font-size: 12px;
    }
}

/* inner-blog-page-End */









/* contact-support-section-start */
.contact-split-section {
    padding: 80px 15px;
    background: #f6f9ff;
}

/* ================= SECTION HEADING ================= */
.contact-section-heading {
    margin: 0 auto 45px;
    text-align: center;
}

.contact-section-heading h2 {
    font-size: 50px;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-section-heading p {
    font-size: 0.95rem;
    color: #555;
    max-width: 650px;
    margin: 0 auto;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
    .contact-section-heading {
        margin-bottom: 35px;
    }

    .contact-section-heading h2 {
        font-size: 1.75rem;
    }

    .contact-section-heading p {
        font-size: 0.9rem;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .contact-section-heading {
        margin-bottom: 28px;
    }

    .contact-section-heading h2 {
        font-size: 1.45rem;
    }

    .contact-section-heading p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ================= WRAPPER ================= */
.contact-split-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ================= LEFT SIDE ================= */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
}

.support-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    animation: pulseIcon 2s infinite;
}

.support-icon.whatsapp {
    background: #25d366;
}

.support-icon.email {
    background: #176CB1;
}

.support-icon.ticket {
    background: #ff9800;
}

@keyframes pulseIcon {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.support-text strong {
    display: block;
    font-size: 1.05rem;
    color: #001f3f;
}

.support-text p {
    font-size: 0.9rem;
    margin-top: 4px;
    color: #555;
}

.support-btn {
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.support-btn.whatsapp {
    background: #25d366;
}

.support-btn.email {
    background: #176CB1;
}

.support-btn.ticket {
    background: #ff9800;
}

/* ================= RIGHT SIDE FORM ================= */
.contact-right {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-right h3 {
    margin-bottom: 8px;
    color: #001f3f;
}

.contact-right p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

/* ================= FORM ================= */
.contact-form .form-group {
    margin-bottom: 15px;
}

/* Inputs, Selects, Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    outline: none;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #176CB1;
}

/* ================= CONSENT ================= */
.contact-form .consent-group {
    font-size: 0.85rem;
    color: #555;
}

.contact-form .consent-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form .consent-group input {
    width: auto;
}

.contact-form .consent-group a {
    color: #176CB1;
    font-weight: 600;
    text-decoration: none;
}

.contact-form .consent-group a:hover {
    text-decoration: underline;
}

/* ================= SUBMIT BUTTON ================= */
.form-submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #176CB1;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit-btn:hover {
    background: #0f4f8a;
}

/* ================= TRUST INFO ================= */
.form-trust-info {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #444;
}

.form-trust-info p {
    margin: 6px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .contact-split-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-right {
        padding: 28px;
    }
}

/* contact-support-section-end */


/* ================= FORM POPUP ================= */
.form-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.form-popup-overlay.active {
    display: flex;
}

.form-popup-box {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: popupScale 0.35s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.form-popup-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.form-popup-icon.success {
    background: linear-gradient(135deg, #28a745, #5cd68d);
}

.form-popup-icon.error {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
}

.form-popup-box h3 {
    margin-bottom: 8px;
    color: #001f3f;
    font-size: 1.3rem;
}

.form-popup-box p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 18px;
}

.popup-close-btn {
    background: #176CB1;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-close-btn:hover {
    background: #0f4f8a;
}









/* Footer-start */
.main-footer {
    background-color: #00050a;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* ===== GRID ===== */
.footer-main-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin-bottom: 40px;
}


.footer-col {
    padding: 0 25px;
    position: relative;
}

/* ===== VERTICAL DIVIDER ===== */
.footer-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 1px;
    height: 90%;
    background: rgba(255, 255, 255, 0.555);
}

/* ===== BRAND ===== */
.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.brand-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== SOCIAL ===== */
.footer-socials {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.footer-socials a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #176CB1;
}

/* ===== TITLES ===== */
.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-title i {
    margin-right: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}


/* ===== LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-links i {
    font-size: 12px;
    color: #ffffff;
}

.footer-links a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #176CB1;
    padding-left: 4px;
}

/* ===== CONTACT ===== */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-list i {
    color: #ffffff;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    /* background: rgba(255, 255, 255, 0.781); */
    background-color: #167DE2;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #ffffff;
    margin: auto;
}

.footer-bottom a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .footer-main-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-col::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-main-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        border-radius: 15px;
    }

    .footer-bottom .copyright-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 10px; */
        text-align: center;
    }

    .footer-bottom a {
        margin-left: 0;
        /* remove desktop spacing */
    }

}

@media (max-width: 480px) {
    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* Footer-end */

/* ===============================
   ANIMATED BACK TO TOP BUTTON
   =============================== */

#et-top-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f4a100, #ff7b00);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

/* Show button */
#et-top-btn.et-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Arrow */
.et-top-arrow {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover lift + glow */
#et-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(244, 161, 0, 0.45);
}

/* Arrow bounce on hover */
#et-top-btn:hover .et-top-arrow {
    transform: translateY(-4px);
}

/* Pulse ring animation */
#et-top-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(1);
}

#et-top-btn:hover::before {
    animation: et-top-pulse 0.9s ease-out;
}

@keyframes et-top-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

/* Floating idle animation */
#et-top-btn.et-show {
    animation: et-top-float 3s ease-in-out infinite;
}

@keyframes et-top-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    #et-top-btn {
        width: 44px;
        height: 44px;
        right: 15px;
        bottom: 15px;
    }

    .et-top-arrow {
        font-size: 18px;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    right: 25px;
    /* slightly off-screen */
    bottom: 90px;
    /* ABOVE back-to-top button */
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    /* below top button if needed */
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-float:hover {
    /* slide fully into view */
    transform: scale(1.08);
    color: #ffffff;
}

/* Mobile adjustment */
@media (max-width: 480px) {
    .whatsapp-float {
        right: 15px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* ===== Call Floating Button ===== */
.call-float {
    position: fixed;
    left: 12px;
    /* slightly off-screen */
    bottom: 90px;
    /* balanced with other buttons */
    width: 52px;
    height: 52px;
    background: #1D56DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 9997;
    transition: all 0.3s ease;
}

/* Hover / Tap effect */
.call-float:hover {
    left: 25px;
    transform: scale(1.08);
    color: #ffffff;
}

/* Hide on Desktop */
@media (min-width: 992px) {
    .call-float {
        display: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .call-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 80px;
    }
}
/* --------------------------------------------------------- */
/* single domian plan */
/* Form Wrapper */
.form_top{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 15px;
}

/* Main Form Box */
.order-form{
    width: 100%;
    max-width: 520px;
    background: linear-gradient(145deg, #0b0f1a, #0e1424);
    padding: 30px 28px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.08);
    border: 1px solid rgba(255, 179, 0, 0.15);
    font-family: 'Segoe UI', sans-serif;
}

/* Title */
.order-form h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
    color: #ffb300;
    letter-spacing: 0.5px;
}

/* Form Group */
.order-form .form-group{
    margin-bottom: 16px;
}

/* Labels */
.order-form .form-group label{
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    color: #cfd3ff;
}

/* Inputs, Select, Textarea */
.order-form input,
.order-form textarea,
.order-form select{
    width: 100%;
    padding: 11px 12px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #0a0f1f;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

/* Placeholder */
.order-form input::placeholder,
.order-form textarea::placeholder{
    color: #9aa0c7;
}

/* Focus Effect */
.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus{
    border-color: #ffb300;
    box-shadow: 0 0 0 2px rgba(255,179,0,0.15);
    background: #0c1224;
}

/* Select Arrow Fix */
.order-form select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: 
        linear-gradient(45deg, transparent 50%, #ffb300 50%),
        linear-gradient(135deg, #ffb300 50%, transparent 50%);
    background-position: 
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

/* Button */
.order-form button{
    width: 100%;
    margin-top: 10px;
    padding: 13px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    color: #000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

/* Button Hover */
.order-form button:hover{
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255,179,0,0.35);
}

/* Mobile Responsive */
@media (max-width: 480px){
    .order-form{
        padding: 22px 18px;
    }

    .order-form h3{
        font-size: 20px;
    }
}
