*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

header{
position:absolute;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;
z-index:10;
color:white;
background: rgba(0,0,0,0.3);
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

nav ul li a:hover{
color:#ff7a00;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Slider and slides */
.slider {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,   /* lighter at top */
    rgba(0, 0, 0, 0.5) 100%  /* darker at bottom */
  );
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); /* Safari support */
  z-index: 1; /* behind captions */
}
/* Captions */
.caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  z-index: 2; /* above overlay */
}

.caption h1 {
  font-size: 55px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.caption p {
  font-size: 20px;
  margin-bottom: 25px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* Hero buttons */
.btn {
  display: inline-block;
  background: #ff7a00;
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #e66b00;
  transform: translateY(-2px); /* subtle lift effect */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Hamburger default: hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile styles */

@media screen and (max-width: 768px) {

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  /* Mobile menu */
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    z-index: 20;
  }

  /* Show menu when active */
  nav ul.active {
    display: flex;
  }

  /* MOBILE ONLY: remove desktop margin-left and add vertical spacing */
  nav ul li {
    margin-left: 0;    /* remove horizontal spacing from desktop */
    margin: 15px 0;    /* vertical spacing between items */
  }
  /* Mobile menu */
nav ul {
  display: none;           /* hidden by default */
  flex-direction: column;
  position: fixed;         /* stay on top */
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  padding-top: 80px;      /* space from top */
  padding-left: 20px;
  z-index: 999;
  transition: transform 0.3s ease;
  transform: translateX(100%); /* slide out initially */
}

/* Show menu when active */
nav ul.active {
  transform: translateX(0);   /* slide in */
  display: flex;
}

/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu items as full-width buttons */
nav ul li {
  margin: 15px 0;        /* vertical spacing */
}

nav ul li a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #ff7a00;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background: #e66b00;
}
/* Dark background overlay */
.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
z-index:900;
}

.overlay.active{
display:block;
}

/* Mobile menu */
nav ul{
position:fixed;
top:0;
left:0;
height:100vh;
width:230px;
background:#111;
flex-direction:column;
padding-top:80px;
padding-left:20px;
transform:translateX(-100%);
transition:0.3s;
z-index:999;
}

nav ul.active{
transform:translateX(0);
display:flex;
}
}
/* Add overlay to each slide */
/* Gradient + subtle blur overlay on slides */
.slide::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(
    to bottom, 
    rgba(0,0,0,0.2) 0%,   /* lighter at top */
    rgba(0,0,0,0.5) 100%  /* darker at bottom */
  );
  backdrop-filter: blur(3px); /* subtle blur effect */
  -webkit-backdrop-filter: blur(3px); /* for Safari */
  z-index:1;  /* behind captions */
}
/* FOOTER */
.footer {
  background: #111;
  color: white;
  font-family: Arial, sans-serif;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 10%;
  gap: 40px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color: #ff7a00;
  margin-bottom: 15px;
}

.footer-about p,
.footer-links ul li,
.footer-contact p {
  color: white;
  font-size: 14px;
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #e66b00;
}

.footer-contact i {
  color: #ff7a00;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #e66b00;
}

/* Bottom Section */
.footer-bottom {
  background: #0a0a0a;
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  margin: 10px 0 0 0;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff7a00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    padding: 40px 5%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 5%;
    gap: 10px;
  }

  .social-icons {
    margin-bottom: 10px;
  }
}
/* About Section */
.about {
  text-align: center;
  padding: 50px 20px;
}
.team-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.team-member {
  width: 200px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.team-member img {
  width: 100%;
  border-radius: 50%;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.team-member {
  text-align: center;
  max-width: 200px;
}
.team-member img {
  width: 100%;
  border-radius: 10px;
}
/* =========================
   About Page Styling
========================= */

/* PAGE HERO / BANNER */
.page-hero {
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* ABOUT SECTION */
.about {
  padding: 80px 20px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

/* MISSION / VISION / VALUES */
.mission {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  text-align: center;
  background: #f5f5f5;
}

.mission-box {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.mission-box:hover {
  transform: translateY(-10px);
}

.mission-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #1a73e8;
}

.mission-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

/* TEAM SECTION */
.team {
  padding: 80px 20px;
  text-align: center;
}

.team h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  max-width: 220px;
  text-align: center;
}

.team-member img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mission {
    flex-direction: column;
  }

  .team-grid {
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }
}
/* TEAM SECTION */
/* TEAM SECTION PROFESSIONAL STYLE */
.team {
  padding: 80px 20px;
  text-align: center;
}

.team h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  position: relative;
  max-width: 220px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.team-member img {
  width: 100%;
  display: block;
}

.team-member h4 {
  font-size: 20px;
  margin: 15px 0 5px;
}

.team-member p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

/* SOCIAL ICONS ON HOVER */
.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 15px;
}

.team-member:hover .team-social {
  opacity: 1;
}

.team-social a {
  color: #1a73e8;
  font-size: 18px;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: #0c47b7;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .team-grid {
    flex-direction: column;
    gap: 30px;
  }
}
/* HERO / BANNER with blur */
.page-hero {
  position: relative;
  background: url('images/about-hero.jpeg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay with blur */
.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* slightly lighter overlay */
  backdrop-filter: blur(4px); /* subtle blur effect */
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.page-hero .btn-hero {
  background: #1a73e8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s ease;
}

.page-hero .btn-hero:hover {
  background: #0c47b7;
}

/* RESPONSIVE */
@media (max-width:768px){
  .page-hero {
    height: 60vh;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .page-hero .btn-hero {
    font-size: 16px;
    padding: 10px 20px;
  }
}
/* HERO / BANNER with fade-in blur */
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;

  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.3s; /* slight delay */
}

/* Keyframes for fade-in */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: blur transition on overlay */
.page-hero .hero-overlay {
  backdrop-filter: blur(4px);
  transition: backdrop-filter 1s ease;
}
/* HERO / BANNER with fade-in blur */
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;

  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s ease forwards;
  animation-delay: 0.3s; /* slight delay */
}

/* Keyframes for fade-in */
@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: blur transition on overlay */
.page-hero .hero-overlay {
  backdrop-filter: blur(4px);
  transition: backdrop-filter 1s ease;
}
/* WHO WE ARE SECTION */
.about {
  padding: 80px 20px;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #1a73e8; /* accent line color */
  margin-top: 10px;
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width:768px){
  .about-grid {
    flex-direction: column;
    gap: 30px;
  }
  .about-text h2 {
    font-size: 28px;
  }
  .about-text p {
    font-size: 16px;
  }
}
/* Services Container Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 15px;
}
/* Premium Service Card */
.service-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
      opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-card i {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
}

.service-card p {
    color: #666;
    font-size: 16px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card:hover i {
    transform: scale(1.2);
    color: #ff8533;
}
/* Section Category Heading */
.service-category {
    grid-column: 1 / -1;
    font-size: 30px;
    margin: 50px 0 20px;
    color: #222;
    border-left: 6px solid #ff6600;
    padding-left: 12px;
}

/* Section Padding & Background */
.services-container {
    padding: 80px 50px;
    background: #f4f7fa;
}
.hero-btn {
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 8px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #e05500;
}
/* Initial hidden state for scroll animation */
.service-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* Show card when visible */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}
/* Initial hidden state for scroll animation */
.service-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s ease-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
      opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Show card when visible */
.service-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hover effect */
.service-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

/* Icon */
.service-card i {
    font-size: 50px;
    color: #ff6600;
    margin-bottom: 20px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.3);
    color: #ff8533;
}
/* Hero Section */
.clients-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1581091012184-7be11b0f1d26');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Clients Grid */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding: 60px 50px;
    background: #f4f7fa;
    justify-items: center;
    align-items: center;
}

/* Client Card */
.client-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
/* Placeholder text for clients */
.client-placeholder {
    font-size: 16px;
    color: #333;
    text-align: center;
    padding: 20px;
    min-width: 120px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Keep hover effect for cards */
.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
/* Clients Grid */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    padding: 60px 50px;
    background: #f4f7fa;
    justify-items: center;
    align-items: center;
}

/* Client Card */
.client-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 80px;
    width: 100%;
}

/* Placeholder styling */
.client-placeholder {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 25px;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.client-card:hover .client-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Scroll fade-in animation */
.client-card {
    opacity: 0;
    transform: translateY(40px);
}

.client-card.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}
/* Clients Grid */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 50px;
    background: #f4f7fa;
}

/* Category Heading */
.service-category {
    grid-column: 1 / -1;
    font-size: 32px;
    margin-bottom: 40px;
    border-left: 6px solid #ff6600;
    padding-left: 12px;
    color: #222;
}

/* Client Card */
.client-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Placeholder Text */
.client-placeholder {
    padding: 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 15px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.client-card:hover .client-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Optional fade-in scroll animation */
.client-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}
.client-card.show {
    opacity: 1;
    transform: translateY(0);
}
/* Clients Grid */
.clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 60px 50px;
    background: #f4f7fa;
}

/* Category Heading */
.service-category {
    grid-column: 1 / -1;
    font-size: 32px;
    margin-bottom: 40px;
    border-left: 6px solid #ff6600;
    padding-left: 12px;
    color: #222;
}

/* Client Card */
.client-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Placeholder with gradient + icon */
.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-placeholder i {
    font-size: 32px;
    margin-bottom: 12px;
}

/* Hover effect */
.client-card:hover .client-placeholder {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Fade-in scroll animation */
.client-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}
.client-card.show {
    opacity: 1;
    transform: translateY(0);
}
/* contact Hero Section */
.contact-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1581091012184-7be11b0f1d26');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 60px 50px;
    background: #f4f7fa;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    margin-bottom: 25px;
    color: #333;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.contact-form-container textarea {
    resize: none;
}

.contact-form-container button.hero-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ff6600;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-container button.hero-btn:hover {
    background: #e05500;
}

/* Contact Details */
.contact-details {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-details h2 {
    margin-bottom: 25px;
    color: #333;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-details a {
    color: #ff6600;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details i {
    margin-right: 10px;
    color: #ff6600;
}
/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px; /* adjust as needed */
    width: auto;
}

/* Optional: scale logo on hover */
.logo-container:hover .logo-img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}
.map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
/* SEO Content Section */
.seo-content {
    padding: 60px 20px;
    background-color: #f8f8f8; /* light gray background to separate from hero */
    text-align: center;
}

.seo-content .container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 32px;
    color: #ff6600; /* matches your corporate orange */
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .seo-content h2 {
        font-size: 26px;
    }

    .seo-content p {
        font-size: 16px;
    }
}
.about-seo-content {
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
}

.about-seo-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}
.clients-seo-content {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  margin: 40px 0;
}

.clients-seo-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
