@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;0,700;1,200&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
background-color: #000;
}
a {
  text-decoration: none;
}

section {
  padding: 30px 5%;
}
header {
  transition: 0.3s;
}
header {
  height: 70px;
  position: fixed;
  padding: 15px 8%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0000003b;
  z-index: 100;
  transition: 0.3s;
  /* border-bottom: 1px solid black; */
}

header .logo {
  filter: brightness(50);
  position: relative;
  font-size: 1.7rem;
  font-weight: 700;
  /* color:#ff991c; */
}

header .logo img {
  top: 6px;
  position: relative;
  height: 90px;
  width: 200px;
  padding: 5px 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

header .navlist {
  display: flex;
}
.navlist li {
  margin: 0 1rem;
}
.navlist li a {
  font-size: 15px;
  display: inline-flex;
  font-weight: 600;
  color: white;
}
.navlist li a:hover {
  color: white;
}
.right-header {
  display: flex;
  align-items: center;
  justify-content: end;
  grid-gap: 0.8rem;
}
header .btn {
  background: #1495ff;
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 500;
  font-size:16px;
  transition: all 0.3s ease;
}
header .btn i {
  padding-left: 10px;
}
.menu-icon {
  position: relative;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.menu-icon .bar,
.menu-icon::after,
.menu-icon::before {
  content: "";
  display: none;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-6px, 6px);
}
.menu-icon.active::after {
  transform: rotate(45deg) translate(-8px, -8px);
}
.menu-icon.active .bar {
  opacity: 0;
}

/* ================= HERO SECTION FIXED ==================== */

.home-section {
  position: relative;
  width: 100%;
  height: 95vh;        /* FULL SCREEN FIX */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Background with dark overlay */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("/image/home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Particles FIX */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Text Content Centered */
.content {
  position: relative;
  z-index: 10;
  color:  #1495ff;
  padding: 20px;
  max-width: 900px;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Buttons */
.buttons {
  margin-top: 10px;
}

.buttons .btn {
  padding: 10px 20px;
  background: #1495ff;
  border-radius: 50px;
  color: white;
  border: none;
  cursor: pointer;
  margin: 0 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.buttons .btn:hover {
  transform: scale(1.08);
  background: #1495ff;
}

/* MOBILE RESPONSIVE FIX */
@media(max-width:786px) {
  .content h1 {
    font-size: 1.7rem;
  }

  .content p {
    font-size: 1rem;
  }

  .buttons .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* ================== SECTION BACKGROUND IMAGE ================== */
.services-section {
  width: 100%;
  padding: 80px 8%;
  background: url('image/service.jpg') no-repeat center/cover;
  position: relative;
  color: #fff;
}

/* DARK OVERLAY */
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(1px);
  z-index: 0;
}

/* CONTENT WRAPPER FIX */
.services-inner {
  position: relative;
  z-index: 5;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1495ff;
  text-transform: uppercase;
}

/* ================== SERVICE CARDS ================== */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 35px;
}

.service-card {
  background: rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
  transition: 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #1495ff;
  box-shadow: 0 15px 45px rgba(20,149,255,0.35);
}

/* IMAGE */
.service-img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 18px;
}

/* TEXT */
.service-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #eee;
  line-height: 1.6;
  font-size: 15px;
}

/* BUTTON */
.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #1495ff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.service-btn:hover {
  background: #0074d4;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .section-title h2 { font-size: 2rem; }
}

/* ================== WHY CHOOSE US ================== */
.why-choose-section {
  width: 100%;
  padding: 80px 8%;
  /* background: url('https://i.ibb.co/Xj71q9p/solar-bg.jpg') no-repeat center/cover; */
  position: relative;
  color: #fff;
  margin-top: 40px;
}

/* Blur Overlay */
.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(1px);
  z-index: 0;
}

.why-inner {
  position: relative;
  z-index: 2;
}

.why-title {
  text-align: center;
  margin-bottom: 50px;
}

.why-title h2 {
  color: #1495ff;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
}

.why-title p {
  color: #eaeaea;
  font-size: 16px;
  margin-top: 10px;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
  border: 2px solid transparent;
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #1495ff;
  box-shadow: 0 12px 40px rgba(20,149,255,0.40);
}

/* ICON */
.why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

/* TEXT */
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.why-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.5;
}

/* =============== contact us ==================== */
.contact-section {
  padding: 80px 8%;
  background: #0a0f1a;      /* Deep Black-Blue */
  font-family: "Inter", sans-serif;
  color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Left Info */
.contact-info h2 {
  font-size: 40px;
  font-weight: 700;
  color: #4aa8ff;    /* Bright Neon Blue */
}

.subtitle {
  font-size: 18px;
  color: #c6d9ff;
  margin-bottom: 30px;
}

.info-box {
  background: #0f1625;  /* soft dark container */
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #4aa8ff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.info-box h3 {
  color: #4aa8ff;
  font-size: 20px;
  margin-bottom: 6px;
}

.info-box p {
  color: #dbe6ff;
}

/* Right Form */
.contact-form {
  background: #101828;  /* Dark form background */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

.contact-form h3 {
  font-size: 28px;
  color: #4aa8ff;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #33415c;
  background: #0f1625;
  color: #eaf1ff;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
  color: #8aa2d6;
}

input:focus,
textarea:focus {
  border-color: #4aa8ff;
  box-shadow: 0 0 8px rgba(74, 168, 255, 0.5);
}

.submit-btn {
  background: #4aa8ff;
  color: #0a0f1a;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1a73e8;
  color: white;
}

/* Map */
.map-container {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.8);
  border: 2px solid #4aa8ff;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .info-box {
    text-align: center;
  }
}
/* ==================== About Section ================== */

/* ========== HERO ========== */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
              url('image/service.jpg') center/cover no-repeat;
  padding: 30px 8%;
  text-align: center;
}

.about-hero h1 {
  font-size: 50px;
  color: #4aa8ff;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 20px;
  color: #d3e6ff;
}

/* ========== ABOUT ROWS ========== */
.about-section {
  padding: 80px 8%;
    background-image: 
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url("/image/home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 80px;
  gap: 40px;
  align-items: center;
}

.about-row.reverse {
  direction: rtl; /* Simple reverse trick */
}

.about-row.reverse .about-content {
  direction: ltr;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid #4aa8ff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #4aa8ff;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #e2ecff;
}

.about-list li {
  margin-bottom: 10px;
  color: #4aa8ff;
}

/* BUTTON */
.about-btn {
  background: #4aa8ff;
  color: #0a0f1a;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #1a73e8;
  color: white;
}

/* ========== MISSION SECTION ========== */
.mission-section {
  padding: 80px 8%;
  text-align: center;
}

.mission-section h2 {
  font-size: 40px;
  color: #4aa8ff;
  margin-bottom: 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mission-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border-left: 4px solid #4aa8ff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}


/* ========== COMPANY STATS (UPDATED) ========== */
.company-stats {
  padding: 70px 8%;
}

.company-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.company-stat-box {
  background: #0f1625;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #4aa8ff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
}

.company-stat-box h2 {
  font-size: 35px;
  color: #4aa8ff;
}

.company-stat-box p {
  color: #e2ecff;
}

/* Responsive */
@media (max-width: 900px) {
  .company-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  
  .about-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-row.reverse {
    direction: ltr;
  }

  .mission-grid,
  .why-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* =========  footer ========================== */
/* Light & Dark Theme Base */
:root {
    --bg: #0f1f45;
    --text: #ffffff;
    --text-light: #d4d7e3;
    --border: #43557a;
}

.light-mode {
    --bg: #f1f1f1;
    --text: #0f0f0f;
    --text-light: #333;
    --border: #ccc;
}

.footer {
    background: var(--bg);
    color: var(--text);
    padding: 50px 20px;
    position: relative;
}

/* Footer Grid */
.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* Section Titles */
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

/* Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

/* Hover Animation */
.footer-section ul li a:hover {
    color: var(--text);
    padding-left: 6px;
}

/* Logo */
.logo-section .logo {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
}

.logo-section .logo span {
    font-size: 24px;
    font-weight: normal;
}

/* Contact Area (Updated Class) */
.contact-area p {
    margin: 6px 0;
    font-size: 15px;
}

.contact-area i {
    margin-right: 8px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: var(--text);
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

/* Theme Toggle Button */
.theme-toggle {
    position: absolute;
    top: 15px;
    right: 20px;
}

#themeBtn {
    background: transparent;
    border: 2px solid var(--text);
    color: var(--text);
    padding: 6px 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

#themeBtn:hover {
    background: var(--text);
    color: var(--bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons a {
        margin: 0 8px;
    }
}


.projects-section {
  padding: 80px 8%;
  background: #0a0f1a;
  color: white;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.projects-title {
  font-size: 42px;
  color: #4aa8ff;
  margin-bottom: 5px;
}

.projects-subtitle {
  color: #c3d8ff;
  margin-bottom: 40px;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Project Card */
.project-card {
  background: #0f1625;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #1f2f4a;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #4aa8ff;
  box-shadow: 0 8px 30px rgba(74, 168, 255, 0.3);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 18px;
  text-align: left;
}

.project-content h3 {
  color: #4aa8ff;
  margin-bottom: 6px;
}

.project-content p {
  color: #c3d8ff;
  margin-bottom: 8px;
}

.project-tag {
  display: inline-block;
  background: #4aa8ff;
  color: #0a0f1a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .projects-title {
    font-size: 32px;
  }
}
