* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* body {
  font-family: "Poppins", sans-serif;
} */
body {
  padding-top: 50px;
  margin: 0;
  font-family: Poppins, sans-serif;
  background: #f7f8ff;
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 102, 255, 0.12) 0%,
      transparent 10%
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 140, 255, 0.08) 0%,
      transparent 18%
    ),
    radial-gradient(
      circle at bottom center,
      rgba(0, 89, 255, 0.1) 0%,
      transparent 25%
    ),
    linear-gradient(180deg, #02050b 0%, #040816 35%, #02050b 70%, #000000 100%);
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Glow */

/* ===== CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.top-text {
  color: #1e6dff;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #fff;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: #1e6dff;
}

.description {
  color: #c9c9c9;
  font-size: 20px;
  line-height: 1.7;
  max-width: 760px;
  margin: auto;
  font-weight: 300;
}

/* Bottom Line */
.line {
  width: 70px;
  height: 4px;
  background: #1e6dff;
  margin: 30px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(30, 109, 255, 0.7);
}

/* ===== SERVICES SECTION ===== */

/* ===== SECTION GLOW ===== */

.services-section {
  width: 100%;
  background: black;
  padding: 30px 4%;
  position: relative;
  overflow: hidden;
}

/* ===== CONTAINER ===== */

.services-container {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 20px;

  align-items: stretch;
}

/* ===== CARD ===== */

/* ===== PREMIUM 3D SERVICE CARD ===== */

.service-card {
  width: 100%;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(18, 25, 45, 0.72),
    rgba(5, 10, 20, 0.82)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  backdrop-filter: blur(22px);

  transition: 0.5s ease;

  transform-style: preserve-3d;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

/* ===== TOP SHINE EFFECT ===== */

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );

  transform: skewX(-25deg);

  transition: 0.8s;
}

/* ===== BLUE GLOW ===== */

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(0, 102, 255, 0.15),
    transparent 60%
  );

  opacity: 0;
  transition: 0.5s ease;
}

/* ===== HOVER ===== */

.service-card:hover {
  transform: translateY(-12px) rotateX(6deg) scale(1.02);

  border-color: rgba(0, 102, 255, 0.45);

  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.55),
    0 0 35px rgba(0, 102, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
  left: 140%;
}

.service-card:hover::after {
  opacity: 1;
}

/* ===== IMAGE ===== */
/* ===== IMAGE ===== */

.service-image {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.12);
  filter: brightness(1.1);
}

/* IMAGE OVERLAY */

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(2, 8, 18, 1), rgba(2, 8, 18, 0.2));

  z-index: 1;
}
/* ===== CONTENT ===== */

.service-content {
  padding: 24px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

/* ===== PREMIUM TITLE EFFECT ===== */

.service-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;

  text-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

/* ===== BUTTON EFFECT ===== */

.service-content a {
  position: relative;
  color: #0a84ff;
  transition: 0.35s ease;
}

.service-content a:hover {
  color: #5db2ff;

  text-shadow: 0 0 12px rgba(0, 102, 255, 0.5);
}

/* ===== ICON ===== */

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 14px;
}

/* ICON COLORS */

.blue {
  background: linear-gradient(135deg, #0066ff, #00aeff);
}

.green {
  background: linear-gradient(135deg, #1db954, #8eff00);
}

.orange {
  background: linear-gradient(135deg, #ff7b00, #ffb347);
}

.purple {
  background: linear-gradient(135deg, #7f5cff, #b56cff);
}

.cyan {
  background: linear-gradient(135deg, #00bcd4, #00ffe7);
}

/* ===== TITLE ===== */

.service-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* ===== DESCRIPTION ===== */

.service-content p {
  color: #bfc7d8;
  font-size: 12px;
  line-height: 1.9;

  min-height: 92px;
}

/* ===== LIST ===== */

.service-content ul {
  list-style: none;

  margin-bottom: 5px;

  flex: 1;
}

.service-content ul li {
  color: #dbe4ff;
  font-size: 12px;
  margin-bottom: 9px;
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}

.service-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a6cff;
  box-shadow: 0 0 10px #0a6cff;
}

/* ===== BUTTON ===== */
.service-content a {
  margin-top: auto;

  color: #0a6cff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-content a span {
  transition: 0.3s ease;
}

.service-content a:hover span {
  transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1400px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 640px;
  }
}

@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}
/* ===== ENQUIRY SECTION ===== */

.enquiry-section {
  width: 100%;
  background: transparent;
  padding: 30px 5%;
}

/* ===== MAIN BOX ===== */

.enquiry-box {
  width: 100%;
  min-height: 95px;
  border-radius: 18px;
  background: rgba(7, 12, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  position: relative;
  overflow: hidden;
}

/* BLUE GLOW */

.enquiry-box::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.12) 0%,
    transparent 70%
  );
  left: -120px;
  top: -180px;
}

/* ===== LEFT CONTENT ===== */

.enquiry-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* ===== ICON ===== */

.enquiry-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.45);
  background: rgba(0, 102, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow:
    0 0 20px rgba(0, 102, 255, 0.25),
    inset 0 0 18px rgba(0, 102, 255, 0.15);
}

/* ===== TEXT ===== */

.enquiry-text h2 {
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 6px;
}

.enquiry-text p {
  color: #9ca8bd;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== BUTTON ===== */

.enquiry-btn {
  position: relative;
  z-index: 2;
  min-width: 180px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(0, 102, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #0a84ff;
  font-size: 17px;
  font-weight: 600;
  transition: 0.35s ease;
  background: rgba(0, 102, 255, 0.04);
}

.enquiry-btn span {
  transition: 0.35s ease;
}

.enquiry-btn:hover {
  background: #0a6cff;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 102, 255, 0.35);
}

.enquiry-btn:hover span {
  transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .enquiry-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .enquiry-btn {
    width: 100%;
  }

  .enquiry-text h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .enquiry-left {
    align-items: flex-start;
  }

  .enquiry-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
  }

  .enquiry-text h2 {
    font-size: 20px;
  }

  .enquiry-text p {
    font-size: 14px;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
  .services-container {
    flex-wrap: wrap;
  }

  .service-card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 100%;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .description {
    font-size: 16px;
  }

  .top-text {
    letter-spacing: 3px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .description {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ========================================= */
/* ===== EXTRA RESPONSIVENESS FIXES ======== */
/* ========================================= */

/* ===== LARGE LAPTOPS ===== */

@media (max-width: 1200px) {
  .hero-content {
    max-width: 700px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .description {
    font-size: 18px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== TABLET ===== */

@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }

  .hero {
    height: auto;
    padding: 100px 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  .description {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-section {
    padding: 50px 20px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-card {
    min-height: auto;
  }

  .service-content {
    padding: 22px;
  }

  .service-content p {
    min-height: auto;
  }

  .enquiry-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
  }

  .enquiry-btn {
    width: 100%;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .hero {
    padding: 90px 18px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .top-text {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .description {
    font-size: 15px;
  }

  .line {
    margin-top: 22px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    width: 100%;
    border-radius: 18px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 14px;
  }

  .service-content a {
    font-size: 15px;
  }

  .enquiry-section {
    padding: 20px;
  }

  .enquiry-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .enquiry-text h2 {
    font-size: 24px;
  }

  .enquiry-text p {
    font-size: 14px;
  }
}

/* ===== SMALL MOBILE ===== */

@media (max-width: 480px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .description {
    font-size: 14px;
  }

  .top-text {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 18px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 13px;
  }

  .enquiry-box {
    padding: 20px;
    border-radius: 14px;
  }

  .enquiry-text h2 {
    font-size: 20px;
  }

  .enquiry-btn {
    height: 50px;
    font-size: 15px;
  }
}
/* ========================================= */
/* ===== EXTRA RESPONSIVE FIXES ============ */
/* ========================================= */

/* ===== 1600px LARGE SCREEN ===== */

/* ========================================= */
/* ===== 1300px RESPONSIVE FIX ============= */
/* ========================================= */

@media (max-width: 1300px) {
  .hero {
    padding: 100px 30px;

    height: auto;
  }

  .hero-content {
    max-width: 850px;
  }

  .hero-content h1 {
    font-size: 52px;

    line-height: 1.2;
  }

  .description {
    font-size: 18px;
  }

  /* ===== SERVICES ===== */

  .services-section {
    padding: 45px 30px;
  }

  .services-container {
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
  }

  .service-card {
    min-height: auto;
  }

  .service-image {
    height: 190px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    min-height: auto;

    font-size: 13px;
  }

  .service-content ul li {
    font-size: 13px;
  }
}

/* ========================================= */
/* ===== 1100px RESPONSIVE FIX ============= */
/* ========================================= */

@media (max-width: 1100px) {
  .hero-content h1 {
    font-size: 46px;
  }

  .description {
    font-size: 16px;
  }

  /* ===== SERVICES ===== */

  .services-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  .service-card {
    width: 100%;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 14px;

    line-height: 1.8;
  }

  /* ===== ENQUIRY ===== */

  .enquiry-box {
    flex-direction: column;

    align-items: flex-start;

    gap: 26px;

    padding: 28px;
  }

  .enquiry-btn {
    width: 100%;
  }
}

/* ========================================= */
/* ===== 900px RESPONSIVE FIX ============== */
/* ========================================= */

@media (max-width: 900px) {
  .hero {
    padding: 90px 22px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .top-text {
    font-size: 11px;

    letter-spacing: 3px;
  }

  .description {
    font-size: 15px;

    line-height: 1.8;
  }

  /* ===== SERVICES ===== */

  .services-section {
    padding: 40px 22px;
  }

  .services-container {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image {
    height: 240px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 14px;
  }
} /* ===== 1200px ===== */

@media (max-width: 1200px) {
  .hero {
    padding: 100px 30px;

    height: auto;
  }

  .hero-content {
    max-width: 800px;
  }

  .hero-content h1 {
    font-size: 50px;

    line-height: 1.2;
  }

  .description {
    font-size: 17px;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  .service-card {
    min-height: auto;
  }
}

/* ===== 992px ===== */

@media (max-width: 992px) {
  body {
    padding-top: 70px;
  }

  .hero {
    padding: 90px 22px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .description {
    font-size: 16px;

    line-height: 1.8;
  }

  .top-text {
    font-size: 11px;

    letter-spacing: 3px;
  }

  .services-section {
    padding: 40px 22px;
  }

  .services-container {
    gap: 22px;
  }

  .service-image {
    height: 210px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 14px;

    min-height: auto;
  }

  .service-content ul li {
    font-size: 14px;
  }

  .enquiry-section {
    padding: 30px 22px;
  }

  .enquiry-box {
    padding: 28px;
  }

  .enquiry-text h2 {
    font-size: 26px;
  }
}

/* ===== 768px ===== */

@media (max-width: 768px) {
  .hero {
    padding: 85px 18px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .description {
    font-size: 15px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 14px;

    line-height: 1.8;
  }

  .service-content a {
    font-size: 15px;
  }

  .enquiry-box {
    flex-direction: column;

    align-items: flex-start;

    gap: 24px;
  }

  .enquiry-left {
    flex-direction: column;

    align-items: flex-start;
  }

  .enquiry-btn {
    width: 100%;
  }
}

/* ===== 600px ===== */

@media (max-width: 600px) {
  .hero {
    padding: 80px 16px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .line {
    margin-top: 24px;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 18px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .enquiry-box {
    padding: 22px;

    border-radius: 16px;
  }

  .enquiry-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;

    font-size: 20px;
  }

  .enquiry-text h2 {
    font-size: 22px;
  }

  .enquiry-text p {
    font-size: 14px;
  }

  .enquiry-btn {
    height: 50px;

    font-size: 15px;
  }
}

/* ===== 400px ===== */

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .top-text {
    font-size: 8px;

    letter-spacing: 1px;
  }

  .description {
    font-size: 13px;
  }

  .service-image {
    height: 180px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p,
  .service-content ul li {
    font-size: 13px;
  }

  .enquiry-text h2 {
    font-size: 20px;
  }
}

/* ========================================= */
/* ===== 1150px - 1200px =================== */
/* ========================================= */

@media (min-width: 1150px) and (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
  }

  .service-card {
    border-radius: 18px;

    overflow: hidden;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 19px;
  }

  .service-content p {
    font-size: 13px;

    line-height: 1.7;

    min-height: auto;
  }

  .service-content ul li {
    font-size: 13px;

    line-height: 1.7;
  }

  .service-content a {
    font-size: 14px;
  }
}

/* ========================================= */
/* ===== 1100px - 1149px =================== */
/* ========================================= */

@media (min-width: 1100px) and (max-width: 1149px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
  }

  .service-card {
    width: 100%;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 14px;

    line-height: 1.8;
  }

  .service-content ul li {
    font-size: 14px;

    line-height: 1.8;
  }
}

/* ========================================= */
/* ===== 1050px - 1099px =================== */
/* ========================================= */

@media (min-width: 1050px) and (max-width: 1099px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-image {
    height: 210px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content h3 {
    font-size: 21px;
  }

  .service-content p {
    font-size: 14px;

    line-height: 1.8;
  }

  .service-content ul li {
    font-size: 14px;

    line-height: 1.8;
  }

  .service-content a {
    font-size: 15px;
  }
}
