/* =========================================================
   SHUCHIT INFOTEK - STYLESHEET
   Base Font Size: 15.5px (Perfect balanced legibility)
   Container: Widescreen expanded layout (1380px max-width)
   ========================================================= */

:root {
  --primary-blue: #0284c7;
  --primary-hover: #0369a1;
  --bg-dark-hero: #050b17;
  --bg-dark-card: #081124;
  --bg-dark-footer: #040913;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Perfect balanced font size: bigger than 14px, smaller than 17.5px */
html {
  scroll-behavior: smooth;
  font-size: 15.5px;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* Page spread out on both sides */
.wide-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================= TOP UTILITY BAR ================= */
.top-bar {
  background: #030811;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span {
  margin-right: 14px;
}

.top-bar-left .sep {
  opacity: 0.35;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right a:hover {
  color: #ffffff;
}

.btn-login {
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* ================= MAIN HEADER / NAVBAR ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 11, 23, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-svg {
  width: 36px;
  height: 36px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.p-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.p-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 1.2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 500;
  color: #cbd5e1;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.btn-view-plans {
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-view-plans:hover {
  background-color: var(--primary-hover);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  background: var(--bg-dark-hero);
  background-image: linear-gradient(180deg, rgba(5, 11, 23, 0.84) 0%, rgba(5, 11, 23, 0.98) 100%),
                    url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center center;
  padding: 95px 0 85px;
  text-align: left;
}

.hero-wrapper {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #38bdf8;
  margin-bottom: 16px;
}

.hero-heading {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.68;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.hero-sub-description {
  font-size: 0.94rem;
  line-height: 1.62;
  color: #94a3b8;
  margin-bottom: 30px;
}

.btn-hero {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.btn-hero:hover {
  background-color: var(--primary-hover);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 40px;
}


.faq-q p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--bg-dark-footer);
  color: #94a3b8;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.text-white {
  color: #ffffff !important;
}

.footer-msg {
  font-size: 0.93rem;
  line-height: 1.68;
  color: #94a3b8;
  margin-bottom: 22px;
  max-width: 420px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.91rem;
}

.c-label {
  font-weight: 600;
  color: #ffffff;
  margin-right: 6px;
}

.col-head {
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-links a {
  font-size: 0.93rem;
  color: #94a3b8;
}

.col-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #64748b;
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vps-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 34px;
  }
  .history-split {
    grid-template-columns: 1fr;
  }
  .datacenter-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark-hero);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu.is-open {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .domain-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .history-points {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}






/* =========================================================
   RESET
========================================================= */




/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}


/* =========================================================
   PAGE BANNER
========================================================= */

.page-banner {
    position: relative;

    width: 100%;
    height: 250px;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 10, 27, 0.96) 0%,
            rgba(3, 13, 32, 0.88) 48%,
            rgba(3, 14, 34, 0.72) 100%
        ),
        url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


.banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 7, 20, 0.82),
            rgba(2, 15, 36, 0.48)
        );
}


.banner-content {
    position: relative;
    z-index: 2;

    padding-top: 8px;
}


.breadcrumb {
    color: #0878ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;

    margin-bottom: 18px;
}


.banner-content h1 {
    color: #ffffff;

    font-size: 62px;
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}


/* =========================================================
   MAIN ABOUT SECTION
========================================================= */

.about-section {
    width: 100%;
    background: #f7faff;
}


/* =========================================================
   FIRST SECTION
========================================================= */

.first-section {
    padding-top: 112px;
    padding-bottom: 150px;
}


.about-grid {
    display: grid;
    align-items: center;
}


.first-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 74px;
}


/* =========================================================
   TEXT CONTENT
========================================================= */

.about-content {
    padding-left: 0;
    padding-top: 10px;
}


.small-heading {
    display: block;

    color: #0878ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.4px;

    margin-bottom: 20px;
}


.about-content h2 {
    color: #101b2e;

    font-size: 50px;
    line-height: 0.99;

    font-weight: 800;

    letter-spacing: -1.7px;

    margin-bottom: 28px;
}


.about-content p {
    max-width: 590px;

    color: #5c7190;

    font-size: 17px;
    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   IMAGE
========================================================= */

.about-image {
    width: 100%;

    overflow: hidden;

    border-radius: 6px;

    position: relative;
}


.about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.about-image:hover img {
    transform: scale(1.025);
}


.first-grid .about-image {
    height: 435px;
}


/* =========================================================
   HISTORY SECTION
========================================================= */

.history-section {
    padding-bottom: 112px;
}


.history-grid {
    grid-template-columns: 1fr 1fr;

    column-gap: 74px;
}


.history-image {
    height: 435px;
}


.history-content {
    padding-left: 0;
}


.history-content h2 {
    color: #101b2e;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.6px;

    margin-bottom: 38px;
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 38px;
    row-gap: 30px;

    width: 100%;
}


.feature-item {
    min-height: 62px;

    border-left: 2px solid #0878ff;

    padding-left: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.feature-number {
    color: #0878ff;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.8px;

    margin-bottom: 9px;
}


.feature-item p {
    color: #101b2e;

    font-size: 16px;
    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   COMPLETE CONTENT SECTION
========================================================= */

.complete-content-section {
    width: 100%;

    background: #eaf3fb;

    padding-top: 112px;
    padding-bottom: 112px;
}


.content-dropdown {
    width: 100%;

    background: #ffffff;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(18, 45, 80, 0.02);
}


.content-dropdown summary {
    list-style: none;

    cursor: pointer;

    min-height: 76px;

    padding: 0 26px;

    display: flex;
    align-items: center;

    color: #101b2e;

    font-size: 17px;
    font-weight: 600;
}


.content-dropdown summary::-webkit-details-marker {
    display: none;
}


.arrow {
    font-size: 13px;

    margin-right: 11px;

    transition: transform 0.3s ease;
}


.content-dropdown[open] .arrow {
    transform: rotate(90deg);
}


.dropdown-content {
    padding: 5px 32px 35px 48px;

    color: #5c7190;
}


.dropdown-content h3 {
    color: #101b2e;

    font-size: 28px;

    margin-bottom: 15px;
}


.dropdown-content p {
    max-width: 1000px;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 14px;
}


/* =========================================================
   BOTTOM STRIP
========================================================= */

.bottom-strip {
    height: 28px;

    width: 100%;

    background: #061328;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1400px) {

    .container {
        max-width: 1100px;
    }

    .first-grid,
    .history-grid {
        column-gap: 60px;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .history-content h2 {
        font-size: 44px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        max-width: calc(100% - 70px);
    }


    .page-banner {
        height: 220px;
    }


    .banner-content h1 {
        font-size: 52px;
    }


    .first-section {
        padding-top: 80px;
        padding-bottom: 90px;
    }


    .first-grid,
    .history-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .about-content {
        order: 1;
    }


    .first-grid .about-image {
        order: 2;
    }


    .history-image {
        order: 1;
    }


    .history-content {
        order: 2;
    }


    .first-grid .about-image,
    .history-image {
        height: 430px;
    }


    .history-section {
        padding-bottom: 90px;
    }


    .complete-content-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        max-width: calc(100% - 36px);
    }


    /* BANNER */

    .page-banner {
        height: 190px;

        background-position: center;
    }


    .banner-content {
        padding-top: 0;
    }


    .breadcrumb {
        font-size: 10px;
        letter-spacing: 1px;

        margin-bottom: 13px;
    }


    .banner-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }


    /* FIRST SECTION */

    .first-section {
        padding-top: 60px;
        padding-bottom: 70px;
    }


    .first-grid,
    .history-grid {
        gap: 38px;
    }


    .small-heading {
        font-size: 11px;
        letter-spacing: 1px;

        margin-bottom: 15px;
    }


    .about-content h2 {
        font-size: 39px;
        line-height: 1;

        letter-spacing: -1.2px;

        margin-bottom: 22px;
    }


    .about-content p {
        font-size: 15px;
        line-height: 1.75;
    }


    .first-grid .about-image,
    .history-image {
        height: 280px;
    }


    /* HISTORY */

    .history-section {
        padding-bottom: 70px;
    }


    .history-content h2 {
        font-size: 38px;

        margin-bottom: 30px;
    }


    .features-grid {
        grid-template-columns: 1fr;

        row-gap: 22px;
    }


    .feature-item {
        min-height: 58px;
    }


    .feature-item p {
        font-size: 15px;
    }


    /* COMPLETE CONTENT */

    .complete-content-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .content-dropdown summary {
        min-height: 65px;

        padding: 0 18px;

        font-size: 15px;
    }


    .dropdown-content {
        padding: 5px 20px 28px 35px;
    }


    .dropdown-content h3 {
        font-size: 23px;
    }


    .dropdown-content p {
        font-size: 14px;
        line-height: 1.7;
    }


    .bottom-strip {
        height: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .container {
        max-width: calc(100% - 28px);
    }


    .page-banner {
        height: 170px;
    }


    .banner-content h1 {
        font-size: 36px;
    }


    .about-content h2 {
        font-size: 34px;
    }


    .history-content h2 {
        font-size: 34px;
    }


    .first-grid .about-image,
    .history-image {
        height: 240px;
    }

}