/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* better selection color */
::selection {
  background: #facc15;
  color: #111;
}

/* BODY */
body {
  font-family: "Poppins", sans-serif;
  background: black;
  color: #aca91a;
  line-height: 1.6;
}
h1,
h2,
h3 {
  letter-spacing: -0.5px;
  color: orange;
  font-weight: 500;
}
section {
  padding: 100px 0;
}

/* CONTAINER */
.container {
  width: 98%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: rgba(253, 220, 29, 0.768);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAV CONTENT */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

/*  logo alone */
/* Container styling for horizontal alignment */
.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px; /* Space between icon and text */
  text-decoration: none;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: opacity 0.2s ease-in-out;
}

.navbar-logo:hover {
  opacity: 0.85; /* Slight hover effect */
}

/* Sizing the SVG icon for a typical navbar */
.logo-icon svg {
  height: 50px; /* Adjust this to fit your specific navbar height */
  width: 50px;
  display: block;
}

/* Flexbox to stack the text tightly */
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a; /* Dark grey/almost black from the image */
}

/* Styling the "ACOD ENGINEERING" line */
.text-top {
  font-size: 16px;
  font-weight: 800; /* Extra bold */
  letter-spacing: 1.5px;
  line-height: 1.1;
}

/* Styling the "SOLUTIONS" line */
.text-bottom {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 2.5px; /* Wider tracking to align nicely with the top text */
  line-height: 1.1;
  color: #2c2c2c;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .logo-icon svg {
    height: 40px;
    width: 40px;
  }
  .text-top {
    font-size: 14px;
  }
  .text-bottom {
    font-size: 12px;
  }
}
/* end */

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
/* LOGO IMAGE */
.logo img {
  height: 50px; /* controls size */
  width: auto; /* keeps proportions */
  object-fit: contain;
}
/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #605d5ded;
  font-size: 19px;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

/* Hover underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #fff;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}
.nav-links a.active {
  color: #fff;
}

/* CTA BUTTON */
.btn {
  background: #ffe71163;
  color: #111 !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background: rgba(0, 0, 0, 0.87);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
  }
  .nav-links a {
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px #ffffffab;
    color: #fff;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    font-size: 30px;
    display: block;
    color: #fff;
  }
}


/* HERO SECTION */
/* HERO BASE */
.hero {
  position: relative;
  height: 98vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND LAYERS */
.bg1 {
  background-image: url("../images/background\ 1.png");
}

.bg2 {
  background-image: url("../images/background2.jpg");
}

.bg3 {
  background-image: url("../images/background.jpg");
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  text-align: center;
  max-width: 800px;
  margin:auto;
}

/* SHOW ANIMATION */
.hero.show .hero-content {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLL FADE */
.hero.fade-out .hero-content {
  opacity: 0;
  transform: translateY(40px);
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TEXT */
.hero-text {
  flex: 1;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 20px;
}

/* PRIMARY BUTTON (YELLOW) */
.btn-primary {
  background: #facc15; /* yellow */
  color: grey;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #eab308;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #ddd;
  padding: 12px 22px;
  font-weight: 700;
  background-color: rgba(242, 226, 226, 0.652);
  border-radius: 8px;
  text-shadow: 10px 10px 20px #fff;
  text-decoration: none;
  color: #facc15;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 10px 20px 20px rgba(149, 145, 128, 0.623);
}

.btn-outline:hover {
  border-color: #facc15;
  color: #111;
}

/* IMAGE PLACEHOLDER */
.hero-image {
  flex: 1;
  height: 350px;
  background: linear-gradient(135deg, #ddd, #bbb);
  border-radius: 12px;
}

.highlight {
    background: linear-gradient(90deg, #81764a, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
  }

@media (max-width: 768px) {
  .hero {
    height: 90vh;
    background-position: center;
  }
  .bg1 {
    background-image: url("../images/arch-engineer.jpeg");
  }
  
  .btn-primary {
    background: #facc15; /* yellow */
    color: grey;
    padding: 20px 60px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 38px;
  }
  .highlight{
    font-size: 30px;
    padding: 10px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .highlight {
    background: linear-gradient(90deg, #81764a, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.2);
  }

  .hero-buttons {
    justify-content: center;
    margin: 0% 20%;
    flex-direction: column;
    width: 200px;

  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  
    .hero-image {
    width: 100%;
    height: 250px;
  }
}



/* ABOUT SECTION */
.about {
  padding: 100px 0;
  background: #fff;
}

/* LAYOUT */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.about-text {
  flex: 1;
  transform: translateX(-40px);
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE */
.about-image {
  flex: 1;
  transform: translateX(-40px);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 14px;
}
/* INITIAL STATE */
.about-text,
.about-image {
  opacity: 0;
  transition: all 0.8s ease;
}

/* WHEN ACTIVE */
.about.show .about-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.about.show .about-image {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
   .about-text,
  .about-image {
    transform: translateY(30px);
  }

  .about.show .about-text {
    transform: translateY(0);
  }

  .about.show .about-image {
    transform: translateY(0);
  }

  /* TEXT */
  .about-text {
    text-align: center;
  }

  /* IMAGE BELOW */
  .about-image {
    width: 100%;
  }

  .about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;

    /* subtle polish */
    filter: brightness(0.95);
  }
  .about-image img {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }

  .about-image.show img {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SERVICES SECTION */
.services {
  background: #ffffff;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #111;
}

.section-header p {
  color: #666;
}

/* services */
/* SERVICES PREVIEW */
.services-preview {
  padding: 100px 0;
  background: #ffffffcf;
}

/* STACK */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ROW */
.service-row {
  padding: 40px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

/* TEXT */
.service-row h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-row p {
  color: #555;
  max-width: 600px;
}

/* VARIANTS */

/* WHITE */
.service-one {
  background: #ffffff;
  border: 1px solid #eee;
}

/* YELLOW */
.service-two {
  background: #facc15;
  color: #111;
}

.service-two p {
  color: #333;
}

/* GRADIENT (GOLDISH GREY) */
.service-three {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

/* HOVER */
.service-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* SEE MORE */
.services-more {
  text-align: center;
  margin-top: 40px;
}
/* SPLIT ROW */
.service-row.split {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
.reverse {
  background-image: linear-gradient(to left, #c9bbbb, #f4e50d49);
}
.one {
  background-image: linear-gradient(135deg, #fff, #928d8d3a);
}
/* REVERSE */
.service-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE BLOCK */
.service-image {
  flex: 1;
  position: relative;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
}

/* IMAGES */
.service-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.service-image img.active {
  transform: scale(1.05);
  transition: transform 6s ease;
  opacity: 1;
  z-index: 1;
}

/* TEXT */
.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  
}

.service-text p {
  color: #111;
  line-height: 1.6;
}


/* MOBILE */
@media (max-width: 768px) {

  /* FORCE STACK FOR ALL VARIANTS */
  .service-row.split,
  .service-row.split.one,
  .service-row.split.reverse {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }

  /* IMAGE ON TOP */
  .service-image {
    order: 1;
    width: 100%;
    height: 220px;
    flex: none; /* 🔑 prevents shrinking */
  }

  /* TEXT BELOW */
  .service-text {
    order: 2;
    width: 100%;
    flex: none;
  }

  /* KEEP IMAGE VISIBLE */
  .service-image img {
    opacity: 1;
  }

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

/* CARD */
.service-card {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: 0.3s;
  background: #fff;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-5px);
  border-color: #facc15;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* PROJECTS SECTION */
.projects {
  background: #f9fafb;
}

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

/* CARD */
.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* IMAGE */
.project-image {
  height: 200px;
  background: linear-gradient(135deg, #ccc, #aaa);
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.project-info {
  padding: 20px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 14px;
  padding-top: 20px;
  color: #666;
}

/* HOVER */
.project-card:hover {
  transform: translateY(-5px);
  border-color: #facc15;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* SEE MORE */
.projects-more {
  text-align: right;
  margin-top: 30px;
}

.see-more {
  text-decoration: none;
  font-weight: 600;
  color: #facc15;
  position: relative;
}

/* ARROW ANIMATION */
.see-more::after {
  content: "→";
  margin-left: 5px;
  transition: margin 0.3s ease;
}

.see-more:hover::after {
  margin-left: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* TEAM SECTION */
.team {
  padding: 100px 0;
  background: #ffffffcf;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  text-align: center;
  padding: 40px 25px;
  opacity: 0;
  transform: translateY(40px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);

  border-radius: 16px;

  border: 1px solid rgba(0,0,0,0.05);

  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* WHEN SECTION IS ACTIVE */
.team.show .team-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* STAGGER DELAYS */
.team.show .team-card:nth-child(1) {
  transition-delay: 0.1s;
}

.team.show .team-card:nth-child(2) {
  transition-delay: 0.2s;
}

.team.show .team-card:nth-child(3) {
  transition-delay: 0.3s;
}

.team.show .team-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* TOP ACCENT LINE */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 40px;
  height: 3px;

  background: #facc15;
  border-radius: 2px;

  opacity: 0;
  transition: all 0.3s ease;
}

.team-card img {
  width: 95px;
  height: 95px;

  border-radius: 50%;
  object-fit: cover;

  margin-bottom: 15px;

  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

  transition: transform 0.4s ease;
}

/* TEXT */
.team-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
/* SHOW ACCENT */
.team-card:hover::before {
  opacity: 1;
  width: 60px;
}

/* IMAGE MICRO MOTION */
.team-card:hover img {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 30px 20px;
  }
}

/* CTA SECTION */
.cta {
  background: #ffffcf;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CONTENT */
.cta-content h2 {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #facc15;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;

  transition: all 0.3s ease;
}
/* YELLOW GLOW */
.cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);

  width: 300px;
  height: 300px;

  background: radial-gradient(circle, rgba(250,204,21,0.25), transparent);
  filter: blur(80px);
}

/* HOVER */
.cta-btn:hover {
  background: #fde047;
  transform: translateY(-2px);
}
@media (max-width: 768px) {

  .cta-content h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .cta-btn {
    padding: 12px 25px;
  }

}




/* CONTACT */
.contact {
  padding: 100px 0;
  background-color: #ffffff46;
}

.contact-container {
  display: flex;
  gap: 60px;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  color: #fff;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 15px;
}

/* FORM */
.contact-form {
  flex: 1;
  background: #ffffffc1;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* INPUTS */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #facc15;
}

/* STATUS */
.form-status {
  margin-top: 15px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* PARTNER SECTION */
.partner-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f6b20537, #e9d8bf);
  color: #fff;
}

/* WRAPPER */
.partner-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT */
.partner-text {
  flex: 1;
}

.partner-logo {
  width: 140px;
  margin-bottom: 20px;
}

.partner-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #facc15; /* yellow accent */
}

.partner-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* FEATURES */
.partner-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.partner-features li {
  margin-bottom: 8px;
  color: #aaa;
  position: relative;
  padding-left: 20px;
}

.partner-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #facc15;
}

/* IMAGE */
.partner-image {
  flex: 1;
}

.partner-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* BUTTON */
.partner-text .btn-primary {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.partner-text .btn-primary:hover {
  background: #eab308;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

  .partner-wrapper {
    flex-direction: column;
    gap: 30px;
  }

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

  .partner-text h2 {
    font-size: 24px;
  }

  .partner-features {
    text-align: left;
    display: inline-block;
  }

}

/* FOOTER */
.footer {
  background: #000000f4;
  color: #ddd;
  position: relative;
}

/* TOP SECTION */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 0;
}
/* SUBTLE YELLOW GLOW */
.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;

  width: 300px;
  height: 200px;

  background: radial-gradient(circle, rgba(250,204,21,0.15), transparent);
  filter: blur(80px);
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIALS HORIZONTAL */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

/* ICON LINKS */
.socials a {
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  color: #bd8e02;

  text-decoration: none;

  transition: all 0.3s ease;
}

/* ICON */
.socials i {
  font-size: 20px;
}

/* HOVER */
.socials a:hover {
  background: #facc15;
  color: #111;
  transform: translateY(-3px);
}
/* BOTTOM SECTION */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

/* BOTTOM CONTENT */
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #facc15;
}
@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
   .socials {
    justify-content: center;
    gap: 20px;
  }

}


/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* services page */
.services-full{
  background-color: #ffffffcf;
}




/* PAGE HERO */
.page-hero {
  padding: 100px 0 60px;
  background: #f9fafb;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #666;
}

/* PORTFOLIO ABOUT */
.portfolio-about {
  padding: 120px 0;
  background: #ffffcf;
}

/* CARD STYLE */
.about-card {
  max-width: 800px;
  margin: auto;

  padding: 50px;

  background: white;
  border-radius: 16px;

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

  text-align: center;
}

/* TITLE */
.about-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
  
}

/* LEAD TEXT */
.about-card .lead {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
}

/* BODY */
.about-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.section-header p{
  color: #fff;
}
/* PORTFOLIO PROJECTS */
.portfolio-projects {
  padding: 100px 0;
  border-bottom: 15px solid #facc15;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;
  padding: 20px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );

  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* HOVER */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .project-overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 30px 20px;
  }
}


/* HERO LOGO */
.hero-logo {
  margin-bottom: 20px;
}

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

/* TABLET */
@media (max-width: 768px) {
  .hero-logo img {
    width: 120px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .hero-logo img {
    width: 70px;
  }
}

/* ARCHPARK SECTION */
.archpark-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgb(12, 12, 32), #f5f5f5);
}

/* WRAPPER */
.archpark-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LOGO SIDE */
.archpark-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.archpark-logo img {
  width: 500px;
  max-width: px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.archpark-logo img:hover {
  transform: scale(1.03);
}

/* TEXT SIDE */
.archpark-text {
  flex: 1.2;
}

.partner-tag {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.archpark-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #111;
}

.archpark-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 30px;
}

/* BUTTON */
.archpark-text .btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.archpark-text .btn-primary:hover {
  background: #facc15;
  color: #111;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {

  .archpark-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .archpark-logo img {
    max-width: 220px;
  }

  .archpark-text h2 {
    font-size: 28px;
  }

  .archpark-text p {
    font-size: 15px;
    line-height: 1.7;
  }

}