/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  line-height: 1.6;
  color: #2E4053; /* Slate Gray */
  background: #F4F6F6; /* Off-White */
  background-image: url(img/gradient_bg.png);

}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1C2833; /* Deep Navy */
  opacity: 90%;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.9);
}

.logo {
  color: #F4F6F6; /* Off-White */
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  color: #F4F6F6; /* Off-White */
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  position: relative;
  margin-left: 20%;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #F4F6F6; /* Off-White */
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #AAB7B8; /* Silver */
}
.navbar .img{
    width: 50px;
height: 22%;
  
}
.dropdown {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 160px;
  top: 100%;
  left: 0;
  z-index: 1;
  flex-direction: column;
}

.dropdown li a {
  padding: 10px 15px;
}

/* Show dropdown on hover */
.navbar ul li:hover .dropdown {
  display: block;
}
.language-toggle {
  position: relative;
  margin-left: 2rem;
}

.globe-icon {
  font-size: 1.5rem;
  color: #F4F6F6; /* Off-White */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.globe-icon:hover {
  transform: rotate(360deg) scale(1.2); /* Rotate and scale on hover */
  color: #AAB7B8; /* Silver */
}

.language-list {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1C2833; /* Deep Navy */
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-toggle:hover .language-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-list li {
  margin: 0;
}

.language-list a {
  display: block;
  padding: 0.5rem 1rem;
  color: #F4F6F6; /* Off-White */
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.language-list a:hover {
  background: #2E4053; /* Slate Gray */
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F4F6F6; /* Off-White */
  background-size: cover; /* Ensure full coverage */
  background-position: center 0px; /* Initial position for parallax */
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(28, 40, 51, 0.7), rgba(0, 135, 188, 0.3)); /* Navy to cyan gradient */
  opacity: 0.8;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.hero-content h1,
.hero-content h2,
.hero-content p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpText 1s ease forwards;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content h2 { animation-delay: 0.4s; }
.hero-content p { animation-delay: 0.6s; }

@keyframes fadeInUpText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-buttons .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  color: #F4F6F6; /* Off-White */
  border-radius: 5px;
  transition: background 0.3s;
}

.btn.primary {
  background: #1a2b4a;
}

.btn.primary:hover {
  background: #2e4370;
}

.btn.secondary {
  background: #AAB7B8; /* Silver */
  color: #1C2833; /* Deep Navy */
}

.btn.secondary:hover {
  background: #D5DBDB; /* Light Gray */
}
.home-more{
  display: none;
}
.btnMore {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  color: #F4F6F6; /* Off-White */
  border-radius: 5px;
  transition: background 0.3s;
  background: #1a2b4a;
}
.btnMore:hover {
  background: #2e4370;

}
.founder-section{
padding: 5%;
}
.service-body{
  margin-left: 10%;
  margin-right: 10%;
  padding-bottom: 5%;
  
}
.service-body img{
  padding-top: 1rem;
  
  max-width: 100%; /* Image never exceeds its container */
  height: auto;    /* Keeps correct aspect ratio */
  display: block;  /* Removes small gaps under image */
}
.EPF-list {
  padding: 1rem;
}
.EPF-list li {
  padding-top: 0.5rem;
}

/* solution */
.solution{
  padding: 4rem 2rem;
  background: url('img/gettyimages-1097761012-612x612.jpg') no-repeat center top;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: #F4F6F6; /* Off-White */
  background-size: cover; /* Ensure full coverage */
  background-position: center -100px; 
}
.solution h2{
font-size: 2.5rem;
color: #2e4370;
}
.solution p{
font-size: 1.5rem;
}
/* About Us Section - Floating with Curved Top */
.about-content {
  max-width: 1200px;
  display: flex;
  flex-direction: row-reverse; /* Image on right, text on left */
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 150"><path d="M0,150 Q50,50 100,150 H1200 V150 H0 Z" fill="white"/></svg>') no-repeat top center;
  background-size: 100% 150px;
  padding: 70px 2rem 2rem 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.about-content:hover {
  transform: translateY(-20px);
}

.about-content img {
  max-width: 50%; /* Adjust size as needed */
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1; /* Takes remaining space */
}

.about-initial {
  margin-bottom: 1rem;
}

.about-full {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.5s ease;
}

.about-full.active {
  display: block;
  opacity: 1;
  max-height: 2000px; /* Large enough for full text */
}

.learn-more, .show-less {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem 0;
  background: #FFFFFF;
  color: #1C2833;
  border: 2px solid #1C2833;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more:hover, .show-less:hover {
  background: #1C2833;
  color: #FFFFFF;
  transform: scale(1.05);
}
.about-text h2 {
  font-size: 2.5rem;
  color: #1C2833; /* Deep Navy */
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.about-text p {
  color: #2E4053; /* Slate Gray */
  font-size: 1.5rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 50%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn.pri {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  text-decoration: none;
  color: #1C2833; /* Deep Navy text */
  background: #FFFFFF; /* White background */
  border: 2px solid #1C2833; /* Navy border */
  border-radius: 5px;
  transition: all 0.3s ease; /* Smooth transition for all changes */
  height: 50px;
  
  margin: 20px;
  float: left;
  box-shadow: 0 0 1px #ccc;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  box-shadow:0px 0 0 #1C2833  inset;
}

.btn.pri:hover {
  background: #1C2833; /* Navy background on hover */
  color: #FFFFFF; /* White text on hover */
  transform: scale(1.05); /* Slight scale up */
  box-shadow:100px 0 0 #1C2833 inset;
}

/* Projects Section */

.projects {
  padding: 4rem 2rem;
  background: url('img/gettyimages-1097761012-612x612.jpg') no-repeat center top;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: #F4F6F6; /* Off-White */
  background-size: cover; /* Ensure full coverage */
  background-position: center -100px; /* Shift up to crop top (adjust value as needed) */
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 64, 83, 0.8); /* Slate Gray Overlay */
  z-index: 0;
}

.projects h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.project-card {
  background: #F4F6F6; /* Off-White */
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  color: #2E4053; /* Slate Gray */
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.5rem;
  color: #1C2833; /* Deep Navy */
  margin-bottom: 0.5rem;
}

.project-card p {
  margin-bottom: 1rem;
}
.oil {
  background: url('img/gettyimages-1097761012-612x612.jpg') no-repeat center / cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: #F4F6F6; /* Off-White */
  margin-top: 3%;
  padding: 4rem 2rem; /* More breathing room */
}

.oil::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 64, 83, 0.8); /* Slate Gray Overlay */
  z-index: 0;
}

.oil h2 {
  font-size: 3rem; /* Slightly larger for elegance */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.oil h3 {
  font-size: 2rem; /* Slightly larger for elegance */
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.oil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.oil-card {
  background: #F4F6F6; /* Off-White */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #2E4053; /* Slate Gray */
  text-align: center;
}


.oil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.oil-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.oil-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1C2833; /* Deep Navy */
  margin-bottom: 0.5rem;
}

.oil-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #34495E;
  margin-bottom: 0;
}


.oil-card .view-details {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background-color: #2E4053;
  color: #F4F6F6;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem; /* Space above button */
}

.oil-card .view-details:hover {
  background-color: #1C2833;
  transform: translateY(-2px);
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .oil {
    padding: 3rem 1rem;
  }
  
  .oil h2 {
    font-size: 2rem;
  }

  .oil-card h3 {
    font-size: 1.2rem;
  }
}

/* Make .oil section responsive */
@media (max-width: 992px) {
  .oil {
    padding: 5rem 2rem;
    margin-top: 10%;
    background-attachment: scroll; /* Prevent iOS fixed background issues */
  }
  .oil h2 {
    font-size: 2rem;
  }
  .oil-grid {
    padding-left: 0;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .oil {
    padding: 3rem 1rem;
    margin-top: 5%;
  }
  .oil h2 {
    font-size: 1.5rem;
    margin-top: 2%;
  }
  .oil-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .oil-card {
    padding: 1rem;
  }
  .oil-card h3 {
    font-size: 1.2rem;
  }
  .oil-card p {
    font-size: 0.9rem;
  }
}

/* Services Section */
.services {
  padding: 4rem 2rem;
/* Light Gray */
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1C2833; /* Deep Navy */
}
.services h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;

  color: #374654; /* Deep Navy */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 4vw, 5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(135deg, #F4F6F6, #E8ECEF);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #AAB7B8; /* Silver */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1C2833; /* Deep Navy */
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1C2833; /* Deep Navy */
  font-weight: 600;
}

.service-card p {
  margin: 1rem 0;
  color: #2E4053; /* Slate Gray */
  font-style: italic;
}

.btn.small {
  padding: 0.5rem 1rem;
  background: #1C2833; /* Deep Navy */
  color: #F4F6F6; /* Off-White */
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn.small:hover {
  background: #2E4053; /* Slate Gray */
}
.learnMoreBtn {
  padding: 0.5rem 1rem;
  background: #1C2833; /* Deep Navy */
  color: #F4F6F6; /* Off-White */
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.learnMoreBtn:hover {
  background: #2E4053;
}

.moreText {
  display: none; /* Initially hidden */
  margin-top: 10px;
  font-size: 16px;
}
/* Clients Section */
.market {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.market::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* Inherits the radial gradient */
  filter: blur(20px); /* Adds blur effect */
  z-index: 0;
}

/* Ensure content stays above the blurred background */

.market h2 {
  font-size: 2.5rem;
  color: #F4F6F6; /* Off-White */
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.clients-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
/* Clients Section */
.clients {
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, rgba(28, 40, 51, 0.9), rgb(16, 24, 32,1)); /* #1C2833 with opacity */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* Inherits the radial gradient */
  filter: blur(20px); /* Adds blur effect */
  z-index: 0;
}

/* Ensure content stays above the blurred background */

.clients h2 {
  font-size: 2.5rem;
  color: #F4F6F6; /* Off-White */
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.clients-carousel {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.client-logo {
  margin: 0 1.5rem;
  background: #F4F6F6; /* Off-White */
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.client-logo img {
  width: 150px;
  height: 100px;
  filter: grayscale(100%) brightness(150%);
  transition: filter 0.3s ease;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(100%);
}
/* Locations Section - Reverted */
.locations {
  padding: 4rem 2rem;
  background: radial-gradient(circle at center, rgba(28, 40, 51, 0.9), rgb(16, 24, 32,1)); /* #1C2833 with opacity */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* Inherits the radial gradient */
  filter: blur(20px); /* Adds blur effect */
  z-index: 0;
}



/* Ensure content stays above the background effect */
.locations h2,
.locations-toggle {
  position: relative;
  z-index: 1;
}

.locations h2 {
  font-size: 2.5rem;
  color: #d7eafc; /* Deep Navy */
  margin-bottom: 2rem;
}

.locations-toggle {
  max-width: 1200px;
  margin: 0 auto;
}

.toggle-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  background: #AAB7B8; /* Silver */
  color: #0084ff; /* Deep Navy */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.toggle-btn.active {
  background: #003363; /* Deep Navy */
  color: #F4F6F6; /* Off-White */
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.toggle-btn:hover:not(.active) {
  background: #2E4053; /* Slate Gray */
  color: #F4F6F6; /* Off-White */
}

.locations-content {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}


.branch {
  display: none; /* Hidden by default */
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.branch.active {
  display: flex; /* Shown when active */
  opacity: 1;
  transform: translateX(0);
}

.branch-details {
  flex: 1;
  text-align: left;
}

.branch-details h3 {
  font-size: 1.5rem;
  color: #0084ff; /* Deep Navy */
  margin-bottom: 1rem;
}

.branch-details p {
  color: #007bff; /* Slate Gray */
  margin-bottom: 0.5rem;
}

.branch-map {
  flex: 1;
}

.branch-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  border: 1px solid #AAB7B8; /* Silver */
}
/*machine section*/
.machinery-section {
  padding: 40px 20px;
  
  font-family: 'Segoe UI', sans-serif;
}

.machinery-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.company-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 25px;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.company-card h3 {
  margin-bottom: 15px;
  color: #0077cc;
  font-size: 22px;
}

.company-card p {
  margin: 5px 0;
  line-height: 1.6;
}

.company-card a {
  color: #0077cc;
  text-decoration: none;
}

.company-card a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1C2833; /* Deep Navy */
  color: #F4F6F6; /* Off-White */
  padding: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #F4F6F6; /* Off-White */
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #AAB7B8; /* Silver */
}

.footer-copyright {
  font-size: 0.9rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #1C2833; padding: 1rem; }
  .nav-links.active { display: flex; }
  .nav-links li { margin: 0.5rem 0; }
  #language-select { margin-left: 1rem; }
  .hero h1 { font-size: 2rem; }
  .hero h2 { font-size: 1.2rem; }
  .hero p { font-size: 1rem; }
  .about-content, .projects-grid, .contact-content, .branch { flex-direction: column; grid-template-columns: 1fr; }
  .about-content { border-radius: 10px; } /* Simplified for mobile */
  .client-logo img { width: 100px; height: 70px; }
  .client-logo { margin: 0 1rem; padding: 0.75rem; }
  .toggle-buttons { flex-direction: column; gap: 0.5rem; }
  .branch-map iframe { height: 200px; }
  .contact-form .send-message { padding: 0.75rem 1.5rem; font-size: 1rem; }
}
/* Extra Mobile and Tablet Optimizations */

/* Phones - max width 480px */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content h2 {
    font-size: 1rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }

  .about-content {
    flex-direction: column;
    padding: 1rem;
  }
  .about-content img {
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 1.5rem;
  }
  .about-text p {
    font-size: 1rem;
  }

  .projects-grid, 
  .oil-grid, 
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1rem;
  }


  .clients-carousel .client-logo img {
    width: 80px;
    height: auto;
  }

  footer {
    padding: 1rem;
  }
}

/* Tablets - max width 992px */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-content img {
    max-width: 80%;
  }
  
  .projects-grid,
  .oil-grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .toggle-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .branch {
    flex-direction: column;
  }
}


/* HEADER 
.site-header {
  background: #fff; /* full width background 
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
    width: 100%;

}*/


/* CEO */
.ceo-section {

  padding-top: 8rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1200px;
  margin: auto;
}
.ceo-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ceo-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.ceo-info h2 {
  color: #f39c12;
}

/* OTHER SECTIONS */
.mission-section , .activities-section , .overview-section , .market-section{
   padding-bottom: 2rem;
}
.section-content {
  padding: 8rem 1rem;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.section-content h2 {
  margin-bottom: 1rem;
  color: #f39c12;
}

/* LOCATIONS */
.locations-toggle {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.toggle-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.toggle-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 6px;
}

.toggle-btn.active {
  background: #f39c12;
  color: white;
}

.branch {
  display: none;
}

.branch.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* FOOTER */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .ceo-card, .branch.active {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
