
/* =========================
   GLOBAL RESET
========================= */

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7fb;
  color: #222;
  line-height: 1.6;
}

/* =========================
   GLOBAL CONTAINER
========================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* =========================
   HEADER / NAVBAR
========================= */

header {
  width: 100%;
  height: 90px;
  background-color: #020617;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;

  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  width: 100%;
  max-width: 100%;
  
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0;
  margin: 0;
}

/* =========================
   LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 81px;
  width: auto;
  object-fit: contain;
}

/* =========================
   NAVIGATION
========================= */

nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: white;

  font-size: 1rem;
  font-weight: 600;

  transition: 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #38bdf8;
}

/* =========================
   MOBILE MENU
========================= */

.hamburger-menu {
  display: none;
  position: relative;
}

#menu-icon {
  font-size: 34px;
  color: white;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 60px;
  right: 0;

  width: 220px;

  background-color: white;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dropdown li {
  border-bottom: 1px solid #eee;
}

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

.dropdown a {
  display: block;

  padding: 14px 18px;

  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

.dropdown a:hover {
  background-color: #f3f4f6;
}

.hidden {
  display: none;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  width: 100%;
  min-height: 90vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;

  padding: 80px 20px;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.85)
    ),
    url("../assets/Hero1.png");

  background-size: cover;
  background-position: center;
}

.hero-content {
  width: 100%;
  max-width: 850px;
  margin: auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */

.quote-button,
.learn-more,
.service-box a,
.submit-btn,
.hero-btn {
  display: inline-block;

  background-color: #2563eb;
  color: white;

  padding: 12px 24px;
  margin-top: 25px;

  border: none;
  border-radius: 8px;

  text-decoration: none;
  font-weight: 600;

  transition: 0.3s ease;
}

.hero-btn {
  padding: 14px 30px;
}

.quote-button:hover,
.learn-more:hover,
.service-box a:hover,
.submit-btn:hover,
.hero-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
}

/* =========================
   INFO SECTION
========================= */

.info-section {
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 40px;

  padding: 80px 20px;
  background: white;
}

.info-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.info-image img {
  width: 100%;
  max-width: 350px;

  border-radius: 15px;
  object-fit: cover;
}

.info-text {
  flex: 1 1 400px;
  max-width: 550px;
  text-align: center;
}

.info-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: #0f172a;
}

.info-text p {
  margin-bottom: 25px;
  color: #555;
}

/* =========================
   SERVICES HERO
========================= */

.services-hero {
  width: 100%;
  min-height: 70vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;

  padding: 80px 20px;

  background:
    linear-gradient(
      rgba(110, 115, 129, 0.88),
      rgba(110, 112, 122, 0.88)
    ),
    url("../assets/services-bg.png");

  background-size: cover;
  background-position: center;
}

.services-hero-content {
  max-width: 850px;
}

.services-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 25px;
}

.services-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #d1d5db;
}

/* =========================
   SERVICES SECTION
========================= */

.services,
.service-section {
  padding: 100px 20px;
  background-color: #f8fafc;
}

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.section-title {
  text-align: center;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;

  margin-bottom: 20px;

  color: #0f172a;
  position: relative;
}

.section-title::after {
  content: "";

  display: block;

  width: 60px;
  height: 4px;

  background: #2563eb;

  margin: 0.5rem auto 0;

  border-radius: 2px;
}

.section-description {
  color: #64748b;
  line-height: 1.8;
  text-align: center;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid {
  width: 100%;
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 30px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card,
.service-box {
  background: white;

  padding: 35px 25px;

  border-radius: 18px;

  text-align: center;

  border: 1px solid #e5e7eb;

  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.service-box:hover {
  transform: translateY(-8px);

  box-shadow:
    0 15px 30px rgba(37, 99, 235, 0.12);

  border-color: #2563eb;
}

.service-icon,
.service-card iconify-icon {
  font-size: 60px;
  color: #2563eb;

  margin-bottom: 25px;
}

.service-card h3,
.service-box h3 {
  margin-bottom: 15px;

  color: #0f172a;
  font-size: 1.3rem;
}

.service-card p,
.service-box p {
  color: #64748b;
  line-height: 1.7;
}

/*
Service section 
*/
.services.section-title {
  text-align: center;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;

  margin-bottom: 20px;

  color: #ffffff;
  position: relative;
}
.services.section-title::after {
  content: "";

  display: block;

  width: 60px;
  height: 4px;

  background: #2563eb;

  margin: 0.5rem auto 0;

  border-radius: 2px;
}
.services.section-description {
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
  padding: 100px 20px;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.96),
      rgba(15, 23, 42, 0.96)
    );

  color: white;
}

.reviews-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

  gap: 30px;
}

.review-card {
  background:
    rgba(255, 255, 255, 0.05);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  padding: 35px 25px;

  border-radius: 18px;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(37, 99, 235, 0.4);
}

.stars {
  color: #3b82f6;

  font-size: 1.4rem;

  margin-bottom: 20px;
}

.review-card p {
  color: #d1d5db;

  line-height: 1.8;

  margin-bottom: 20px;
}

.review-card h4 {
  color: white;
  font-weight: 600;
}

/* =========================
   CONTACT SECTION
========================= */
/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  padding: 100px 20px;
   background:
    linear-gradient(
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.85)
    ),
    url("../assets/contact-bg.jpg");

  background-size: cover;
  background-position: center;
}

.contact-section-title {
  text-align: center;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;

  margin-bottom: 20px;

  color: #ffffff;
  position: relative;
}
.contact-section-title::after {
  content: "";

  display: block;

  width: 60px;
  height: 4px;

  background: #2563eb;

  margin: 0.5rem auto 0;

  border-radius: 2px;
}
.contact-section-description {
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.contact-form-wrapper {
  background: rgb(192, 192, 192);
  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
  width: 100%;
}

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

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;

  padding: 15px;

  border: 1px solid #dbeafe;
  border-radius: 10px;

  font-size: 16px;

  outline: none;

  transition: 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #2563eb;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: #2563eb;
  color: white;

  padding: 14px 30px;

  border: none;
  border-radius: 10px;

  cursor: pointer;

  font-weight: 600;

  transition: 0.3s;
}

.submit-btn:hover {
  background: #1d4ed8;
}

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

.info-card {
  background: #020617;
  color: white;

  padding: 35px;

  border-radius: 20px;
}

.info-card h3 {
  margin-bottom: 20px;
}

.info-card p {
  margin-bottom: 12px;
  color: #cbd5e1;
}

.map-container {
  overflow: hidden;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

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

  .form-row {
    flex-direction: column;
  }
}

.contact-container {
  width: 100%;
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px 20px;

  background:
    linear-gradient(
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.85)
    ),
    url("../assets/contact-bg.jpg");

  background-size: cover;
  background-position: center;
}

.contact-form {
  width: 100%;
  max-width: 500px;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);

  padding: 40px;

  border-radius: 16px;

  color: white;
}

.contact-form h2 {
  margin-bottom: 25px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 14px;
  margin-bottom: 20px;

  border: none;
  border-radius: 8px;

  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* =========================
   FOOTER
========================= */

.footer {
  width: 100%;

  background-color: #020617;
  color: white;

  padding-top: 70px;
}

.footer-top {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 50px;

  padding-bottom: 50px;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.08);
}

/* FOOTER BRAND */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 220px;
  max-width: 100%;

  margin-bottom: 20px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.8;
}

/* FOOTER LINKS */

.footer-links-section h3 {
  margin-bottom: 20px;

  font-size: 1.1rem;
  color: white;
}

.footer-links-section ul {
  list-style: none;
}

.footer-links-section li {
  margin-bottom: 12px;
}

.footer-links-section a {
  text-decoration: none;

  color: #cbd5e1;

  transition: 0.3s ease;
}

.footer-links-section a:hover {
  color: #3b82f6;
}

/* FOOTER SOCIAL */

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  padding: 35px 0;
}

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


.footer-social a {
  width: 48px;
  height: 48px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.05);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  color: white;

  font-size: 22px;

  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-4px);
}

/* FOOTER BOTTOM */

.footer-bottom {
  padding: 25px 0;

  border-top:
    1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;

  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #3b82f6;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

  header {
    height: 80px;
    padding: 0 20px;
  }

  .logo img {
    height: 72px;
  }

  nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .hero,
  .services-hero {
    min-height: 70vh;
    padding: 70px 20px;
  }

  .hero-content {
    padding-inline: 10px;
  }

  .info-section {
    flex-direction: column;
  }

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

  .services,
  .reviews-section {
    padding: 80px 20px;
  }

  .service-card,
  .review-card {
    padding: 30px 22px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-top {
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {

  header {
    height: 75px;
    padding: 0 15px;
  }

  .logo img {
    height: 67px;
  }

  #menu-icon {
    font-size: 30px;
  }

  .hero {
    padding: 70px 15px;
  }

  .service-card,
  .service-box,
  .review-card {
    padding: 25px 18px;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }
}

/* =========================
   GLOBAL
========================= */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* =========================
   HEADER
========================= */

header {
  width: 100%;
  height: 90px;
  background: #020617;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 999;
}

.logo img {
  width: 180px;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: white;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #38bdf8;
}

/* =========================
   MOBILE MENU
========================= */

.hamburger-menu {
  display: none;
  position: relative;
}

#menu-icon {
  color: white;
  font-size: 34px;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 60px;
  right: 0;

  background: white;
  width: 220px;

  border-radius: 12px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 15px 20px;
  color: #0f172a;
  border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
  background: #f1f5f9;
}

.hidden {
  display: none;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  height: 90vh;

  background:
    linear-gradient(rgba(2,6,23,0.7), rgba(2,6,23,0.7)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px;
}

.about-hero-content {
  max-width: 850px;
}

.about-hero h1 {
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-hero p {
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-block;
  background: #38bdf8;
  color: white;

  padding: 16px 35px;
  border-radius: 10px;

  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: #475569;
  font-size: 17px;
}

.about-image img {
  border-radius: 20px;
  height: 500px;
  object-fit: cover;

  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
  background: #020617;
  padding: 80px 0;
}

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

.stat-card {
  background: #0f172a;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
}

.stat-card h2 {
  color: #38bdf8;
  font-size: 50px;
  margin-bottom: 10px;
}

.stat-card p {
  color: white;
  font-size: 18px;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-description {
  color: #64748b;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

/* =========================
   GALLERY
========================= */

.gallery-section {
  padding: 100px 0;
}

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

.gallery-grid img {
  height: 280px;
  object-fit: cover;

  border-radius: 18px;

  transition: 0.4s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

/* =========================
   CAROUSEL
========================= */

.work-carousel-section {
  padding: 100px 0;
  background: #f1f5f9;
}

.swiper {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide {
  background: white;
  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.swiper-slide img {
  height: 280px;
  object-fit: cover;
}

.slide-content {
  padding: 25px;
}

.slide-content h3 {
  margin-bottom: 12px;
}

.slide-content p {
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   WHY US
========================= */

.why-us-section {
  padding: 100px 0;
}

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

.why-card {
  background: white;
  padding: 40px 30px;

  border-radius: 20px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-card iconify-icon {
  font-size: 60px;
  color: #38bdf8;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
}

.why-card p {
  color: #64748b;
  line-height: 1.8;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #020617;
  color: white;
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;

  padding-bottom: 50px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.8;
}

.footer-links-section h3 {
  margin-bottom: 20px;
}

.footer-links-section ul {
  list-style: none;
}

.footer-links-section li {
  margin-bottom: 12px;
}

.footer-links-section a {
  color: #cbd5e1;
  transition: 0.3s;
}

.footer-links-section a:hover {
  color: #38bdf8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  padding: 25px 0;
  text-align: center;

  color: #94a3b8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .about-grid,
  .stats-grid,
  .why-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .about-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

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

  .section-title {
    font-size: 34px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 17px;
  }

  header {
    padding: 0 20px;
  }
}