/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
  --bg-color: #0e1117;
  --text-color: #f5f5f5;
  --accent-color: #00D4FF;
  --button-color: #007BFF;
  --hover-color: #0056D2;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.08);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

/* Header Navigation */
#navigattion {
  position: fixed;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 25px;
  z-index: 999;
}

#headerSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 65px;
  height: 65px;
}

.navBar ul {
  display: flex;
  gap: 2rem;
}

.navBar ul li {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

.navBar ul li::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease-in-out;
}

.navBar ul li:hover {
  color: var(--accent-color);
}

.navBar ul li:hover::after {
  width: 100%;
}

.contact a button {
  border: none;
  background: var(--button-color);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact a button:hover {
  background: var(--hover-color);
}

#outdent,
#Xmark {
  font-size: 26px;
  display: none;
  cursor: pointer;
}

/* =======================
   MOBILE NAVIGATION
======================== */

#mobileNavigation {
  display: none; /* Hidden by default */
  position: absolute;
  top: 90px;
  right: 25px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 25px;
  width: 240px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* Menu Container */
#mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Menu Links */
#mobile .about a li {
  list-style: none;
  color: #f1f1f1;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

#mobile .about a li::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

#mobile .about a li:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

#mobile .about a li:hover::after {
  width: 100%;
}

/* Contact Button */
#mobile .contactUs {
  margin-top: 20px;
  width: 100%;
  text-align: left;
}

#contactBtn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: var(--button-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

#contactBtn:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

/* Animation (Slide Down) */
#mobileNavigation.show {
  display: block;
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide Mobile Nav on Large Screens */
@media (min-width: 769px) {
  #mobileNavigation {
    display: none !important;
  }
}

/* Hero Section */
#heroSec {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(50%);
}

.textH1 {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 70px;
  font-weight: 800;
  color: var(--accent-color);
}

.textP {
  position: absolute;
  top: 65%;
  left: 10%;
  right: 10%;
  font-size: 20px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 600px;
}

/* Sliding Logos Section */
#marqueeLike {
  overflow: hidden;
  width: 100%;
  background: transparent;
  padding: 30px 0;
  margin-top: 20px;
}

.marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
}

.marquee span {
  display: inline-block;
  margin: 0 60px;
}

.marquee img {
  height: 65px;
  width: auto;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.marquee img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* About Section */
#aboutRep {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 80px 10%;
  background: linear-gradient(to right, #0e1117, #141823);
}

.about p {
  font-weight: 700;
  font-size: 1.2rem;
  background-color: var(--button-color);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
}

.aboutContent {
  width: 70%;
  line-height: 1.7;
  font-size: 16px;
  color: #d0d0d0;
  border-left: 3px solid var(--accent-color);
  padding-left: 20px;
}

.coloring {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
}

/* Project Section */
#project {
  padding: 80px 10%;
}

.projectMeme {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
}

.text h3 {
  color: white;
  background: var(--hover-color);
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
}

.text h2 {
  font-size: 38px;
  margin-top: 10px;
}

.text p {
  color: #bdbdbd;
  margin-top: 10px;
}

.projectImgs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.projectImgs img {
  width: 280px;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projectImgs img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.buttonSee {
  text-align: center;
  margin-top: 40px;
}

.buttonSee button {
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  background: var(--button-color);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttonSee button:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

/* Testimonials */
#testimonial {
  padding: 80px 10%;
  background: linear-gradient(to bottom right, #0e1117, #11141d);
  text-align: center;
  position: relative;
}

#testimonial h1 {
  font-size: 38px;
  margin-bottom: 40px;
  color: var(--accent-color);
}

.testimoniall {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.08);
}

.testimoniall h2 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.testimoniall p {
  font-size: 0.9rem;
  line-height: 1.5;
}

#companyDetails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 15px;
}

#companyDetails img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

#companyDetails p {
  font-size: 0.85rem;
  color: #ccc;
}

.prevBtn,
.nextBtn {
    width: 30px;
    height: 30px; 
    border-radius: 50%; 
    background-color: rgb(0, 0, 0); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
    position: absolute;
    top: 55%;
    left: 25%;
}

.nextBtn {
    left: 73%;
}

.prevBtn:hover,
.nextBtn:hover {
    background-color: rgb(72, 71, 71);
}
.prevBtn:active,
.nextBtn:active {
    background-color: rgb(118, 118, 118);
}

.radioChecker {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

#radio {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
}

#radio.active {
    background-color: #606060;
}


/* Footer */
footer {
  background: #0b0d12;
  padding: 60px 10%;
  border-top: 1px solid var(--border-color);
}

#footerSec {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #bdbdbd;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-col ul li:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #808080;
  font-size: 0.9rem;
}

/* =======================
   FOOTER SECTION
======================== */

footer {
  background: #0b0d12;
  padding: 80px 10% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #dcdcdc;
  font-family: "Poppins", sans-serif;
}

.footerContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

/* About Section */
.footerAbout {
  flex: 1 1 300px;
  max-width: 400px;
}

.footerAbout img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
}

.footerAbout p {
  font-size: 15px;
  line-height: 1.7;
  color: #bcbcbc;
}

/* Quick Links */
.footerLinks {
  flex: 1 1 200px;
}

.footerLinks h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
}

.footerLinks ul {
  padding: 0;
}

.footerLinks ul li {
  margin-bottom: 10px;
}

.footerLinks ul li a {
  color: #bcbcbc;
  font-size: 15px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footerLinks ul li a:hover {
  color: var(--accent-color);
  padding-left: 6px;
}

/* Contact Section */
.footerContact {
  flex: 1 1 220px;
}

.footerContact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.footerContact p {
  font-size: 15px;
  color: #bcbcbc;
  margin-bottom: 8px;
}

.footerContact p:hover {
  color: var(--accent-color);
}

/* Footer Bottom */
.footerBottom {
  text-align: center;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}


.coloring {
  color: #4f9cff; /* Accent blue */
}

/* HERO SECTION */
#heroAbout {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('img/about-bg.jfif') center/cover no-repeat;
  text-align: center;
  padding: 150px 20px;
  color: white;
}

#heroAbout .heroBanner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#heroAbout .heroBanner p {
  font-size: 1.2rem;
  color: #bdbdbd;
}

/* ABOUT SECTION */
#aboutPage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  flex-wrap: wrap;
  gap: 50px;
}

#aboutPage .aboutText {
  flex: 1 1 45%;
}

#aboutPage .aboutText h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

#aboutPage .aboutText p {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

#aboutPage .aboutImage {
  flex: 1 1 30%;
}

#aboutPage .aboutImage img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(79, 156, 255, 0.25);
  transition: transform 0.3s ease;
}

#aboutPage .aboutImage img:hover {
  transform: scale(1.03);
}

/* MISSION & VALUES */
#missionValues {
  background-color: #121317;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 8%;
  gap: 40px;
}

.missionBox {
  flex: 1 1 45%;
  background: #181a20;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(79, 156, 255, 0.15);
  transition: transform 0.3s ease;
}

.missionBox:hover {
  transform: translateY(-5px);
}

.missionBox h3 {
  color: #4f9cff;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.missionBox p,
.missionBox ul {
  color: #c7c7c7;
  font-size: 1rem;
}

.missionBox ul {
  list-style: none;
  padding-left: 0;
}

.missionBox ul li {
  margin-bottom: 10px;
}

/* TEAM SECTION */
#team {
  text-align: center;
  padding: 100px 8%;
  background-color: #0f1014;
}

#team h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

#team .subText {
  color: #b3b3b3;
  margin-bottom: 60px;
  font-size: 1.05rem;
}

.teamGrid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.teamMember {
  background: #181a20;
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 20px rgba(79, 156, 255, 0.1);
  transition: all 0.3s ease;
}

.teamMember:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(79, 156, 255, 0.2);
}

.teamMember img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #4f9cff;
}

.teamMember h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.teamMember p {
  color: #9e9e9e;
  font-size: 0.95rem;
}

/* CTA SECTION */
#cta {
  background: linear-gradient(90deg, #1a1c22, #121317);
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#cta h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

#cta p {
  color: #bdbdbd;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

#cta button {
  background: #4f9cff;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

#cta button:hover {
  background: #3376d1;
  box-shadow: 0 0 20px rgba(79, 156, 255, 0.4);
}



/* RESPONSIVENESS */
@media (max-width: 992px) {
  #aboutPage {
    flex-direction: column;
    text-align: center;
  }
  #missionValues {
    flex-direction: column;
  }
  .missionBox {
    width: 100%;
  }
  .teamGrid {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================
   SERVICE PAGE STYLING - REPUVERSE
================================ */

/* Hero Section */
#heroService {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.7)),
              url("img/hero-service-bg.jfif") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#heroService .heroBanner {
  max-width: 800px;
}

#heroService h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

#heroService .coloring {
  color: #4f9cff;
}

#heroService p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

/* Intro Section */
#serviceIntro {
  text-align: center;
  padding: 100px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

#serviceIntro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #9c9c9c;
  margin-bottom: 20px;
}

#serviceIntro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Services Grid */
.group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 80px 10%;
  background-color: #f9f9f9;
}
.group h2 {
    color: #0b0d12;
}

.serviceCard {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.serviceCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.serviceCard img {
  width: 100%;
  height: 220px;
  object-fit: fill;
}

.serviceCard h3 {
  font-size: 1.5rem;
  color: #969696;
  margin: 15px 0 10px;
}

.serviceCard p {
  font-size: 1rem;
  color: #555;
  padding: 0 20px;
  line-height: 1.6;
}

/* Process Section */
#serviceProcess {
  padding: 100px 10%;
  text-align: center;
}

#serviceProcess h2 {
  font-size: 2.4rem;
  color: #a8a8a8;
  margin-bottom: 15px;
}

#serviceProcess .subText {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
}

.processSteps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stepBox {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: transform 0.3s ease;
}

.stepBox:hover {
  transform: translateY(-6px);
}

.stepNum {
  position: absolute;
  top: -20px;
  left: 20px;
  background: #4f9cff;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 30px;
}

.stepBox h4 {
  margin-top: 20px;
  color: #111;
  font-size: 1.2rem;
}

.stepBox p {
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* Why Choose Us */
#whyChoose {
  padding: 100px 10%;
  background-color: #ffffff;
  text-align: center;
}

#whyChoose h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #111;
}

.chooseGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.chooseBox {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.chooseBox:hover {
  transform: scale(1.03);
}

.chooseBox h4 {
  color: #4f9cff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.chooseBox p {
  color: #555;
  line-height: 1.6;
}

/* CTA Section */
#cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #3a5b86, #4f9cff);
  color: #fff;
}

#cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

#cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

#cta button {
  background: #fff;
  color: #4f9cff;
  border: none;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cta button:hover {
  background: #4f9cff;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  #heroService h1 {
    font-size: 2.3rem;
  }

  .processSteps,
  .chooseGrid {
    grid-template-columns: 1fr;
  }

  #serviceGrid {
    padding: 60px 5%;
  }
}

/* ================================
   CONTACT PAGE STYLING (Repuverse)
================================ */

/* HERO SECTION */
#heroContact {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.7)),
              url("img/contactbg.jfif") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

#heroContact .heroBanner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#heroContact .heroBanner p {
  font-size: 1.1rem;
  color: #d0d4e3;
}

.coloring {
  color: #4f9cff; /* Green accent */
}

/* CONTACT INFO SECTION */
#contactInfo {
  background: #0f1324;
  padding: 80px 20px;
  text-align: center;
}

#contactInfo .infoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

#contactInfo .infoBox {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 25px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 320px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.1);
}

#contactInfo .infoBox:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.2);
}

#contactInfo .infoBox h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #4f9cff;
}

#contactInfo .infoBox p {
  font-size: 1rem;
  color: #dce0ef;
}

#contactInfo .infoBox a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

#contactInfo .infoBox a:hover {
  color: #4f9cff;
}

/* CONTACT FORM SECTION */
#contactFormSection {
  background: #101527;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

#contactFormSection h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

#contactFormSection .subText {
  font-size: 1rem;
  color: #d0d4e3;
  margin-bottom: 50px;
}

#contactForm {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.formGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroup label {
  font-weight: 600;
  color: #4f9cff;
  margin-bottom: 8px;
}

.formGroup input,
.formGroup textarea {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #fff;
  outline: none;
  transition: 0.3s;
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
  color: #9aa2bf;
}

.formGroup input:focus,
.formGroup textarea:focus {
  background: rgba(46, 213, 115, 0.1);
  box-shadow: 0 0 0 2px #4f9cff;
}

.fullWidth {
  grid-column: 1 / -1;
}

.contactBtn {
  display: inline-block;
  background: #4f9cff;
  color: #0a0f1f;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  margin-top: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contactBtn:hover {
  background: #4f9cff;
  transform: translateY(-3px);
}

/* MAP SECTION */
#mapSection {
  background: #0f1324;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

#mapSection h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.mapPlaceholder {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 80px 0;
  color: #b3b9d1;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
}

/* FOOTER */
#footer {
  background: #0a0f1f;
  text-align: center;
  color: #aaa;
  padding: 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #heroContact .heroBanner h1 {
    font-size: 2.2rem;
  }

  #contactInfo .infoGrid {
    gap: 20px;
  }

  #contactFormSection h2 {
    font-size: 1.8rem;
  }
}



/* Responsive Design */
@media (max-width: 1024px) {
  .textH1 {
    font-size: 50px;
  }
  .textP {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #navigattion {
    width: 90%;
  }

  .navBar, .contact {
    display: none;
  }

  #outdent {
    display: block;
  }

  #aboutRep {
    flex-direction: column;
  }

  .about, .aboutContent {
    width: 100%;
  }

  .textH1 {
    font-size: 42px;
  }
  .footerContainer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerAbout img {
    width: 75px;
  }

  .footerBottom {
    font-size: 0.85rem;
  }
  .prevBtn {
    left: 10%;
  }
  .nextBtn {
    left: 82%;
  }
}

@media (max-width: 480px) {
  .textH1 {
    font-size: 32px;
  }
  .textP {
    font-size: 16px;
  }
  .projectImgs img {
    width: 100%;
  }
}

