body {

 font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f8f9fc;
	 overflow-x: hidden;
    width: 100%;
}

a{
	    text-decoration: none;
		color:#000;
}

section,
.katcloud-hero,
.builder-section,
.mumbai-section,
.wp-section-new,
.installer-section,
.lux-dev-section,
.why-best-section {
    overflow: hidden;
}


* {
    box-sizing: border-box;
}
/* Desktop Hover Dropdown */
@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .navbar .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ==============================
   Premium Navbar
================================*/
.custom-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: 0.3s ease;
}

/* Logo */
.navbar-brand {
    font-size: 22px;
}

/* Nav Links */
.nav-link {
    font-weight: 500;
    margin-right: 18px;
    position: relative;
    transition: 0.3s;
}

/* Hover Underline Animation */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #ff6600;
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ff6600 !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f1f5ff;
    color: #0d6efd;
}

/* Client Button */
.btn-primary {
    box-shadow: 0 5px 15px rgba(13,110,253,0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* ===============================
   PREMIUM MOBILE SIDEBAR FIX
=================================*/

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100vh;
    background: #ffffff; /* Fully solid white */
    padding: 30px 25px;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(.77,0,.18,1);
    z-index: 2000; /* Higher than navbar */
    overflow-y: auto;
}

/* When Active */
.mobile-menu.active {
    transform: translateX(0);
}

/* Fix navbar stacking */
.custom-navbar {
    z-index: 1500;
}

/* Menu Items */
.mobile-menu ul {
    padding-left: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    color: #222;
    padding: 10px 0;
    transition: 0.3s ease;
}

.mobile-menu ul li a i {
    width: 22px;
    color: #0d6efd;
}

/* Hover Effect */
.mobile-menu ul li a:hover {
    color: #0d6efd;
    padding-left: 8px;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1900;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent scroll */
body.menu-open {
    overflow: hidden;
}

/* ===============================
   PREMIUM ANIMATED MENU BUTTON
=================================*/

.menu-btn {
    width: 42px;
    height: 42px;
    position: relative;
    border: none;
    background: #f8f9fc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

/* Hover background */
.menu-btn:hover {
    background: #e9f1ff;
    box-shadow: 0 5px 15px rgba(13,110,253,0.2);
}

/* Lines */
.menu-btn span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(.77,0,.18,1);
}

/* Positioning */
.menu-btn span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-btn span:nth-child(2) {
    transform: translateY(0);
}

.menu-btn span:nth-child(3) {
    transform: translateY(6px);
}

/* ACTIVE → Morph to X */
.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}



.katcloud-hero {
    min-height: 100vh;
    background: linear-gradient(90deg, #fff3eb 0%, #ffe7cf 50%, #f5af7c 100%);
    display: flex;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
}

.highlight-text {
    color: #ff6a00;
}

.hero-desc {
    margin-top: 20px;
    color: #666;
    font-size: 18px;
    max-width: 520px;
}



.hero-features {
    margin-top: 20px;
    font-weight: 500;
    color: #444;
}

.feature-item i {
    margin-right: 8px;
}

.text-orange {
    color: #ff6a00;
}

.hero-btn {
    background: #222;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
}

/* RIGHT SIDE CARDS */

.analytics-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 40px;
    position: relative;
}

.bars {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    height: 150px;
}

.bar {
    width: 60px;
    border-radius: 12px;
}

.light { height: 60px; background: #e8cfc0; }
.mid { height: 90px; background: #e9a97a; }
.soft { height: 70px; background: #f2994a; }
.orange { height: 120px; background: #ff6a00; }

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.top-card {
    top: -30px;
    right: 20px;
}

.bottom-card {
    bottom: -40px;
    left: 40px;
}

.hero-right {
    position: relative;
}

.server-card {
      width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(18px);
    border-radius: 25px;
    padding: 85px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    animation: floatCard 6s ease-in-out infinite;
}

.server-header {
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.server-body p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Floating Animation */
@keyframes floatCard {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.whatsapp-button {
	position: fixed;
	bottom: 15px;
	right: 15px;
	left: 15px;
	z-index: 99;
	background-color: #4fce5d;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	width: 50px;
	height: 50px;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-shadow: 0 0 25px -6px #000;
	-moz-box-shadow: 0 0 25px -6px #000;
	box-shadow: 0 0 25px -6px #000;
	animation: effect 5s infinite ease-in
}

@keyframes effect {

	100%,
	20% {
		width: 60px;
		height: 60px;
		font-size: 40px
	}

	0%,
	10% {
		width: 60px;
		height: 60px;
		font-size: 35px
	}

	5% {
		width: 50px;
		height: 50px;
		font-size: 30px
	}
}
/* Tech Badges */
.tech-badge {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ff6a00;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    animation: floatBadge 5s ease-in-out infinite;
}

.badge1 { top: -20px; left: 20px; }
.badge2 {
    top: -3%;
    right: 9px;
    animation-delay: 1s;
}
.badge3 { bottom: -20px; left: 40px; animation-delay: 2s; }
.badge4 { bottom: 20%; right: 30px; animation-delay: 3s; }

@keyframes floatBadge {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}


/* CLOUD SHAPES */
.cloud-shape {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, #ffffffaa, #ffffff33);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    animation: floatCloud 18s infinite alternate ease-in-out;
}
.katcloud-hero {
    position: relative;
    overflow: hidden;
}

.cloud1 {
    width: 300px;
    height: 300px;
    top: -50px;
   
}

.cloud2 {
    width: 250px;
    height: 250px;
    bottom: -60px;

    animation-delay: 4s;
}
@media (max-width: 768px) {
    .cloud1,
    .cloud2,
    .cloud3 {
        display: none;
    }
}

.cloud3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes floatCloud {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px,40px); }
}

/* Progress Bar */
.deploy-progress {
    width: 100%;
    height: 8px;
    background: #eaeaea;
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6a00, #ff9a3c);
    border-radius: 20px;
    transition: width 0.3s ease;
}

.deploy-status {
    font-size: 14px;
    color: #666;
}


/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 991px) {

    .katcloud-hero {
        min-height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
        gap: 15px;
    }

    .hero-btn {
        padding: 12px 26px;
        font-size: 15px;
    }

    /* Right side spacing */
    .hero-right {
        margin-top: 50px;
    }

    /* Server card responsive */
    .server-card {
        width: 100%;
        max-width: 350px;
        padding: 20px;
    }

    /* Hide floating badges on small screens */
    .tech-badge {
        display: none;
    }
}


/* Extra Small Devices */
@media (max-width: 576px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .server-card {
        max-width: 100%;
    }

}


/* ===== HERO BACKGROUND PAW EFFECT ===== */
.paw-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.03;
    top: 0;
    left: 0;
    z-index: 0;
}

/* ===== Kat Mascot Floating ===== */
.kat-mascot {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 80px;
    animation: floatKat 4s ease-in-out infinite;
    z-index: 2;
}

.kat-mascot img {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Floating Animation */
@keyframes floatKat {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Typing Cursor Animation */
.typing-dot {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,50%,100% { opacity: 1; }
    25%,75% { opacity: 0; }
}

/* Optional subtle paw floating effect */
.hero-right::after {
    content: "🐾";
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 30px;
    opacity: 0.08;
    animation: pawMove 8s linear infinite;
}

@keyframes pawMove {
    0% { transform: translateY(0px); }
    50% { transform: translateY(40px); }
    100% { transform: translateY(0px); }
}

/* Typing Cursor */
.typing-cursor {
    animation: blink 1s infinite;
    font-weight: 700;
}

@keyframes blink {
    0%,50%,100% { opacity: 1; }
    25%,75% { opacity: 0; }
}


.tech-slider-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;

    /* Soft premium gradient */
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.4), 
        rgba(255,140,0,0.25)
    );
}

/* Glass wrapper */
.tech-slider-wrapper {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.35);
    border-radius: 60px;
    padding: 20px 0;
    border: 1px solid rgba(255,255,255,0.4);
    overflow: hidden;
}

/* Slider container */
.tech-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slideLeft 25s linear infinite;
}

/* Individual item */
.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 28px;
    border-radius: 50px;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);

    font-weight: 600;
    font-size: 16px;
    color: #333;

    transition: 0.3s ease;
    white-space: nowrap;
}

/* Icon style */
.tech-item i {
    font-size: 20px;
    color: #ff6b00;
}

/* Hover effect */
.tech-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Sliding animation */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tech-item {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* SECTION */
.domain-section {
    padding: 80px 20px;
    background: linear-gradient(135deg,#f3ede7 0%,#f2e6dc 40%,#f7b58f 100%);
}

/* MAIN BOX */
.domain-box {
    max-width: 1000px;
    margin: auto;
    padding: 60px;
    text-align: center;
    border-radius: 30px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* TITLE */
.domain-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
}

/* SEARCH FORM */
.domain-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 60px;
    padding: 8px;
    margin-bottom: 35px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.domain-search:focus-within {
    border: 2px solid #ff6200;
    box-shadow: 0 0 15px rgba(255,98,0,0.3);
}

/* INPUT WRAPPER */
.input-wrapper {
    flex: 1;
    position: relative;
}

/* INPUT */
.domain-search input {
    width: 100%;
    border: none;
    outline: none;
    padding: 18px 20px;
    font-size: 17px;
    border-radius: 60px;
    background: transparent;
}

/* BUTTON */
.gradient-btn {
    white-space: nowrap;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;

    background: linear-gradient(270deg,#ff6200,#ff8c42,#ff6200);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0% { background-position:0% 50%; }
    50% { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}

/* SUGGESTIONS */
.suggestions-box {
    position: absolute;
    width: 100%;
    top: 110%;
    left: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 999;
}

/* TLD PILLS */
.tld-prices {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tld-pill {
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,98,0,0.2);
    font-weight: 600;
}

/* ================================= */
/* 📱 MOBILE RESPONSIVE SECTION */
/* ================================= */

@media (max-width: 768px) {

    .domain-box {
        padding: 30px 20px;
    }

    .domain-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .domain-search {
        flex-direction: column;
        border-radius: 25px;
        padding: 15px;
        gap: 15px;
    }

    .domain-search input {
        padding: 16px;
        font-size: 16px;
    }

    .gradient-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    .suggestions-box {
        position: relative;
        top: 10px;
        border-radius: 12px;
    }

    .tld-prices {
        gap: 10px;
    }

    .tld-pill {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* Suggestion Item */
.suggestion-item {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 10px;
}

/* Available Style */
.suggestion-item.available {
    background: rgba(40, 167, 69, 0.08);
}

.suggestion-item.available .status {
    background: #28a745;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* Taken Style */
.suggestion-item.taken {
    background: rgba(220, 53, 69, 0.08);
}

.suggestion-item.taken .status {
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}


.pricing-section{
    padding:80px 20px;
    text-align:center;
}

.section-title{
    font-size:36px;
    font-weight:800;
    margin-bottom:30px;
}

.country-switch{
    display:inline-flex;
    background:white;
    padding:6px;
    border-radius:40px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    margin-bottom:40px;
}

.country-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border:none;
    background:transparent;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
    color:#555;
}

.country-btn .fi{
    width:20px;
    height:15px;
    border-radius:3px;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.country-btn.active{
    background:#ff5a00;
    color:white;
}

.country-btn.active .fi{
    box-shadow:none;
}

.resource-card{
    position:relative;
    padding:25px;
    border-radius:22px;
    margin:25px 0;
    text-align:left;

    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.7);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.9);

    transition:0.4s ease;
    overflow:hidden;
}

/* 🔥 Animated Glow Border */
.resource-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:24px;
    padding:2px;
    background:linear-gradient(
        120deg,
        #ff5a00,
        #ff8a00,
        #ff5a00
    );
    background-size:200% 200%;
    animation:glowBorder 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events:none;
}

@keyframes glowBorder{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* Header */
.resource-header{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    color:#777;
    margin-bottom:20px;
}

.resource-header i{
    color:#ff5a00;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
}


.cpu-fill {
    background: #ff6a00;
}

.ram-fill {
    background: #0d6efd;
}



/* Grid */
.resource-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 25px;
    font-size:14px;
    margin-top:10px;
    color:#333;
}

/* Divider */
.divider{
    height:1px;
    margin:20px 0;
    background:linear-gradient(to right, transparent, rgba(0,0,0,0.2), transparent);
}

/* Capacity */
.capacity{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    font-size:15px;
    color:#ff5a00;
}

/* RIGHT SECTION WRAPPER */
.hero-right {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* CLOUD DESIGN */
.cloud {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(1px);
    animation: floatCloud 8s infinite ease-in-out;
}

.cloud:before,
.cloud:after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 50%;
}

/* Cloud Variations */
.cloud-1 {
    width: 120px;
    height: 60px;
    top: 40px;
    left: 50px;
}

.cloud-1:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 10px;
}

.cloud-1:after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 10px;
}

.cloud-2 {
    width: 100px;
    height: 50px;
    bottom: 60px;
    right: 40px;
    animation-delay: 2s;
}

.cloud-3 {
    width: 80px;
    height: 40px;
    top: 120px;
    right: 80px;
    animation-delay: 4s;
}

/* FLOAT ANIMATION */
@keyframes floatCloud {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* TERMINAL BOX */
.terminal-box {
    width: 380px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    animation: floatTerminal 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatTerminal {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* TERMINAL HEADER */
.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.7;
}

/* TERMINAL BODY */
.terminal-body p {
    font-family: monospace;
    font-size: 14px;
    margin: 5px 0;
}

.green {
    color: #00ff9d;
}

/* TECH ICONS */
.tech-icons {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    font-size: 28px;
}

.tech-icons i {
    transition: 0.3s ease;
    animation: floatIcons 4s infinite ease-in-out;
}

.python { color: #3776AB; }
.node { color: #68A063; }
.litespeed { color: #ff4d00; }
.cpanel { color: #ff6c2c; }

@keyframes floatIcons {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.tech-icons i:hover {
    transform: scale(1.2);
}


.pricing-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.plan-card{
    background:white;
    padding:35px;
    border-radius:20px;
    width:360px;  
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}


.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-bottom:5px;
}

#orprice .price{
    font-size:48px;
    font-weight:800;
    color:#ff5a00;
}

.price span{
    font-size:16px;
    font-weight:500;
    color:#666;
}

.billing{
    color:#777;
    margin-bottom:20px;
}

.features{
    text-align:left;
    margin-bottom:25px;
}

.features p{
    margin-bottom:10px;
    color:#444;
}

.features i{
    color:#ff5a00;
    margin-right:8px;
}

.order-btn{
    padding:12px 25px;
    border:2px solid #ff5a00;
    background:transparent;
    color:#ff5a00;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.order-btn:hover{
    background:#ff5a00;
    color:white;
}

.popular{
    border:2px solid #ff5a00;
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff5a00;
    color:white;
    padding:5px 15px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

@media(max-width:768px){
    .pricing-container{
        flex-direction:column;
        align-items:center;
    }
	.plan-card{
    background:white;
    padding:35px;
    border-radius:20px;
    width:320px;  
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}
}



.builder-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f4f1 0%, #fde8dc 100%);
  overflow: hidden;
}

/* =========================
   LEFT CARD
========================= */

.builder-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  padding: 20px;
  transform: perspective(1000px) rotateY(-6deg);
  transition: 0.4s ease;
  position: relative;
}

.builder-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.browser-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.browser-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.builder-content {
  display: flex;
}

.sidebar {
  width: 60px;
}

.side-item {
  height: 50px;
  background: #f3f3f3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.canvas {
  flex: 1;
  padding-left: 20px;
  position: relative;
  height: 260px;
}

.text-line {
  height: 12px;
  background: #ddd;
  border-radius: 6px;
  margin-bottom: 10px;
}

.text-line.small {
  width: 70%;
}

/* =========================
   DRAG ELEMENT
========================= */

.drag-box {
  width: 140px;
  height: 70px;
  background: linear-gradient(135deg, #ff6a00, #ff914d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  cursor: grab;
  position: absolute;
  top: 90px;
  left: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
  box-shadow: 0 15px 30px rgba(255,106,0,0.35);
  animation: floatBox 3s ease-in-out infinite;
}

.drag-box.dragging {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(255,106,0,0.6);
}

/* =========================
   DROP ZONE
========================= */

.drop-zone {
  width: 180px;
  height: 90px;
  border: 2px dashed #ff6a00;
  border-radius: 14px;
  position: absolute;
  top: 170px;
  left: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6a00;
  font-weight: 600;
  transition: 0.3s ease;
}

.drop-zone.active {
  background: rgba(255,106,0,0.1);
  transform: scale(1.05);
  border-style: solid;
}

.drop-zone.success {
  background: linear-gradient(135deg, #ff6a00, #ff914d);
  color: #fff;
  border: none;
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(255,106,0,0.5);
}

/* Floating animation */
@keyframes floatBox {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* =========================
   RIGHT SIDE
========================= */

.badge-free {
  background: #ffe6d8;
  color: #ff6a00;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 20px;
}

.builder-title {
  font-size: 42px;
  font-weight: 800;
}

.builder-title span {
  color: #ff6a00;
}

.builder-desc {
  margin: 20px 0;
  color: #666;
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.feature-item i {
  color: #ff6a00;
}

.btn-hosting {
  background: #111;
  color: #fff;
  padding: 10px 22px;   /* smaller padding */
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;   /* important */
  width: auto;             /* prevent full width */
  transition: 0.3s ease;
}

.btn-hosting:hover {
  background: #ff6a00;
}


@media (max-width: 768px) {
  .btn-hosting {
    background: #111;
    color: #fff;
    padding: 7px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    width: 92%;
    transition: 0.3s ease;
}
}

/* Responsive */
@media(max-width:991px){
  .builder-card{
    margin-bottom:50px;
    transform:none;
  }
}


/* Responsive Improvements */

@media (max-width: 991px) {
  .builder-card {
    transform: none;
  }
}

@media (max-width: 768px) {

  .builder-section {
    padding: 70px 0;
  }
  
  .builder-section {
    margin: 10px 0 !important;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px !important;
    font-weight: 600;
}

  .canvas {
    height: 220px;
  }

  .drag-box {
    width: 110px;
    height: 55px;
    font-size: 14px;
  }

  .drop-zone {
    width: 140px;
    height: 70px;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
  }

  .builder-title {
    font-size: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.feature-icon i {
  color: #ff6a00;
  font-size: 18px;
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255,106,0,0.2);
}
.builder-section {
  margin: 100px 0;   /* Top & Bottom margin */
}


.mumbai-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #f5eee9 0%, #f2e7df 50%, #f7b693 100%);
    position: relative;
    overflow: hidden;
}

.badge-label {
    display: inline-block;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.badge-label i {
    color: #ff6600;
    margin-right: 6px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.section-title span {
    color: #ff6600;
}

.section-desc {
    margin-top: 20px;
    color: #555;
    font-size: 16px;
    max-width: 500px;
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ff6600;
}

.stat p {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #444;
}

/* ========================= */
/* SERVER RACK DESIGN */
/* ========================= */

.rack-wrapper {
    position: relative;
    display: inline-block;
}

.server-rack {
    width: 200px;
    padding: 20px;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: floatRack 4s ease-in-out infinite;
}

.server-unit {
    height: 40px;
    background: #1e1e1e;
    border-radius: 6px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

/* Blinking Lights */
.server-unit::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #00ff66;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: blink 1.5s infinite;
}

.server-unit::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #333, #555);
    transform: translateY(-50%);
    border-radius: 3px;
}

/* Floating Animation */
@keyframes floatRack {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Blinking */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.location-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .section-title {
        font-size: 36px;
    }

    .stats {
        justify-content: center;
        text-align: center;
    }

    .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 576px) {

    .section-title {
        font-size: 28px;
    }

    .stats {
        gap: 25px;
    }

    .server-rack {
        width: 160px;
        padding: 15px;
    }

}

/* SECTION BACKGROUND */
.wp-section-new {
    padding: 100px 0;
    background: linear-gradient(90deg, #f5eee9 0%, #f2e7df 50%, #f7b693 100%);
}

/* LEFT MAIN CARD */
.wp-main-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 25px;
    max-width: 420px;
    margin: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.wp-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* WORDPRESS BADGE */
.wp-logo-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6600, #ff8c42);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(255,102,0,0.4);
}

/* GRID */
.wp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

/* MINI CARDS */
.wp-mini-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
}

.wp-mini-card i {
    display: block;
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 8px;
}

.wp-mini-card:hover {
    background: #fff3eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,102,0,0.2);
}

/* RIGHT SIDE */
.badge-label-new {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,102,0,0.1);
    color: #ff6600;
    font-weight: 600;
    margin-bottom: 20px;
}

.wp-title-new {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.wp-title-new span {
    color: #ff6600;
}

.wp-desc-new {
    margin-top: 20px;
    color: #555;
    max-width: 500px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .wp-title-new {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .wp-title-new {
        font-size: 26px;
    }

    .wp-feature-grid {
        grid-template-columns: 1fr;
    }

    .wp-main-card {
        padding: 35px 20px;
    }
}


/* ========================= */
/* ULTRA WORDPRESS CARD */
/* ========================= */

.wp-ultra-card {
    position: relative;
    width: 420px;
    max-width: 100%;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

/* Soft Orange Glow */
.wp-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,102,0,0.25), transparent 70%);
    top: -100px;
    left: -100px;
    z-index: 0;
}

/* Floating Animation */
@keyframes floatCard {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ================= */
/* DASHBOARD MOCK */
/* ================= */

.wp-dashboard {
    position: relative;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    z-index: 2;
}

.wp-topbar {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.wp-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wp-topbar span:nth-child(1) { background: #ff5f56; }
.wp-topbar span:nth-child(2) { background: #ffbd2e; }
.wp-topbar span:nth-child(3) { background: #27c93f; }

/* Progress Section */
.wp-progress {
    margin-bottom: 15px;
}

.wp-progress p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}



.progress-bar {
    width: 100%;
    height: 8px;
    background: #eaeaea;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    display: block;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff6600, #ff8c42);
}




/* WordPress Badge */
.wp-logo-badge-ultra {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff6600, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(255,102,0,0.4);
    z-index: 3;
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media (max-width: 992px) {
    .wp-ultra-card {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .wp-logo-badge-ultra {
        width: 80px;
        height: 80px;
        font-size: 28px;
        bottom: -20px;
        right: -20px;
    }
}

.installer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8efe8, #fbd5c3);
    position: relative;
    overflow: hidden;
}

/* Floating animation */
.installer-right {
    animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-soft {
    display: inline-block;
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
}

.installer-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
}

.highlight-text {
    color: #ff6600;
}

.installer-desc {
    color: #555;
    margin-bottom: 30px;
}

.installer-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.installer-stats h3 {
    font-size: 36px;
    font-weight: 700;
}

/* Cards */
.installer-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.install-card {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.install-card:hover {
    transform: translateY(-5px);
}

.install-card i {
    font-size: 22px;
    color: #ff6600;
}

/* Right box */
.app-box {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin: 20px 0;
}

.app-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s ease;
}

.app-item:hover {
    background: #ffe6d5;
    transform: scale(1.05);
}

.app-item.active {
    background: #ff6600;
    color: white;
}

/* Progress */
.progress-wrapper {
    margin-top: 15px;
}



@keyframes loadBar {
    from { width: 40%; }
    to { width: 80%; }
}

.progress-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {

    .installer-title {
        font-size: 36px;
    }

    .installer-left {
        text-align: center;
        margin-bottom: 50px;
    }

    .installer-stats {
        justify-content: center;
    }

    .installer-cards {
        justify-content: center;
    }

    .installer-right {
        margin-top: 20px;
    }
}


/* Section Background */
.lux-dev-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5efe9 0%, #f2e7df 40%, #f6b38f 100%);
}

/* Badge */
.lux-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    background: rgba(255,102,0,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #ff6600;
}

/* Title */
.lux-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
}

.lux-title span {
    display: block;
    color: #ff6600;
}

/* Description */
.lux-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}

/* Button */
.lux-btn {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.lux-btn:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

/* Section Background */
.lux-dev-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5efe9 0%, #f2e7df 40%, #f6b38f 100%);
}

/* Badge */
.lux-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    background: rgba(255,102,0,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #ff6600;
}

/* Title */
.lux-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
}

.lux-title span {
    display: block;
    color: #ff6600;
}

/* Description */
.lux-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}

/* Button */
.lux-btn {
    background: #111;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.lux-btn:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

/* RIGHT SIDE Vertical Timeline */
.lux-feature-wrapper {
    position: relative;
    padding-left: 40px;
}

.lux-line {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6600, rgba(255,102,0,0.2));
    border-radius: 10px;
}

.lux-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.lux-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.lux-icon i {
    font-size: 22px;
    color: #ff6600;
}

.lux-feature h6 {
    font-weight: 700;
    margin-bottom: 5px;
}

.lux-feature p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {

    .lux-title {
        font-size: 36px;
    }

    .lux-dev-section {
        text-align: center;
        padding: 80px 0;
    }

    .lux-feature-wrapper {
        padding-left: 0;
    }

    .lux-line {
        display: none;
    }

    .lux-feature {
        flex-direction: column;
        align-items: center;
    }
}
/* SECTION BACKGROUND */
.why-best-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5efe9 0%, #f2e5db 40%, #f6b38f 100%);
    position: relative;
}

/* HEADING */
.section-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.section-heading span {
    color: #ff6a00;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* ICON BOX */
.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 26px;
}

/* ICON COLORS */
.icon-box.cpanel {
    background: #fde6d9;
    color: #ff6a00;
}

.icon-box.whatsapp {
    background: #dff5e5;
    color: #25D366;
}

.icon-box.trophy {
    background: #fde6d9;
    color: #ff6a00;
}

/* TEXT */
.why-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* CHAT DEMO */
.chat-demo {
    margin-top: 25px;
    background: #f3ebe4;
    padding: 20px;
    border-radius: 15px;
}

.chat-left {
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

.chat-right {
    background: #c9f3c9;
    padding: 8px 14px;
    border-radius: 12px;
    display: inline-block;
    float: right;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 30px;
    }

    .why-card {
        padding: 30px;
    }
}
/* Background */
.testimonial-section {
    background: linear-gradient(135deg, #f4ede7 0%, #f2e7df 40%, #f6b38f 100%);
}

/* Badge */
.rating-badge {
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Title */
.section-title {
    font-weight: 700;
    font-size: 2.3rem;
}

.highlight-text {
    color: #ff6a00;
}

/* Review Card */
.review-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
}

/* Avatar */
.avatar {
    width: 55px;
    height: 55px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #999;
}

/* Verified */
.verified {
    color: #0bb76b;
    font-weight: 600;
    font-size: 14px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}
/* Background */
.faq-section {
    background: linear-gradient(135deg, #f4ede7 0%, #f2e7df 40%, #f6b38f 100%);
}

/* Title */
.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-wrapper {
    max-width: 600px;
    margin: auto;
}


/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    margin-bottom: 20px;
    padding: 5px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

/* Question Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Icon */
.faq-icon {
    font-size: 1.5rem;
    color: #ff6a00;
    transition: 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* =========================
   FOOTER
========================= */

.footer-section {
    background: #0f1115;
    color: #b8b8b8;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color: #ff6a00;
}

.footer-desc {
    margin-top: 15px;
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #b8b8b8;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
    padding-left: 5px;
}

/* Contact */
.footer-contact li {
    margin-bottom: 15px;
    line-height: 1.6;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #ff6a00;
    margin-top: 5px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: #222;
    margin: 40px 0 25px;
}

/* Bottom */
.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1d23;
    color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff6a00;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .social-icons {
        margin-top: 15px;
    }
}

.tech-slider-section {
    overflow: hidden;
}


.builder-section {
    overflow: hidden;
}
@media (max-width: 768px) {
    .location-tag {
        right: 0;
        bottom: -10px;
    }
}

.wp-ultra-card {
    overflow: hidden;
}


.speed-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f3e8df, #f6d1b8);
  display: flex;
  justify-content: center;
}

.speed-box {
  background: #fff;
  max-width: 900px;
  width: 100%;
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.speed-box h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.speed-box p {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.speed-item {
  margin-bottom: 35px;
}

.speed-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight {
  color: #ff5a00;
}

.bar {
  width: 100%;
  height: 14px;
  background: #e5e5e5;
  border-radius: 50px;
}

.fill {
  height: 100%;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .speed-box {
    padding: 40px 25px;
  }

  .speed-row {
    flex-direction: column;
    gap: 5px;
  }
}

/* SAME BACKGROUND */
.security-section {
    padding: 120px 20px;
    background: linear-gradient(90deg, #e8dfd7 0%, #e3d8cf 50%, #f4cdb7 100%);
    font-family: 'Inter', sans-serif;
}

/* CENTER CONTAINER */
.security-container {
    max-width: 1000px;
    margin: auto;
}

/* GLASS CARD */
.security-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
}

/* ICON CIRCLE */
.security-icon {
    width: 110px;
    height: 110px;
    background: #12b76a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #fff;
    margin: -110px auto 30px auto;
    box-shadow: 0 20px 40px rgba(18,183,106,0.4);
    position: relative;
    overflow: hidden;
    animation: floatIcon 4s ease-in-out infinite;
}

/* SOFT GLOW PULSE */
.security-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    animation: pulseGlow 2.5s infinite;
}

/* SCAN LINE EFFECT */
.security-icon::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.0),
        rgba(255,255,255,0.4),
        rgba(255,255,255,0.0)
    );
    animation: scanMove 3s linear infinite;
}

/* FLOAT ANIMATION */
@keyframes floatIcon {
    0%,100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* PULSE */
@keyframes pulseGlow {
    0% { opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { opacity: 0.2; }
}

/* SCAN MOVE */
@keyframes scanMove {
    0% { top: -100%; }
    100% { top: 120%; }
}


/* TAG */
.security-tag {
    display: inline-block;
    background: #d7f5e6;
    color: #12b76a;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* HEADING */
.security-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.security-content h2 span {
    font-weight: 800;
}

/* PARAGRAPH */
.security-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* FEATURES */
.security-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .security-card {
        padding: 40px 25px;
    }

    .security-content h2 {
        font-size: 28px;
    }

    .security-features {
        flex-direction: column;
        gap: 10px;
    }
}



/* Section Background */
.features-section {
    padding: 100px 20px;
    background: linear-gradient(90deg, #f4ede7 0%, #f2e7df 40%, #f6b38f 100%);
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.section-header h2 span {
    color: #ff5a00;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Card */
.feature-card {
    background: #f3f3f3;
    padding: 40px;
    border-radius: 25px;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon */
.icon-box {
    width: 65px;
    height: 65px;
    background: #ffe6d8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 26px;
    color: #ff5a00;
}

/* Text */
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* Floating Animation */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Apply animation */
.feature-card {
    animation: floatCard 6s ease-in-out infinite;
    will-change: transform;
}

/* Different delays for natural feel */
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.5s; }
.feature-card:nth-child(3) { animation-delay: 1s; }
.feature-card:nth-child(4) { animation-delay: 1.5s; }
.feature-card:nth-child(5) { animation-delay: 2s; }
.feature-card:nth-child(6) { animation-delay: 2.5s; }

/* Improve hover so it feels premium */
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
/* SECTION BACKGROUND */
.tech-specs {
    padding: 80px 20px;
    background: linear-gradient(90deg, #f4ede7 0%, #f2e7df 40%, #f6b38f 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
}

.section-header p {
    color: #666;
    margin-top: 10px;
    font-size: 16px;
}

/* GRID */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.spec-card {
    background: #f3f3f3;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* CARD TITLE */
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff5a00;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    font-weight: 900;
}

/* ROW */
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span {
    color: #555;
}

.spec-row strong {
    color: #333;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .spec-card {
        padding: 25px;
    }

    .spec-row {
        flex-direction: column;
        gap: 5px;
    }

    .spec-row strong {
        text-align: left;
    }
}


/* ==============================
   TECH SPECS SECTION
============================== */
.tech-specs {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f4ede7 0%, #f2e7df 40%, #f6b38f 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Soft background blur circles */
.tech-specs::before,
.tech-specs::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}

.tech-specs::before {
    background: #ff7a18;
    top: -100px;
    left: -100px;
}

.tech-specs::after {
    background: #ffb347;
    bottom: -100px;
    right: -100px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.section-header p {
    color: #555;
    margin-top: 12px;
    font-size: 16px;
}

/* Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ==============================
   GLASS CARD
============================== */
.spec-card {
    padding: 40px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);

    transition: all 0.4s ease;
    animation: floatCard 6s ease-in-out infinite;
}

/* Slight hover lift */
.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Floating animation */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Title */
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff5a00;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Rows */
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 15px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span {
    color: #555;
}

.spec-row strong {
    color: #222;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .spec-card {
        padding: 28px;
    }

    .spec-row {
        flex-direction: column;
        gap: 6px;
    }
}

/* ==============================
   RESELLER HERO SECTION
=================================*/

.reseller-hero {
    padding: 100px 20px;
    background: linear-gradient(
        90deg,
        #f4ece6 0%,
        #f6e7de 40%,
        #f8b995 100%
    );
}

.container {
    max-width: 1200px;
    margin: auto;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.hero-left h1 span {
    color: #ff6b1a;
}

.hero-left p {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #222;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #000;
}

/* RIGHT */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Mockup Card */
.mockup-card {
    width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
}

.mockup-top {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.mockup-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b1a;
}

.mockup-top span:last-child {
    background: #ffc107;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mockup-grid div {
    height: 70px;
    background: #f3f3f3;
    border-radius: 12px;
}

/* BADGES */
.badge {
    position: absolute;
    background: #ff690b;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.badge-top {
    top: -20px;
    right: 20px;
}

.badge-bottom {
    bottom: -25px;
    left: 40px;
}

/* ==============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 40px;
    }

    .hero-left p {
        margin: 20px auto;
    }

    .hero-right {
        margin-top: 50px;
    }

    .mockup-card {
        width: 100%;
        max-width: 400px;
    }

    .badge-top {
        right: 10%;
    }

    .badge-bottom {
        left: 10%;
    }
}

@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* RIGHT SIDE PREMIUM CARD */

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Soft Glow */
.hero-right::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,107,26,0.25), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* Dashboard Card */
.dashboard-card {
    width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Header */
.cpanel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.cpanel-title {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

/* Grid */
.cpanel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.cpanel-item {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    transition: 0.3s ease;
}

.cpanel-item i {
    font-size: 20px;
    color: #ff6b1a;
    margin-bottom: 8px;
    display: block;
}

.cpanel-item span {
    font-size: 13px;
    font-weight: 500;
}

.cpanel-item:hover {
    background: #fff3ea;
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-card {
        width: 100%;
        max-width: 380px;
    }
}
/* VPS HERO BACKGROUND */
.vps-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        90deg,
        #f4ede7 0%,
        #f2e7df 40%,
        #f6b38f 100%
    );
    padding: 80px 0;
    overflow: hidden;
}

/* TEXT */
.vps-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
}

.highlight {
    color: #ff6a00;
}

.vps-desc {
    margin: 25px 0;
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    max-width: 520px;
}

.vps-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.vps-btn:hover {
    background: #ff6a00;
    transform: translateY(-3px);
}

/* SERVER RACK */
.server-rack {
    width: 280px;
    margin: auto;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    animation: floatRack 4s ease-in-out infinite;
}

.server-unit {
    background: #2b2b2b;
    height: 45px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 2s infinite alternate;
}

.green { background: #00ff88; }
.red { background: #ff3b3b; }
.orange { background: #ff9900; }

/* Animations */
@keyframes blink {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

@keyframes floatRack {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 992px) {
    .vps-title {
        font-size: 36px;
    }
    .server-rack {
        margin-top: 40px;
    }
}
/* SECTION BACKGROUND */
.vps-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(
        90deg,
        #f4ede7 0%,
        #f2e7df 40%,
        #f6b38f 100%
    );
}

/* TEXT STYLING */
.vps-heading {
    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.vps-heading span {
    color: #ff6a00;
}

.vps-text {
    font-size: 18px;
    color: #555;
    margin: 25px 0;
    line-height: 1.7;
    max-width: 520px;
}

/* BUTTONS */
.vps-buttons {
    margin-top: 20px;
}

.btn-primary-vps {
    display: inline-block;
    padding: 14px 30px;
    background: #111;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s ease;
}

.btn-primary-vps:hover {
    background: #ff6a00;
    transform: translateY(-3px);
}

.btn-outline-vps {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #111;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s ease;
}

.btn-outline-vps:hover {
    background: #111;
    color: #fff;
}

/* RIGHT CARD */
.vps-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: auto;
}

.vps-feature {
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 500;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vps-heading {
        font-size: 34px;
    }

    .vps-section {
        text-align: center;
        padding: 60px 20px;
    }

    .vps-text {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary-vps,
    .btn-outline-vps {
        display: block;
        margin: 10px auto;
    }
}
/* SAME BACKGROUND */
.vps-section-style2 {
    padding: 100px 0;
    background: linear-gradient(
        90deg,
        #f4ede7 0%,
        #f2e7df 40%,
        #f6b38f 100%
    );
}

/* LEFT CONTENT */
.vps-tag {
    font-size: 14px;
    font-weight: 600;
    color: #ff6a00;
    letter-spacing: 1px;
}

.vps-title-2 {
    font-size: 44px;
    font-weight: 800;
    margin: 15px 0;
    color: #111;
}

.vps-description-2 {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 520px;
}

.vps-btn-2 {
    display: inline-block;
    padding: 14px 32px;
    background: #ff6a00;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.vps-btn-2:hover {
    background: #111;
    transform: translateY(-3px);
}

/* RIGHT CARD */
.vps-stats-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

/* STAT ITEMS */
.stat-item {
    margin-bottom: 30px;
}

.stat-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: #eaeaea;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6a00, #ff9b42);
    border-radius: 50px;
}

/* Responsive */
@media (max-width: 992px) {

    .vps-title-2 {
        font-size: 32px;
    }

    .vps-section-style2 {
        text-align: center;
        padding: 70px 20px;
    }

    .vps-description-2 {
        margin-left: auto;
        margin-right: auto;
    }

    .vps-btn-2 {
        display: inline-block;
        margin-bottom: 30px;
    }
}
/* ===============================
   SUPPORT SECTION
=================================*/
.support-section {
    padding: 100px 20px;
    margin: 100px 0;
    background: linear-gradient(135deg, #f6ede6 0%, #f7d1b4 100%);
}

/* Container */
.support-section .container {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.support-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.support-header p {
    color: #666;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Search Box */
.search-box {
    max-width: 600px;
    margin: auto;
}

.search-box input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    background: #f1f1f1;
    font-size: 16px;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

/* Cards */
.support-cards {
    display: flex;
    gap: 30px;
    margin-top: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.support-card {
    background: #f5f5f5;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 320px;
    max-width: 360px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.support-card h4 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.support-card p {
    margin-top: 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Icons */
.icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.whatsapp {
    background: #dff5e7;
    color: #25D366;
}

.ticket {
    background: #ffe7d8;
    color: #ff6a00;
}

.email {
    background: #ffe7d8;
    color: #ff6a00;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 768px) {

    .support-header h2 {
        font-size: 30px;
    }

    .support-header p {
        font-size: 16px;
    }

    .support-section {
        padding: 70px 20px;
        margin: 70px 0;
    }

    .support-card {
        max-width: 100%;
    }
}
/* ============================
   CONTACT SECTION
============================= */
.contact-section {
    padding: 100px 20px;
    margin: 100px 0;
    background: linear-gradient(135deg, #f6ede6 0%, #f7d1b4 100%);
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Layout */
.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-left {
    flex: 1 1 500px;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.contact-left h3 {
    font-size: 42px;
    font-weight: 800;
    color: #ff6a00;
    margin-bottom: 20px;
}

.contact-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Info Items */
.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6a00;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.info-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.info-item p {
    margin: 0;
    color: #666;
}

/* RIGHT SIDE FORM */
.contact-right {
    flex: 1 1 500px;
    background: #f4f4f4;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6a00;
}

/* Button */
.contact-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #2c2c2c, #1a1a1a);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 992px) {

    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left h2,
    .contact-left h3 {
        font-size: 32px;
    }

    .contact-section {
        padding: 70px 20px;
        margin: 70px 0;
    }
}
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.feature-item i {
    font-size: 18px;
    color: #ff6600;
    min-width: 20px;
}

.feature-item span {
    color: #333;
}

.feature-item strong {
    font-weight: 700;
}

/* Hover Effect */
.feature-item:hover {
    border-color: #ff6600;
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
    .feature-item {
        font-size: 14px;
        padding: 12px;
    }
}
.billing-box {
    background: #f5f6f7;
    padding: 14px 18px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 15px;
}

.billing-price {
    font-weight: 700;
    color: #555;
    font-size: 15px;
}

.renewal-price {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #18a957;
    display: flex;
    align-items: center;
    gap: 6px;
}

.renewal-price i {
    font-size: 14px;
}
/* CATEGORY SWITCH */
.category-switch {
    display: inline-flex;
    background: #f4f6f9;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Default Button */
.category-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
.category-btn:hover {
    color: #ff6a00;
}

/* ACTIVE BUTTON HIGHLIGHT */
.category-btn.active {
    background: linear-gradient(90deg, #ff6a00, #ff8c42);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255,106,0,0.35);
    transform: scale(1.05);
}


/* PLAN GROUP */
.plan-group {
    display: none;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-group.active {
    display: flex;
}

/* SAMPLE PLAN CARD */
.plan-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 360px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-6px);
}
/* SECTION BACKGROUND (Same as your VPS one) */
.server-setup-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #e6dfd7, #e9a57c);
}

/* TITLE */
.setup-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
}

.highlight {
  color: #ff6a00;
}

.setup-desc {
  font-size: 18px;
  color: #555;
  margin: 25px 0;
  line-height: 1.6;
}

/* FEATURES LIST */
.setup-features div {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.setup-features i {
  color: #ff6a00;
  margin-right: 10px;
}

/* BUTTON */
.setup-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #111;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.setup-btn:hover {
  background: #ff6a00;
  color: #fff;
}

/* RIGHT CARD */
.server-card {
  background: #1c1c1c;
  padding: 35px;
  border-radius: 20px;
  width: 380px;
  margin: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.server-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2a2a2a;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  color: #fff;
}

/* STATUS DOT */
.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status.green {
  background: #00d26a;
  box-shadow: 0 0 10px #00d26a;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .setup-title {
    font-size: 34px;
  }

  .server-card {
    width: 100%;
  }
}


/* SECTION BACKGROUND */
.setup-plans-section {
  padding: 100px 0;

}

/* PLAN CARD */
.plan-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.plan-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-desc {
  color: #666;
  margin-bottom: 25px;
}

/* FEATURE LIST */
.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.plan-card ul li {
  margin-bottom: 12px;
  color: #333;
}

.plan-card ul li i {
  color: #ff6a00;
  margin-right: 8px;
}

/* BUTTON */
.plan-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.plan-btn:hover {
  background: #ff6a00;
  color: white;
}

/* FEATURED PLAN */
.featured {
  border: 2px solid #ff6a00;
  transform: scale(1.05);
}

.featured .plan-btn {
  background: #ff6a00;
}

.featured .plan-btn:hover {
  background: #111;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff6a00;
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .featured {
    transform: none;
  }
}
/* PRICE */
.price {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0 10px;
  color: #111;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.highlight-price {
  color: #ff6a00;
}

/* Adjust featured scale */
.featured {
  border: 2px solid #ff6a00;
  transform: scale(1.05);
  background: linear-gradient(180deg, #ffffff, #fff7f1);
}
.terms-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #e6dfd7, #e9a57c);
}

.terms-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.terms-header p {
  color: #555;
  margin-bottom: 50px;
}

.terms-block {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.terms-block h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.terms-block h4 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}

.terms-block p,
.terms-block li {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.terms-block ul {
  padding-left: 18px;
}

.highlight-box {
  border-left: 5px solid #ff6a00;
  background: #fff7f1;
}

@media (max-width: 768px) {
  .terms-header h1 {
    font-size: 28px;
  }
}
.btn-primary {
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: 0.3s;
    background-color: #ff6600;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: 0.3s;
    background-color: #000;
    border: none;
}

.text-primary{
	color:#ff6600 !important;
}