* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== */
/* Section Title Styles */
/* ==================== */
.section-title {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(to right, #e1e1e1 0%, #e1e1e1 30%, #db9232 30%, #db9232 70%, #e1e1e1 70%, #e1e1e1 100%);
}

/* Ensure section titles remain centered in their containers */
.why-buy-section,
.services-highlight,
.server-info-section,
.buy-server-text-section,
.why-storage-server-section,
.why-choose-us-section,
.faq-section,
.know-more-section,
.best-selling,
.customize-server,
.features-section,
.reviews-section,
.contact-sales,
.benefits-section,
.services-section,
.contact-form-section,
.server-experts-section,
.about-intro-section,
.partner-logos-section,
.team-section,
.server-products-section,
.custom-server-section,
.why-choose-section,
.browse-servers-section,
.build-server-section,
.contact-options-section,
.budget-selection-section,
.customize-server-section,
.quality-features-section,
.engage-section,
.find-server-cta-section,
.rack-advantages-section,
.buy-online-section,
.why-storage-section,
.location-faq-section,
.featured-products-section,
.cta-section {
    text-align: center;
}

/* ==================== */
/* Header Styles        */
/* ==================== */

/* Header Top */
.header-top {
    background: #1e3a5f;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info li {
    font-size: 14px;
    color: #cccccc;
}

.contact-info li a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #4db2ec;
}

.social-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-menu li a:hover {
    background: #4db2ec;
    transform: translateY(-2px);
}

/* Header Bottom */
.header-bottom {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #bbb;
    position: relative;
    z-index: 1000;
}

.header-bottom.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.logo img {
    max-height: 42px;
    width: auto;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 12px 15px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover {
    color: #4db2ec;
}

.nav-menu > li.active > a {
    background: #db9232 !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
}

/* Dropdown Menu */
.nav-menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 100;
    border-top: 3px solid #4db2ec;
}

/* Invisible bridge to prevent dropdown from closing */
.nav-menu li .sub-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #555555;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-menu li .sub-menu li a:hover {
    color: #4db2ec;
    background: rgba(77, 178, 236, 0.1);
    padding-left: 25px;
}

/* Header Cart */
.header-cart {
    margin-left: 20px;
    position: relative;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #db9232;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: #c7832b;
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.empty {
    display: none;
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.cart-dropdown-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cart-close:hover {
    color: #333;
}

.cart-dropdown-body {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0;
}

.cart-empty {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-size: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.cart-item:hover {
    background: #f9f9f9;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 14px;
    color: #db9232;
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: #4db2ec;
    border-color: #4db2ec;
    color: #fff;
}

.cart-qty-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-dropdown-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 0 0 12px 12px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.cart-total span:last-child {
    color: #db9232;
    font-size: 18px;
}

.btn-view-cart,
.btn-checkout {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.btn-view-cart {
    background: #fff;
    border: 2px solid #4db2ec;
    color: #4db2ec;
}

.btn-view-cart:hover {
    background: #4db2ec;
    color: #fff;
}

.btn-checkout {
    background: linear-gradient(135deg, #db9232, #c77e28);
    border: none;
    color: #fff;
    margin-bottom: 0;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #c77e28, #b36e1e);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(219, 146, 50, 0.3);
}

/* Mobile Toggle */
.mobile-nav-toggler {
    display: none;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
}

.mobile-menu.active {
    visibility: visible;
}

.menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .menu-backdrop {
    opacity: 1;
}

.menu-box {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding: 20px;
}

.mobile-menu.active .menu-box {
    left: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu .close-btn:hover {
    color: #4db2ec;
}

.nav-logo {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    max-height: 40px;
}

/* Mobile Menu Navigation */
.menu-outer .navigation {
    display: block;
}

.menu-outer .navigation li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-outer .navigation li a {
    display: block;
    padding: 15px 0;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
}

.menu-outer .navigation li.dropdown {
    position: relative;
}

.menu-outer .navigation li .dropdown-btn {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-outer .navigation li .dropdown-btn.open {
    transform: rotate(180deg);
}

.menu-outer .navigation li .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    background: #f8f9fa;
    margin: 0 -20px;
    padding-left: 35px;
    padding-right: 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.menu-outer .navigation li .sub-menu.open {
    max-height: 500px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: max-height 0.4s ease-in, padding 0.3s ease-in;
}

.menu-outer .navigation li .sub-menu li {
    border-bottom: none;
}

.menu-outer .navigation li .sub-menu li a {
    padding: 10px 0;
    color: #555555;
    font-size: 14px;
}

.menu-outer .navigation li .sub-menu li a:hover {
    color: #4db2ec;
}

.menu-outer .navigation > li.active > a {
    background: #db9232 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    display: block;
    padding: 15px 20px;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

/* ==================== */
/* Responsive Styles    */
/* ==================== */
@media (max-width: 1199px) {
    .nav-menu > li > a {
        padding: 12px 10px;
        font-size: 13px;
    }

    .dropdown-toggle {
        padding: 12px 8px 12px 0;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggler {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .header-bottom-wrapper {
        justify-content: space-between;
    }

    .header-cart {
        margin-left: auto;
        margin-right: 15px;
    }

    .logo {
        order: 1;
    }

    .header-cart {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .mobile-nav-toggler {
        order: 3;
    }
}

@media (max-width: 767px) {
    .header-top-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .contact-info li {
        font-size: 13px;
    }

    .contact-info li:first-child {
        display: none;
    }

    .social-menu {
        gap: 10px;
    }

    .logo img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .contact-info li {
        font-size: 12px;
    }

    .social-menu li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ==================== */
/* Hero Section         */
/* ==================== */
.hero-section {
    padding: 40px 0;
    background: #ffffff;
}

.hero-section h1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-section p {
    text-align: center;
    font-size: 15px;
    color: #666666;
    margin-top: 10px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 14px;
    }
}

/* ==================== */
/* Price Categories     */
/* ==================== */
.price-categories {
    padding: 30px 0 50px;
    background: #ffffff;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: #5d6d7e;
    border: 4px solid #db9232;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-card:hover {
    background: #1e3a5f;
    border-color: #c47f28;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.price-card span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .price-grid {
        gap: 15px;
    }

    .price-card {
        padding: 20px 15px;
    }

    .price-card span {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .price-categories {
        padding: 20px 0 40px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-card {
        padding: 20px;
    }
}

/* Price Categories with Images */
.price-categories-with-images {
    padding: 30px 0 50px;
    background: #ffffff;
}

.price-grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card-with-image {
    text-align: center;
}

.price-card-image {
    margin-bottom: 20px;
}

.price-card-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.price-card-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #5d6d7e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-card-btn:hover {
    background: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

@media (max-width: 991px) {
    .price-grid-images {
        gap: 20px;
    }

    .price-card-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .price-categories-with-images {
        padding: 20px 0 40px;
    }

    .price-grid-images {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .price-card-image img {
        max-height: 180px;
    }

    .price-card-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
}

/* Why Buy From Us Section */
.why-buy-section {
    padding: 60px 0;
    background: #ffffff;
}

.why-buy-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-buy-card {
    text-align: center;
    padding: 20px;
}

.why-buy-icon {
    margin-bottom: 20px;
}

.why-buy-icon img {
    width: 64px;
    height: 64px;
}

.why-buy-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.why-buy-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .why-buy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .why-buy-section {
        padding: 40px 0;
    }

    .why-buy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-buy-card h4 {
        font-size: 15px;
    }
}

/* ==================== */
/* Services Highlight   */
/* ==================== */
.services-highlight {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-highlight .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-highlight-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-highlight-icon {
    width: 70px;
    height: 70px;
    background: #db9232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-highlight-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-highlight-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.service-highlight-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .services-highlight {
        padding: 40px 0;
    }

    .services-highlight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-highlight-card {
        padding: 25px;
    }

    .service-highlight-card h3 {
        font-size: 16px;
    }
}

/* ==================== */
/* CTA Section          */
/* ==================== */
.cta-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.cta-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #db9232;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #c17f28;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-section .section-title {
        font-size: 22px;
    }

    .cta-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* ==================== */
/* Server Info Section  */
/* ==================== */
.server-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.server-info-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.server-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.server-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.server-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.server-info-icon {
    margin-bottom: 20px;
}

.server-info-icon img {
    max-width: 100px;
    height: auto;
}

.server-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.server-info-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .server-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .server-info-section {
        padding: 40px 0;
    }

    .server-info-section .section-title {
        text-align: center;
    }

    .server-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .server-info-card {
        padding: 25px;
    }

    .server-info-card h4 {
        font-size: 16px;
    }
}

/* ==================== */
/* Buy Server Text      */
/* ==================== */
.buy-server-text-section {
    padding: 60px 0;
    background: #ffffff;
}

.buy-server-text-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.buy-server-text-section .section-content {
    text-align: center;
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.buy-server-text-section .section-content strong {
    color: #1e3a5f;
}

@media (max-width: 767px) {
    .buy-server-text-section {
        padding: 40px 0;
    }

    .buy-server-text-section .section-title {
        font-size: 20px;
    }

    .buy-server-text-section .section-content {
        font-size: 14px;
    }
}

/* ==================== */
/* Featured Products    */
/* ==================== */
.featured-products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-product-card {
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.featured-product-title {
    background: #db9232;
    padding: 20px 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.featured-product-subtitle {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
}

.featured-product-price {
    background: #f5f5f5;
    padding: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    margin: 0;
}

.featured-product-image {
    padding: 20px;
    background: #fff;
    margin: 0;
}

.featured-product-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.featured-product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.featured-product-features li {
    padding: 8px 15px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-product-features li:nth-child(odd) {
    background: #fafafa;
}

.featured-product-features li:nth-child(even) {
    background: #fff;
}

.featured-product-features li:last-child {
    border-bottom: none;
}

.featured-product-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #db9232;
    font-size: 12px;
}

.featured-product-btn {
    display: block;
    margin: 15px 20px;
    padding: 12px 30px;
    background: #db9232;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.featured-product-btn:hover {
    background: #c7832b;
}

@media (max-width: 991px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .featured-products-section {
        padding: 40px 0;
    }

    .featured-products-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .featured-products-grid:last-child {
        margin-bottom: 0;
    }

    .featured-product-card {
        width: 100%;
        max-width: 350px;
    }

    .featured-product-title {
        font-size: 16px;
    }

    .featured-product-price {
        font-size: 18px;
    }

    .featured-product-image img {
        height: 220px;
    }
}

/* ========================= */
/* Why Storage Server Section */
/* ========================= */
.why-storage-server-section {
    padding: 60px 0 30px;
    background: #ffffff;
}

.why-storage-server-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.storage-server-list {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
}

.storage-server-list li {
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 10px;
}

.storage-server-list li strong {
    color: #1e3a5f;
}

@media (max-width: 767px) {
    .why-storage-server-section {
        padding: 40px 0 20px;
    }

    .why-storage-server-section .section-title {
        font-size: 20px;
    }

    .storage-server-list li {
        font-size: 14px;
    }
}

/* ==================== */
/* Why Choose Us Section */
/* ==================== */
.why-choose-us-section {
    padding: 60px 0 30px;
    background: #f8f9fa;
}

.why-choose-us-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.why-choose-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 40px 0;
    }

    .why-choose-us-section .section-title {
        font-size: 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        padding: 25px;
    }

    .why-choose-card h4 {
        font-size: 16px;
    }
}

/* ==================== */
/* FAQ Section          */
/* ==================== */
.faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

/* FAQ Page - uses .faq-wrapper */
.faq-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.faq-wrapper .faq-content {
    flex: 1;
    min-width: 0;
}

.faq-wrapper .faq-image {
    flex: 0 0 350px;
}

.faq-wrapper .faq-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .faq-wrapper .faq-image {
        flex: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        order: -1;
    }
    .faq-wrapper .faq-content {
        width: 100%;
    }
}

/* Location FAQ Section styles are defined later in file around line 4626 */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #db9232;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #c7832b;
}

.faq-question span {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    padding-right: 15px;
}

.faq-question i {
    font-size: 14px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 15px 20px 18px;
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.faq-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-image {
        order: -1;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* ==================== */
/* Know More Section    */
/* ==================== */
.know-more-section {
    padding: 60px 0 30px;
    background: #f8f9fa;
}

.know-more-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.know-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.know-more-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.know-more-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.know-more-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .know-more-section {
        padding: 40px 0;
    }

    .know-more-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .know-more-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ==================== */
/* Best Selling Section */
/* ==================== */
.best-selling {
    padding: 50px 0 30px;
    background: #f8f9fa;
}

.best-selling .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.best-selling .section-description {
    text-align: center;
    font-size: 15px;
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .best-selling {
        padding: 40px 0 25px;
    }

    .best-selling .section-title {
        font-size: 22px;
    }

    .best-selling .section-description {
        font-size: 14px;
    }
}

/* ==================== */
/* Product Cards        */
/* ==================== */
.product-cards {
    padding: 30px 0 60px;
    background: #f8f9fa;
}

.product-cards .container {
    max-width: 1400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-header {
    margin-bottom: 15px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.product-subtitle {
    font-size: 14px;
    color: #666666;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #4db2ec;
    margin-bottom: 25px;
    min-height: 50px;
}

.product-price .price-current {
    color: #4db2ec;
    font-weight: 700;
    display: block;
}

.product-price .price-original {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.product-image {
    margin-bottom: 25px;
}

.product-image img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.product-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #555555;
    border-bottom: 1px solid #f0f0f0;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #4db2ec;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-btn:hover {
    background: #1e3a5f;
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .product-cards {
        padding: 20px 0 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-image img {
        height: 150px;
    }
}

/* ==================== */
/* Customize Server     */
/* ==================== */
.customize-server {
    padding: 60px 0;
    background-image: url('../images/server-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.customize-server::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.customize-server > .container {
    position: relative;
    z-index: 1;
}

.customize-server .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.customize-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.customize-form .form-row {
    display: flex;
    gap: 20px;
}

.customize-form .form-group {
    margin-bottom: 20px;
    flex: 1;
}

.customize-form .form-group.country-code {
    flex: 0 0 120px;
}

.customize-form .form-group.phone-input {
    flex: 1;
}

.customize-form label {
    display: block;
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.customize-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.customize-form .form-control::placeholder {
    color: #999999;
}

.customize-form .form-control:focus {
    outline: none;
    border-color: #4db2ec;
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.2);
}

.customize-form select.form-control {
    cursor: pointer;
}

.customize-form select.form-control option {
    background: #ffffff;
    color: #333333;
}

.customize-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #4db2ec;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customize-form .btn-submit:hover {
    background: #3a9fd9;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .customize-server {
        padding: 40px 0;
    }

    .customize-server .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .customize-form {
        padding: 25px 20px;
    }

    .customize-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .customize-form .form-row:has(.country-code) {
        flex-direction: row;
        gap: 10px;
    }

    .customize-form .form-group.country-code {
        flex: 0 0 115px;
        margin-bottom: 20px;
    }

    .customize-form .form-group.phone-input {
        flex: 1;
        margin-bottom: 20px;
    }
}

/* Customize Form - Extended Styles */
.customize-form .form-label {
    display: block;
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* OTP Section */
.customize-form .otp-verified {
    background: #28a745;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.customize-form .otp-verified p {
    margin: 0;
    font-weight: 600;
}

.customize-form .otp-section {
    margin-bottom: 20px;
}

.customize-form .otp-message {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.customize-form .otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.customize-form .otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.customize-form .otp-input:focus {
    outline: none;
    border-color: #db9232;
    box-shadow: 0 0 0 3px rgba(219, 146, 50, 0.2);
}

.customize-form .otp-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.customize-form .btn-otp {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #db9232;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customize-form .btn-otp:hover {
    background: #c17f28;
    transform: translateY(-2px);
}

.customize-form .resend-whatsapp {
    text-align: center;
    margin-top: 15px;
}

/* Schedule Section */
.customize-form .schedule-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.customize-form .schedule-info {
    text-align: center;
}

.customize-form .schedule-text {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.customize-form .schedule-date {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
}

.customize-form .schedule-date input[type="date"] {
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    margin-left: 10px;
}

.customize-form .time-slots {
    text-align: center;
}

@media (max-width: 767px) {
    .customize-form .otp-input {
        width: 40px;
        height: 45px;
        font-size: 18px;
    }

    .customize-form .otp-buttons {
        flex-direction: column;
        align-items: center;
    }

    .customize-form .btn-otp {
        width: 100%;
    }
}

/* ==================== */
/* Features Section     */
/* ==================== */
.features-section {
    padding: 60px 0;
    background: #ffffff;
}

.features-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #db9232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #1e3a5f;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.feature-content {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .features-grid {
        gap: 25px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 28px;
    }

    .feature-title {
        font-size: 18px;
    }
}

/* ==================== */
/* Reviews Section       */
/* ==================== */
.reviews-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.reviews-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-wrapper {
    flex: 1;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.review-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #1e3a5f;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.carousel-btn:hover:not(:disabled) {
    background: #4db2ec;
    transform: scale(1.05);
}

.carousel-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #4db2ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
}

.review-date {
    font-size: 13px;
    color: #888888;
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.review-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.reviews-footer {
    text-align: center;
    margin-top: 35px;
    font-size: 16px;
    color: #555555;
}

.reviews-footer strong {
    color: #1e3a5f;
}

/* Reviews Carousel Auto-scroll */
.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Review Card Expand/Collapse */
.reviews-section .review-card {
    display: flex !important;
    flex-direction: column !important;
    height: 280px !important;
    overflow: hidden !important;
    transition: height 0.3s ease;
    padding-bottom: 15px !important;
    box-sizing: border-box !important;
    width: 300px !important;
    min-width: 300px !important;
    max-width: 300px !important;
    flex-shrink: 0 !important;
}

.reviews-section .review-card.expanded {
    height: auto !important;
    min-height: 280px !important;
}

.reviews-section .review-text {
    display: -webkit-box !important;
    -webkit-line-clamp: 5 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    margin-bottom: 0 !important;
}

.reviews-section .review-card.expanded .review-text {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}

.reviews-section .read-more-btn {
    color: #db9232;
    font-size: 13px;
    cursor: pointer;
    margin-top: auto;
    padding-top: 10px;
    display: block;
    font-weight: 600;
}

.reviews-section .read-more-btn:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .review-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 40px 0;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .reviews-section .section-title {
        font-size: 26px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .reviews-carousel {
        gap: 10px;
    }
}

/* ==================== */
/* Contact Sales Section */
/* ==================== */
.contact-sales {
    padding: 60px 0;
    background: #1e3a5f;
    text-align: center;
}

.contact-sales .section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-sales .section-description {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

.contact-btn-item {
    display: block;
    transition: transform 0.3s ease;
}

.contact-btn-item:hover {
    transform: scale(1.05);
}

.contact-btn-item img {
    max-width: 250px;
    height: auto;
}

@media (max-width: 767px) {
    .contact-sales {
        padding: 40px 0;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 25px;
    }

    .contact-btn-item img {
        max-width: 200px;
    }
}

/* ==================== */
/* CTA Banner Section   */
/* ==================== */
.cta-banner {
    width: 100%;
    background: #dcf0ff;
    padding: 40px 0;
}

.cta-banner a {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.cta-banner .cta-desktop {
    display: block;
}

.cta-banner .cta-mobile {
    display: none;
}

@media (max-width: 767px) {
    .cta-banner {
        padding: 15px;
    }

    .cta-banner a {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .cta-banner img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .cta-banner .cta-desktop {
        display: block;
    }

    .cta-banner .cta-mobile {
        display: none;
    }
}

/* ==================== */
/* Benefits Section     */
/* ==================== */
.benefits-section {
    padding: 60px 0;
    background: #ffffff;
}

.benefits-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 50px;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #2471A3;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

@media (max-width: 767px) {
    .benefits-section {
        padding: 40px 0;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .benefit-icon img {
        width: 100px;
        height: 100px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .benefit-text {
        text-align: center;
    }

    .benefits-section .section-title {
        font-size: 26px;
    }
}

/* ==================== */
/* Services Section     */
/* ==================== */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.service-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 28px;
    }
}

/* ==================== */
/* Contact Form Section */
/* ==================== */
.contact-form-section {
    padding: 80px 0;
    background-image: url('../images/server-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-form-section > .container {
    position: relative;
    z-index: 1;
}

.contact-form-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-form .form-group {
    margin-bottom: 20px;
    flex: 1;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.contact-form .form-control:focus {
    border-color: #4db2ec;
}

.contact-form .country-code {
    flex: 0 0 120px;
}

.contact-form .phone-input {
    flex: 1;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #db9232;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: #c7832b;
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form .form-row:has(.country-code) {
        flex-direction: row;
        gap: 10px;
    }

    .contact-form .country-code {
        flex: 0 0 115px;
        margin-bottom: 20px;
    }

    .contact-form .phone-input {
        flex: 1;
        margin-bottom: 20px;
    }
}

/* ==================== */
/* Server Experts Section */
/* ==================== */
.server-experts-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.server-experts-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.experts-image {
    max-width: 500px;
    margin: 0 auto;
}

.experts-image img {
    width: 100%;
    height: auto;
}

.experts-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.experts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experts-btn i {
    font-size: 20px;
}

.experts-btn.whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.experts-btn.whatsapp-btn:hover {
    background: #1da851;
}

.experts-btn.call-btn {
    background: #db9232;
    color: #ffffff;
}

.experts-btn.call-btn:hover {
    background: #c7832b;
}

@media (max-width: 767px) {
    .server-experts-section {
        padding: 40px 0;
    }

    .server-experts-section .section-title {
        font-size: 20px;
    }

    .experts-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .experts-btn {
        justify-content: center;
    }
}

/* ==================== */
/* About Intro Section  */
/* ==================== */
.about-intro-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-intro-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.about-intro-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    max-width: 900px;
    margin: 0 auto;
}

/* Partner Logos Section */
.partner-logos-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
}

.partner-logos-section .section-title {
    margin-bottom: 30px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo img {
    max-width: 300px;
    height: auto;
}

/* About Details Section */
.about-details-section {
    padding: 60px 0;
    background: #ffffff;
}

.about-highlight {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.about-details-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-details-content {
    flex: 1;
}

.about-details-content p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-details-image {
    flex: 1;
}

.about-details-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.about-details-image p {
    color: #666666;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .about-details-wrapper {
        flex-direction: column;
    }
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.team-designation {
    font-size: 14px;
    color: #db9232;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==================== */
/* Page Hero Section    */
/* ==================== */
.page-hero {
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .page-hero p {
        font-size: 14px;
    }
}

/* ==================== */
/* FAQ Section          */
/* ==================== */
.faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-section.faq-page .section-title {
    display: none;
}

.faq-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

/* Duplicate FAQ styles removed - see styles around line 1246 */

@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 26px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        max-height: 0;
        padding: 0 15px;
        overflow: hidden;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding: 15px;
    }
}

/* ==================== */
/* Footer Styles        */
/* ==================== */
.site-footer {
    background: #1e3a5f;
    color: #ffffff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-widget {
    padding: 0;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4db2ec;
}

.mt-30 {
    margin-top: 30px;
}

/* Footer Menu Groups */
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-group {
    margin-bottom: 5px;
}

.menu-heading {
    font-size: 14px;
    font-weight: 600;
    color: #4db2ec;
    margin-bottom: 10px;
}

.menu-group ul,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-group ul li,
.footer-links li {
    margin-bottom: 8px;
}

.menu-group ul li a,
.footer-links li a {
    color: #a0b4c8;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.menu-group ul li a:hover,
.footer-links li a:hover {
    color: #4db2ec;
    padding-left: 5px;
}

/* Address Content */
.address-content p {
    color: #a0b4c8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.address-content .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    flex-direction: unset;
    align-items: unset;
    gap: unset;
}

.address-content .contact-info li {
    margin-bottom: 12px;
    display: block;
}

.address-content .contact-info li a {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.address-content .contact-info li a:hover {
    color: #4db2ec;
}

.address-content .contact-info li a i {
    color: #4db2ec;
    margin-right: 8px;
}

.address-content .contact-info li span {
    color: #a0b4c8;
    font-size: 13px;
    margin-left: 5px;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 5px;
    padding: 5px;
}

/* DMCA Badge */
.dmca-badge {
    margin-top: 15px;
}

.dmca-badge img {
    max-width: 150px;
    height: auto;
}

/* ==================== */
/* Server Products Section */
/* ==================== */
.server-products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.server-products-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.server-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.server-product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.server-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.server-product-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.server-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #db9232;
    margin-bottom: 20px;
}

.server-product-image {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.server-product-image img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

.server-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1;
}

.server-product-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #555555;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-product-features li:last-child {
    border-bottom: none;
}

.server-product-features li i {
    color: #4db2ec;
    font-size: 12px;
}

.server-product-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #4db2ec;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.server-product-btn:hover {
    background: #1e3a5f;
}

@media (max-width: 991px) {
    .server-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .server-products-section {
        padding: 40px 0;
    }

    .server-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .server-product-card {
        padding: 25px;
    }

    .server-product-image img {
        height: 150px;
    }

    .server-product-title {
        font-size: 20px;
    }

    .server-product-price {
        font-size: 18px;
    }
}

/* ==================== */
/* Custom Server Section */
/* ==================== */
.custom-server-section {
    padding: 60px 0;
    background-image: url('../images/server-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.custom-server-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 58, 95, 0.9);
    z-index: 0;
}

.custom-server-section > .container {
    position: relative;
    z-index: 1;
}

.custom-server-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.custom-server-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.custom-server-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.custom-server-form .form-row {
    display: flex;
    gap: 20px;
}

.custom-server-form .form-group {
    margin-bottom: 20px;
    flex: 1;
}

.custom-server-form .form-group.country-code {
    flex: 0 0 120px;
}

.custom-server-form .form-group.phone-input {
    flex: 1;
}

.custom-server-form label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.custom-server-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
}

.custom-server-form .form-control::placeholder {
    color: #999999;
}

.custom-server-form .form-control:focus {
    outline: none;
    border-color: #4db2ec;
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.3);
}

.custom-server-form select.form-control {
    cursor: pointer;
}

.custom-server-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #db9232;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-server-form .btn-submit:hover {
    background: #c7832b;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .custom-server-section {
        padding: 40px 0;
    }

    .custom-server-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .custom-server-form {
        padding: 25px 20px;
    }

    .custom-server-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .custom-server-form .form-row:has(.country-code) {
        flex-direction: row;
        gap: 10px;
    }

    .custom-server-form .form-group.country-code {
        flex: 0 0 115px;
        margin-bottom: 20px;
    }

    .custom-server-form .form-group.phone-input {
        flex: 1;
        margin-bottom: 20px;
    }
}

/* ==================== */
/* Why Choose Us Section */
/* ==================== */
.why-choose-section {
    padding: 60px 0;
    background: #ffffff;
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.why-choose-icon {
    margin-bottom: 20px;
}

.why-choose-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.why-choose-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.why-choose-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        padding: 25px;
    }

    .why-choose-title {
        font-size: 18px;
    }
}

/* ==================== */
/* Browse Servers Section */
/* ==================== */
.browse-servers-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.browse-servers-section .section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.browse-servers-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.browse-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: #5d6d7e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.browse-btn:hover {
    background: #1e3a5f;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.3);
}

.browse-btn-prev {
    justify-content: space-between;
}

.browse-btn-next {
    justify-content: space-between;
}

.browse-btn .arrow-left {
    margin-right: 15px;
    font-weight: 700;
    font-size: 18px;
}

.browse-btn .arrow-right {
    margin-left: 15px;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 767px) {
    .browse-servers-section {
        padding: 40px 0;
    }

    .browse-servers-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .browse-btn {
        width: 100%;
        padding: 15px 20px;
        justify-content: center;
    }

    .browse-btn-prev,
    .browse-btn-next {
        justify-content: center;
    }
}

/* ==================== */
/* Build Server Section */
/* ==================== */
.build-server-section {
    padding: 60px 0;
    background-image: url('../images/server-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.build-server-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 58, 95, 0.9);
    z-index: 0;
}

.build-server-section > .container {
    position: relative;
    z-index: 1;
}

.build-server-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.build-server-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.build-server-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.build-server-form .form-row {
    display: flex;
    gap: 20px;
}

.build-server-form .form-group {
    margin-bottom: 20px;
    flex: 1;
}

.build-server-form .form-group.country-code {
    flex: 0 0 120px;
}

.build-server-form .form-group.phone-input {
    flex: 1;
}

.build-server-form label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.build-server-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333333;
    transition: all 0.3s ease;
}

.build-server-form .form-control::placeholder {
    color: #999999;
}

.build-server-form .form-control:focus {
    outline: none;
    border-color: #4db2ec;
    box-shadow: 0 0 0 3px rgba(77, 178, 236, 0.3);
}

.build-server-form select.form-control {
    cursor: pointer;
}

.build-server-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #db9232;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.build-server-form .btn-submit:hover {
    background: #c7832b;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .build-server-section {
        padding: 40px 0;
    }

    .build-server-section .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .build-server-form {
        padding: 25px 20px;
    }

    .build-server-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .build-server-form .form-row:has(.country-code) {
        flex-direction: row;
        gap: 10px;
    }

    .build-server-form .form-group.country-code {
        flex: 0 0 115px;
        margin-bottom: 20px;
    }

    .build-server-form .form-group.phone-input {
        flex: 1;
        margin-bottom: 20px;
    }
}

/* ==================== */
/* Contact Options Section */
/* ==================== */
.contact-options-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.contact-options-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.contact-options-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.contact-options-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: wrap;
}

.contact-option-item {
    display: block;
    transition: transform 0.3s ease;
}

.contact-option-item:hover {
    transform: scale(1.05);
}

.contact-option-item img {
    max-width: 250px;
    height: auto;
}

@media (max-width: 767px) {
    .contact-options-section {
        padding: 40px 0;
    }

    .contact-options-grid {
        flex-direction: column;
        gap: 20px;
    }

    .contact-option-item img {
        max-width: 200px;
    }
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #a0b4c8;
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-widget {
        text-align: center;
    }

    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-group ul li a,
    .footer-links li a {
        padding-left: 0;
    }

    .menu-group ul li a:hover,
    .footer-links li a:hover {
        padding-left: 0;
    }

    .address-content .contact-info {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .dmca-badge {
        text-align: center;
    }
}

/* ==================== */
/* Location Page Styles */
/* ==================== */

/* Location Hero Section */
.location-hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.location-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.location-subtitle {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Location Intro Section */
.location-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.location-intro-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-intro-content {
    flex: 1;
}

.location-intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.location-intro-content p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e3a5f;
}

.feature-item i {
    font-size: 20px;
    color: #db9232;
}

.location-intro-image {
    flex: 0 0 400px;
}

.location-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Location Why Section */
.location-why-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4db2ec 0%, #1e3a5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: #ffffff;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Location Categories Section */
.location-categories-section {
    padding: 80px 0;
    background: #ffffff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: #4db2ec;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #1e3a5f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 32px;
    color: #db9232;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    display: inline-block;
    padding: 10px 25px;
    background: #db9232;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.category-link:hover {
    background: #c17f28;
}

/* Location CTA Section */
.location-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%);
}

.location-cta-wrapper {
    text-align: center;
    color: #ffffff;
}

.location-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #db9232;
    color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #c17f28;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #1e3a5f;
}

.cta-buttons .btn-secondary i {
    margin-right: 8px;
}

/* Location Areas Section */
.location-areas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas-wrapper {
    margin-top: 40px;
    text-align: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.area-tag {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color: #1e3a5f;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: #1e3a5f;
    color: #ffffff;
    border-color: #1e3a5f;
}

.areas-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

/* Location Page Responsive */
@media (max-width: 991px) {
    .location-title {
        font-size: 32px;
    }

    .location-intro-wrapper {
        flex-direction: column;
    }

    .location-intro-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .location-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .location-hero-section {
        padding: 60px 0;
    }

    .location-title {
        font-size: 28px;
    }

    .location-subtitle {
        font-size: 16px;
    }

    .location-intro-section,
    .location-why-section,
    .location-categories-section,
    .location-cta-section,
    .location-areas-section {
        padding: 50px 0;
    }

    .location-intro-content h2 {
        font-size: 24px;
    }

    .location-features {
        flex-direction: column;
        gap: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-cta-content h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .area-tag {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* ================================ */
/* Buy Servers Location Page Styles */
/* ================================ */

/* Budget Selection Section */
.budget-selection-section {
    padding: 60px 0;
    background: #ffffff;
}

.budget-selection-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.budget-selection-section .section-description {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.budget-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.budget-card {
    text-align: center;
    max-width: 280px;
}

.budget-image {
    margin-bottom: 20px;
}

.budget-image img {
    max-width: 100%;
    height: auto;
}

.budget-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #db9232;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.budget-btn:hover {
    background: #c17f28;
}

/* Customize Server Section */
.customize-server-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.customize-server-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.customize-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Quality Features Section */
.quality-features-section {
    padding: 60px 0;
    background: #ffffff;
}

.quality-features-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.quality-card {
    text-align: center;
    padding: 20px;
}

.quality-icon {
    margin-bottom: 15px;
}

.quality-icon img {
    width: 64px;
    height: 64px;
}

.quality-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.quality-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

/* Engage Section */
.engage-section {
    padding: 60px 0;
    background: #1e3a5f;
}

.engage-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.engage-section .section-description {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.engage-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.engage-card {
    max-width: 300px;
}

.engage-card img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.engage-card:hover img {
    transform: scale(1.05);
}

/* Features Section (Location Page) */
.features-section {
    padding: 60px 0;
    background: #ffffff;
}

.features-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4db2ec 0%, #1e3a5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card .feature-icon i {
    font-size: 28px;
    color: #ffffff;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

/* Find Server CTA Section */
.find-server-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.find-server-cta-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 25px;
}

.find-server-cta-section .btn {
    padding: 15px 40px;
    font-size: 16px;
}

/* Rack Advantages Section */
.rack-advantages-section {
    padding: 60px 0;
    background: #ffffff;
}

.rack-advantages-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 120px;
    height: auto;
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

/* Buy Online Section */
.buy-online-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.buy-online-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.buy-online-section .section-text {
    text-align: center;
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Server Products Section */
.server-products-section {
    padding: 60px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.server-products-section .product-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.server-products-section .product-card:hover {
    border-color: #4db2ec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.server-products-section .product-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 5px;
}

.server-products-section .product-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.server-products-section .product-price {
    font-size: 20px;
    font-weight: 700;
    color: #db9232;
    margin-bottom: 20px;
}

.server-products-section .product-image {
    margin-bottom: 20px;
}

.server-products-section .product-image img {
    max-width: 100%;
    height: auto;
}

.server-products-section .product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.server-products-section .product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555555;
}

.server-products-section .product-features li:last-child {
    border-bottom: none;
}

.server-products-section .product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #db9232;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.server-products-section .product-btn:hover {
    background: #c17f28;
}

/* Why Storage Section */
.why-storage-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.why-storage-section .section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 30px;
}

.storage-benefits {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: decimal;
    padding-left: 20px;
}

.storage-benefits li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: #ffffff;
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.choose-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.choose-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.choose-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

/* Location FAQ Section - for location pages like Chennai, Noida */
.location-faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.location-faq-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.location-faq-section > .container > .faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-faq-section .faq-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.location-faq-section .faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .location-faq-section > .container > .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-faq-section .faq-image {
        order: -1;
        justify-content: center;
    }
}

/* Know More Section */
.know-more-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.know-more-section .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}

.know-more-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.know-more-card {
    max-width: 300px;
    transition: transform 0.3s ease;
}

.know-more-card:hover {
    transform: translateY(-5px);
}

.know-more-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Location Page Responsive Styles */
@media (max-width: 991px) {
    .budget-cards {
        gap: 20px;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .budget-selection-section,
    .customize-server-section,
    .quality-features-section,
    .engage-section,
    .features-section,
    .find-server-cta-section,
    .rack-advantages-section,
    .buy-online-section,
    .server-products-section,
    .why-storage-section,
    .why-choose-section,
    .location-faq-section,
    .know-more-section {
        padding: 40px 0;
    }

    .budget-selection-section .section-title,
    .customize-server-section .section-title,
    .engage-section .section-title,
    .features-section .section-title,
    .find-server-cta-section .section-title,
    .why-choose-section .section-title,
    .location-faq-section .section-title,
    .know-more-section .section-title {
        font-size: 22px;
    }

    .quality-features-section .section-title,
    .rack-advantages-section .section-title,
    .buy-online-section .section-title,
    .why-storage-section .section-title {
        font-size: 20px;
    }

    .budget-cards {
        flex-direction: column;
        align-items: center;
    }

    .budget-card {
        max-width: 100%;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .engage-cards {
        flex-direction: column;
        align-items: center;
    }

    .engage-card {
        max-width: 250px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .know-more-grid {
        flex-direction: column;
        align-items: center;
    }

    .know-more-card {
        max-width: 250px;
    }

    .customize-form-wrapper {
        padding: 20px;
    }
}

/* ==================== */
/* Policy Section       */
/* ==================== */
.policy-section {
    padding: 60px 0;
    background: #ffffff;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content p {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content strong {
    color: #1e3a5f;
}

@media (max-width: 767px) {
    .policy-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .policy-content p {
        font-size: 14px;
    }
}
