* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background: #0f172a;
  color: white;
  font-family: "Inter", sans-serif;
}

button {
  background: #38bdf8;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

/*whatsapp icon */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
    right: 15px;
  }
}


.top-bar {
  background: #020617;
  padding: 12px 60px;
  font-size: 16px;
}

.top-center {
  text-align: center;
}

.top-center span{
    margin: 0 4px;
}

.logo-box img {
  height: 45px;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(15,23,42,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
}

.nav-links a:hover {
  color: #00b3ff;        /* color on hover */
}

/* Active / clicked link */
.nav-links a.active {
  color: #38bdf8;        /* color for current page */
  font-weight: bold;
}

.quote-btn {
  background: #38bdf8;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
}

/* HERO IMAGE */
.hero {
  position: relative;
  height: 100vh;
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,0.85), rgba(2,6,23,0.3));
}

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.hero-content p {
  color: #cbd5f5;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #38bdf8;
  padding: 12px 25px;
  border-radius: 8px;
  color: #000;
  text-decoration: none;
}


/* WHY CHOOSE US */
.why-us {
  padding: 80px 60px;
  background: #0f172a;
  text-align: center;
  color: white;
}

.why-us h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #38bdf8;
}

.why-us p {
  color: #0091d2;
  margin-bottom: 50px;
}

.why-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  color: #0f172a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card i {
  color: #38bdf8;
  margin-bottom: 15px;
}

.why-card h3 {
  margin-bottom: 15px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/*stats */
.stats {
  background: #0b2a4a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.stats h2 { font-size: 2.5rem; margin-bottom: 10px; }
.stats .sub { opacity: 0.8; margin-bottom: 40px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.stat {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
}

.stat span {
  font-size: 3rem;
  font-weight: bold;
  color: #f4b400;
}
 
/*service overview */
.services-overview {
  background: #f7f9fc;
  padding: 80px 20px;
  text-align: center;
}

.container-overview h2{
  color: #38bdf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  margin: 40px 0;
  font-size: larger;
  font-weight: 500;
}

.service-box {
  background: #fcfafa;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  color: #38bdf8;

}

.service-box:hover {
  transform: translateY(-5px);
}


/* TESTIMONIALS */
.testimonials-split {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 60px;
  background: #fff;
  color: #0f172a;
  flex-wrap: wrap;
}

.testimonial-left, .testimonial-right {
  flex: 1 1 450px;
}


/* IMAGE VIEWER LEFT */
.image-viewer {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.image-viewer img {
  width: 100%;
  display: none;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.image-viewer img.active {
  display: block;
}

/* Arrows */
.image-viewer button.prev,
.image-viewer button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(56, 189, 248, 0.8);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.image-viewer button.prev:hover,
.image-viewer button.next:hover {
  background: #38bdf8;
}

.image-viewer button.prev { left: -25px; }
.image-viewer button.next { right: -25px; }

/* RIGHT: Testimonials */
.testimonial-right h2 {
  color: #38bdf8;
  margin-bottom: 25px;
}

.testimonial-slider {
  position: relative;
  min-height: 120px;
}

.testimonial-slide {
  display: none;
  transition: opacity 0.5s;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-slide h4 {
  font-weight: 600;
  text-align: right;
}

/* Indicators */
.testimonial-indicators {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.testimonial-indicators .dot {
  width: 12px;
  height: 12px;
  background: #64748b;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-indicators .dot.active {
  background: #38bdf8;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-split {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-indicators {
    justify-content: center;
  }
  .testimonial-right h2 {
    margin-top: 30px;
  }
  .testimonial-left{
    flex: 1 1 197px
  }
}

 
  




/* ABOUT IFEMMANY SECTION */
.about-hero {
  position: relative;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-hero .hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.5);
}

.about-hero .hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.mv-section {
  padding: 100px 60px;
  background: #0f172a;
  text-align: center;
  color: white;
}

.mv-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #38bdf8;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.mv-card h3 {
  margin-top: 25px;
  font-size: 1.8rem;
}

.mv-card p {
  margin-top: 12px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* RING CIRCLE */
.mv-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 10px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: transparent;
}

.mv-ring img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

/* COLORS */
.ring-green { border-color: #22c55e; }
.ring-red   { border-color: #ef4444; }
.ring-blue  { border-color: #3b82f6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}


.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ABOUT CONTENT */
.about-content {
  background: #0f172a;
  color: white;
  padding: 80px 60px;
  line-height: 1.8;
}

.about-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  color: #38bdf8;
  font-size: 2rem;
  margin-bottom: 15px;
  margin-top: 40px;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.industries-section {
  padding: 90px 60px;
  background: #0f172a;
  color: white;
  text-align: center;
}

.industries-section h2 {
  font-size: 2.6rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.industries-sub {
  color: #cbd5f5;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.industry-card {
  background: #020617;
  padding: 40px 20px;
  border-radius: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card i {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 15px;
}

.industry-card h4 {
  font-size: 1.2rem;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(56,189,248,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

.cta-section {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  padding: 100px 60px;
  text-align: center;
  color: white;
}

.cta-box {
  max-width: 700px;
  margin: auto;
}

.cta-box h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta-box p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s;
  color: #0091d2;
}

.card:hover {
  transform: translateY(-8px);
}

/* services section */
.services-section {
  padding: 80px 60px;
  background: #0f172a;
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  color: #0f172a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card i {
  color: #38bdf8;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Reveal animation for cards */
.services-section.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.services-section.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 30px;
  }
  .services-grid{
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}


/* CONTACT US FORM */

.contact-section {
  background: #ffffff;
  padding: 90px 60px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT */
.contact-text {
  flex: 1 1 400px;
}

.contact-text h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.contact-text p {
  color: #475569;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-text ul {
  list-style: none;
  padding: 0;
}

.contact-text li {
  margin-bottom: 12px;
  color: #0f172a;
  font-size: 1rem;
}

.contact-text i {
  color: #38bdf8;
  margin-right: 10px;
}

/* FORM */
/* Right form column */
.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* prevents shrinking */
}

.form-row input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

form input, form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

form textarea {
  resize: vertical;
}

form button {
  padding: 14px;
  font-size: 1rem;
  border: none;
  background: #38bdf8;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #0ea5e9;
}

/* Mobile: stack columns */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
}
@media (max-width: 600px) {
 .contact-form form{
    display: block;
  }
}

/*working hours */
.hours-section {
  background: #0f172a;
  padding: 80px 60px;
  text-align: center;
  color: white;
}

.hours-section h2 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.hours-sub {
  color: #cbd5f5;
  margin-bottom: 40px;
}

.hours-box {
  max-width: 500px;
  margin: auto;
  background: #020617;
  border-radius: 12px;
  padding: 30px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #1e293b;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span {
  color: #cbd5f5;
}

.hours-row strong {
  color: #38bdf8;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}

/* quote form */
.quote-section {
  background: #f8fafc;
  padding: 100px 60px;
  display: flex;
  justify-content: center;
}

.quote-container {
  background: white;
  max-width: 700px;
  width: 100%;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.quote-container h2 {
  font-size: 2.6rem;
  color: #0f172a;
}

.quote-sub {
  color: #64748b;
  margin-bottom: 40px;
}

.quote-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #38bdf8;
}

.file-upload {
  text-align: left;
  margin: 20px 0;
}

.file-upload label {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.quote-form button {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 600px) {
  .quote-form .form-row {
    flex-direction: column;
  }
}



 /*FOOTER */
.footer {
  background: #020617;
  color: #94a3b8;
  padding: 60px 60px 30px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-links h3,
.footer-contact h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #fff;
}

.footer-socials a {
  color: #94a3b8;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #334155;
  padding-top: 15px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about, .footer-links, .footer-contact {
    flex: 1 1 100%;
  }

  .footer-socials {
    justify-content: center;
  }
}





/* Mobile nav*/
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #020617;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a{
   margin: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .quote-btn {
    display: none;
  }
}
