/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
}

/* --------------------
 Contact Bar Styles
-------------------- */
.contact-bar {
  display: none;
  background-color: #e3e6e6;/* gray-50 */
  width: 100%;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
/* Show on medium screens and up */
@media (min-width: 768px) {
  .contact-bar {
    display: flex;
    flex-direction: row;
    padding-bottom: 15px;
  }
}
/* Left: Logo */
.contact-left a {
  display: inline-block;
}
.logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}
/* Center info */
.contact-center {
  text-align: center;
  max-width: 400px;
}
.contact-center h2 {
  font-size: 1.60rem;
  font-weight: 700;
  color: #2563eb;/* blue-600 */
}
.contact-center p {
  margin-bottom: 0.20rem;
  font-weight: 600;
  color: #000;
}
/* Buttons container */
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
/* Button styles */
.btn {
  background-color: #3b82f6;/* blue-500 */
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
.btn-social {
  background-color: #25d366; /* WhatsApp green */
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
.btn:hover,.btn:focus {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
  outline: none;
}
/* Social Icons */
.contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
}
.contact-social span {
  white-space: nowrap;
}
/* Social icon buttons */
.social-icon {
  display: flex;
  background-color: #f9fafb;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 9999px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: inherit;
  font-size: 1.25rem;
  text-decoration: none;
}
.social-icon:hover,.social-icon:focus {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  transform: scale(1.1) translateY(-4px);
  outline: none;
}
/* Brand Colors */
.social-icon.facebook {
  color: #3b5998;
}
.social-icon.instagram {
  color: #e4405f;
  font-size: 1.125rem;
}
.social-icon.youtube {
  color: #ff0000;
  font-size: 1.125rem;
}
.social-icon.whatsapp {
  color: #25d366;
  font-size: 1.125rem;
}
.social-icon.facebook:hover {
  background-color: #007bff;
  color: #fff;
}
.social-icon.instagram:hover {
  background-color: #e4405f;
  color: #fff;
  font-size: 1.125rem;
}
.social-icon.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  font-size: 1.125rem;
}
.social-icon.whatsapp:hover {
  background-color: #25d366;
  color: #fff;
  font-size: 1.125rem;
}

/* --------------------
  Navbar Section Styles
-------------------- */
.navbar {
  background-color: #3b82f6;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.45rem 1rem;
}
/* Logo */
.logos img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
/* Desktop Nav */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.nav-links>a,.dropdown>a {
  color: white;
  text-decoration: none;
  padding: 0.45rem 1rem;
  transition: background-color 0.3s ease;
}

.nav-links>a:hover,.dropdown:hover>a {
 text-decoration: underline; 
 color: #000;
}
/* Dropdowns */
.dropdown {
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 115%;
  left: 0;
  background-color: #2563eb;
  min-width: 200px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Animate only the text */
.moving-text {
  display: inline-block;
  transition: transform 0.3s ease; /* Smooth transition for the text */
}
.moving-text:hover {
  transform: translateX(10px); /* Move the text 10px to the right on hover */
}
.dropdown-content a:hover {
  background-color: #555;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/* Mobile Header */
.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
/* Mobile Sidebar Menu */
.mobile-menu {
  display: none;
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: -300px; /* Start off-screen */
  width: 300px;
  height: 90%;
  background-color: white;
  padding: 1rem;
  transition: left 0.3s ease;
  z-index: 999;
}
/* When Sidebar is Visible */
.mobile-menu.show {
  left: 0; /* Slide in */
}
/* Mobile Menu Items */
.mobile-menu a, .mobile-menu button.dropdown-toggle {
  padding: 0.75rem 1rem;
  color: #000;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu a:hover,.mobile-menu button:hover {
  background-color:#2563eb;
  width: 100%;
}
/* Mobile Submenu */
.mobile-submenu {
  display: none;
  flex-direction: column;
  background-color: #3b82f6;
  transition: max-height 0.3s ease-in-out;
}
.mobile-submenu.show {
  display: flex;
}
.mobile-submenu a {
  background-color: #555;
  padding-left: 1.5rem;
}
/* Close Button */
#hamburgerBtn {
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
/* For Mobile View */
@media (max-width: 768px) {
  .desktop-only {display: none;}
  .mobile-header {display: flex;padding: 0.75rem 1rem;}
  .mobile-only {display: inline-block;}
  .mobile-menu {display: flex;}
  .mobile-menu.show {display: flex;}
}


/* -------------------- 
  Video Section Styles
 -------------------- */
.video-container {
  width: 100%;
  height: 70vh;/* Matches h-[98%] */
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* -------------------- 
  About Section Styles
 -------------------- */
.about-section{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;/* gray-100 */
  padding: 16px;
}
.about-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
  padding: 5px;
  margin: auto;
  max-width: 1200px;
}
.about-card:hover {
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}
.title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #1E40AF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.marquee {
  color: #1E40AF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.description {
  color: #333333;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .about-card {padding: 40px;}
  .title {font-size: 2.5rem;}
  .description {font-size: 16px;}
}
@media (min-width: 1024px) {
  .about-card {padding: 40px;}
  .title {font-size: 3rem;}
  .description {font-size: 17px;}
}
/* -------------------- 
  Process Section Styles
 -------------------- */
.process-section {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .process-section {grid-template-columns: repeat(3, 1fr);}
}
.card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: default;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background-color: #81e6d9;/* teal-200 */
}
.icon {
  background-color: #3b82f6;/* blue-500 */
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  color: white;
  font-size: 1.5rem;
}
.card:hover .icon {
  background-color: #2563eb;
}
.card:hover .fas {
  color: #003366;
}
.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  color: #1e40af; /* blue-800 */
}
.card:hover h3 {
  color: #2563eb; /* blue-600 */
}
.card .text {
  text-align: start;
  font-size: 0.875rem;
  color: #4b5563;/* gray-600 */
  line-height: 1.4;
}
/* Responsive typography */
@media (max-width: 480px) {
  .contact-center h3 {font-size: 1rem;}
  .process-section {padding: 0 0.5rem;}
}

/* -------------------- 
  Industries Section Styles
 -------------------- */
.container-industries {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.container-industries>.title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #3b82f6;
}
.container-industries>.titles {
  text-align: center;
  font-weight: bold;
  color: #3b82f6;
  padding : 0 0 15px 0 ;
}
.grid {
  display: grid;
  grid-template-columns:  repeat(5, 1fr);;
  gap: 1.5rem;
}
.job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, background-color 0.3s;
  overflow: hidden; /* Ensures content doesn't overflow the card */
}
.job-card:hover {
  transform: scale(1.05);
  background-color: #3b82f6;
}
.job-card .blue-curve {
  position: absolute;
  width: 180%; /* Make the curve larger than the card */
  height: 180%; /* Make the curve larger than the card */
  background-color: #bfdbfe;
  opacity: 0.3;
  border-radius: 0 50% 100% 0%;
  bottom: 20px; /* Move the curve more out of the bottom */
  left: -80%; /* Move the curve out more from the left side */
  transform: scale(0); /* Initial state */
  transition: transform 0.7s ease-out; /* Animate the scale */
}
.job-card:hover .blue-curve {
  transform: scale(1); /* Expand the curve when hovered */
}
.job-card .icon {
  background-color: #3b82f6;
  color: #fff;
  font-size: 2rem;
  padding: 15px;
  border-radius: 50%;
  transition: all 0.3s;
}
.job-card:hover .icon {
  background-color: #fff;
  color: #3b82f6;
  transform: scale(0.8);
}
.job-card .text-content {
  text-align: center;
  margin-top: 15px;
}
.job-card .text-content .job-name {
  font-weight: bold;
  color: #000;
  transition: color 0.3s;
}
.job-card:hover .text-content .job-name {
  color: #fff;
}
.job-card .text-content {
  color: #3b82f6;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.job-card:hover .text-content {
  color: #fff;
}
.arrow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  color: #3b82f6;
  transition: all 0.3s;
}
.job-card:hover .arrow-icon {
  border-color: #fff;
  color: #fff;
}
.arrow-icon i {
  transition: transform 0.3s;
}
.job-card:hover .arrow-icon i {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .grid {grid-template-columns: 1fr 1fr;}/* 2 columns on small screens */
}

/* -------------------- 
  Location Section Styles
 -------------------- */
.location-section {
  background-color: #f3f4f6;
  padding: 20px 20px;
}
.location-section>.title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  color: #1D4ED8;
  padding:0 0 20px 0;
}
.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);;
  gap: 30px;
  padding: 0 5px;
}
.location {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.location:hover {
  transform: scale(1.05);
}
.image-wrapper {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  perspective: 1000px; /* Enables 3D effect */
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.location-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #1D4ED8;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden; /* Hide back when flipped */
  transition: transform 0.7s ease;
}

/* Front Side (Default) */
.location-image.front {
  object-fit: cover;
  transform: rotateY(0deg);
}

/* Back Side (Hidden initially) */
.location-image.back {
  background-color: #e0e0e0;
  object-fit: contain;
  transform: rotateY(180deg);
}

/* Flip Effect on Hover */
.location:hover .image-wrapper .front {
  transform: rotateY(180deg);
}

.location:hover .image-wrapper .back {
  transform: rotateY(360deg);
}
.location:hover .image-wrapper {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.location-name {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1rem;
  color: #4B5563;
  transition: color 0.3s ease-in-out;
}
.location:hover .location-name {
  color: #1D4ED8;
}
/* Media Queries */
@media (max-width: 1024px) {
  .title {
    font-size: 2rem;
  }
  .locations {
    grid-template-columns:  repeat(4, 1fr);; /* Allow more locations per row on tablets */
  }
  .location .image-wrapper {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .title {font-size: 1.75rem;}
  .locations {grid-template-columns:  repeat(2, 1fr); }/* 1-2 locations per row on smaller tablets */
  .location .image-wrapper {width: 130px;height: 130px;}
  .location-name {font-size: 0.9rem;} /* Adjust text size for smaller screens */
}
@media (max-width: 480px) {
  .title {font-size: 1.5rem;}
  .locations {grid-template-columns: 1fr;} /* 1 location per row on mobile */
  .location .image-wrapper {width: 120px;height: 120px;}
  .location-name {font-size: 0.85rem;} /* Smaller font size for mobile */
}

/* -------------------- 
  Services Section Styles
 -------------------- */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.services-container>.title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #1d4ed8;
  padding-bottom: 15px;
}
/* Grid Layout */
.service-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) {
  .service-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .service-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Service Card */
.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 1rem;
}
.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
/* Image Styling */
.service-image {
  width: 100%;
  height: 13rem;
  object-fit: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}
/* Text Styling */
.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}
.service-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}
.service-card:hover .service-image {
  transform: scale(1.05);
  filter: brightness(0.9);
  overflow: hidden;
}

/* -------------------- 
  Consultant Section Styles
 -------------------- */
.consultant-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #e0f2fe;
  margin-top: 10px;
  padding: 4rem 0;
}
.left-section {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Background Shape */
.half-bg {
  position: absolute;
  left: 0;
  width: 66.66%;
  height: 600px;
  background-color: #1e3a8a; /* blue-900 */
  z-index: 0;
}
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 10;
}
/* Outer faded circle */
.outer {
  width: 500px;
  height: 500px;
  background-color: #e5e7eb; /* gray-200 */
  opacity: 0.05;
  box-shadow: inset 15px 15px 30px rgba(0,0,0,0.3), inset -15px -15px 30px rgba(255,255,255,0.2);
}
.border-circle {
  width: 550px;
  height: 550px;
  border: 2px solid white;
  opacity: 0.2;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.6), 0 -4px 6px rgba(0, 0, 0, 0.3);
}
.inner {
  width: 420px;
  height: 420px;
  background-color: #1e3a8a; /* blue-900 */
  box-shadow: 10px 10px 20px rgba(0,0,0,0.6), -10px -10px 20px rgba(255,255,255,0.15);
}
/* Image */
.main-image {
  position: relative;
  width: 350px;
  height: 350px;
  object-fit: contain;
  z-index: 20;
}
.right-section {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-content {
  max-width: 700px;
  color: #1e293b; /* slate-800 / gray-800 */
}
.text-content h2 {
  color: #1d4ed8; /* blue-700 */
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
/* Media Queries*/
@media screen and (max-width: 479px) {
  .consultant-section {
    padding: 2rem 1rem;
    flex-direction: column;
  }
  .left-section {
    padding: 1rem;
    min-height: 320px;
  }
  .half-bg {
    width: 75%;
    height: 380px;
  }
  .outer {
    width: 200px;
    height: 200px;
  }
  .border-circle {
    width: 230px;
    height: 230px;
  }
  .inner {
    width: 180px;
    height: 180px;
  }
  .main-image {
    width: 150px;
    height: 150px;
  }
  .text-content {
    padding: 1rem 0;
  }
  .text-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .text-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
/* Small Devices - Phones (≥480px) */

@media screen and (min-width: 480px) {
  .left-section {
    padding: 1.25rem;
    min-height: 400px;
  }
  .half-bg {
    width: 66.66%;
    height: 400px;
  }
  .outer {
    width: 300px;
    height: 300px;
  }
  .border-circle {
    width: 340px;
    height: 340px;
  }
  .inner {
    width: 260px;
    height: 260px;
  }
  .main-image {
    width: 200px;
    height: 200px;
  }
  .text-content h2 {
    font-size: 1.5rem;
  }
  .text-content p {
    font-size: 0.95rem;
  }
}
/* Medium Devices - Tablets (≥768px) */
@media screen and (min-width: 768px) {
  .consultant-section {
    padding: 3rem 2rem;
  }
  .left-section {
    min-height: 460px;
    padding: 2rem;
  }
  .half-bg {
    width: 66.66%;
    height: 500px;
    
  }
  .outer {
    width: 400px;
    height: 400px;
  }
  .border-circle {
    width: 450px;
    height: 450px;
  }
  .inner {
    width: 320px;
    height: 320px;
  }
  .main-image {
    width: 280px;
    height: 280px;
  }
  .text-content h2 {
    font-size: 1.6rem;
  }
  .text-content p {
    font-size: 1rem;
  }
}
/* Large Devices - Desktops (≥1024px) */
@media screen and (min-width: 1024px) {
  .consultant-section {
    flex-direction: row;
    padding: 4rem 2rem;
  }
  .left-section {
    width: 66.66%;
    padding: 2.5rem;
  }
  .right-section {
    width: 50%;
    padding: 2rem;
  }
  .half-bg {
    width: 66.66%;
    height: 590px;
  }
  .outer {
    width: 500px;
    height: 500px;
  }
  .border-circle {
    width: 550px;
    height: 550px;
  }
  .inner {
    width: 420px;
    height: 420px;
  }
  .main-image {
    width: 350px;
    height: 350px;
  }
  .text-content h2 {
    font-size: 1.75rem;
  }
  .text-content p {
    font-size: 1rem;
  }
}

/* -------------------- 
  Gallery Section Styles
 -------------------- */
.gallery-container {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.Videos, .Photos {
  flex: 1 1 45%;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.section-header h4 {
  width: fit-content;
  border-bottom: 2px solid #3b82f6;
}

.video-grid, .photo-grid {
  display: grid;
  gap: 12px;
}
.video-grid {
  grid-template-columns: 1fr 1fr;
}
.photo-grid {
  height: 315px;
  grid-template-columns: repeat(3, 1fr);
}
.photo-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.photo-grid img:hover {
  transition: transform 0.4s ease;
  transform: scale(1.05);
}
.video-thumbnail video, .photo-grid img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
}
.lightbox-close,.lightbox-prev,.lightbox-next {
  position: absolute;
  top: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.lightbox-close { 
  right: 20px; 
}
.lightbox-prev { 
  left: 20px; 
  top: 50%; 
  transform: translateY(-50%); 
}
.lightbox-next { 
  right: 20px; 
  top: 50%; 
  transform: translateY(-50%); 
}
.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}
.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.5); /* optional for visibility */
  padding: 4px 8px;
  border-radius: 4px;
}
.lightbox-content img {
  border-radius: 15px;
  max-height: 80vh;
  width: 80%;
  margin-bottom: 20px;
}
.lightbox-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 90vw;
  justify-content: center;
}
.lightbox-thumbs .thumb {
  border-radius: 5px;
  width: 60px;
  height: 40px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
}
.lightbox-thumbs .thumb.active {
  border: 2px solid #1abfc5;
  opacity: 1;
}
.lightbox-contents video {
  width: 95vw;
  max-height: 95vh;
}
.lightbox-thumbs .thumb.active {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .row {
    flex-direction: column;
  }
  .Videos, .Photos {
    flex: 1 1 100%;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid img, .video-thumbnail video {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .gallery-container {
    padding: 20px;
  }
  .section-header h4 {
    font-size: 1.2rem;
  }
  .btn-view {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid img, .video-thumbnail video {
    height: 180px;
  }
  .lightbox-content img {
    width: 90%;
    max-height: 70vh;
  }
  .lightbox-thumbs .thumb {
    width: 50px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .photo-grid, .video-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .photo-grid img, .video-thumbnail video {
    height: 150px;
  }
  .btn-view {
    width: 100%;
    text-align: center;
  }
  .lightbox-content img {
    width: 95%;
    max-height: 60vh;
  }
  .lightbox-prev, .lightbox-next {
    font-size: 1.5rem;
  }
}
/* -------------------- 
  Carousel Section Styles
 -------------------- */
.carousel-section {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}
.carousel-title {
  color: #0284c7;
  font-size: 1.5rem;
  font-weight: 600;
}
.client-carousel img {
  height: 80px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
.client-carousel img:hover {
  transform: scale(1.05);
}
.slick-slide {
  padding: 0 10px;
}
.client-carousel {
  max-width: 1200px;
  margin: 0 auto;
}
/* -------------------- 
  Enquiry Section Styles
-------------------- */
.enquiry-container {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  min-height: fit-content;
}

/* -------- Left Section (Form) -------- */
.form-section {
  flex: 1;
  padding: 30px;
  background: linear-gradient(45deg, #008cff, #955feb);
  color: white;
}
.form-section h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}
.form-section p {
  margin-bottom: 20px;
  font-size: 16px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  color: #333;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}
input[type="checkbox"] {
  width: auto;
  margin: 0;
  padding: 0;
  margin-right: 8px;
}
.terms{
  color:#ffffff;
}

/* Keep checkbox and text on same line */
.optin-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}
.optin-title {
  font-weight: 600;
  margin-right: 4px;
}
.form hr {
  margin-top: 25px;
  border: none;
  border-top: 3px solid rgba(255, 255, 255, 0.6);
}

/* -------- Button -------- */
.gradient-btn {
  position: relative;
  padding: 12px 32px;
  border-radius: 1000px;
  font-weight: 500;
  color: #fff;
  background: black;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4),
              0 6px 20px rgba(0, 0, 0, 0.3);
  margin: 20px auto 0;
  display: block;
}
.gradient-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #008cff, #e100ff);
  padding: 2px;
  border-radius: inherit;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.gradient-btn:hover {
  background: linear-gradient(45deg, #008cff, #e100ff);
  transform: translateY(-2px);
}

/* -------- Right Section (Info) -------- */
.info-section {
  flex: 1;
  padding: 30px;
  background: linear-gradient(45deg, #3ac9f5, #4d2ddb, #47c8f0);
  color: white;
}
.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
.icons {
  font-size: 50px;
  color: #00eaff;
  margin-top: 16px;
}
.info-block h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}
.info-block p {
  font-size: 15px;
  line-height: 1.4;
}

/* -------------------- 
  MEDIA QUERIES 
-------------------- */

/* ====== For laptops and smaller desktops (max-width: 1024px) ====== */
@media (max-width: 1024px) {
  .enquiry-container {
    flex-direction: row;
  }
  .form-section, .info-section {
    padding: 25px;
  }
  .form-section h2 {
    font-size: 22px;
  }
  .form input, .form select, .form textarea {
    font-size: 15px;
    padding: 10px;
  }
  .info-block h3 {
    font-size: 18px;
  }
  .icons {
    font-size: 42px;
  }
}

/* ====== For tablets (max-width: 768px) ====== */
@media (max-width: 768px) {
  .enquiry-container {
    flex-direction: column;
    min-height: fit-content;
  }
  .form-section, .info-section {
    width: 100%;
    padding: 20px;
  }
  .form-section h2 {
    font-size: 22px;
  }
  .form-section p {
    font-size: 15px;
  }
  .gradient-btn {
    width: 100%;
    padding: 14px;
  }
  .info-block {
    flex-direction: column;
    text-align: center;
  }
  .icons {
    font-size: 40px;
    margin: 0 auto 10px;
  }
}

/* ====== For mobile phones (max-width: 480px) ====== */
@media (max-width: 480px) {
  .enquiry-container {
    flex-direction: column;
    min-height: fit-content;
  }
  .form-section, .info-section {
    padding: 15px;
  }
  .form-section h2 {
    font-size: 20px;
  }
  .form input, .form select, .form textarea {
    font-size: 14px;
  }
  .gradient-btn {
    font-size: 14px;
    padding: 12px;
  }
  .info-block {
    gap: 12px;
    margin-bottom: 25px;
  }
  .info-block h3 {
    font-size: 16px;
  }
  .info-block p {
    font-size: 14px;
  }
  .icons {
    font-size: 35px;
  }
}

/* -------------------- 
 Footer Section Styles
 -------------------- */
.footer {
  padding: 0px 50px 0;
  font-family: Arial, sans-serif;
  background-color: #e0e0e01a;
  color: #333;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-left,.footer-right {
  width: 100%;
  max-width: 100%;
}
.footer-logo {
  width: 250px;
  height: 100px;
  max-width: 100%;
}
.description {
  margin: 0;
  padding-bottom: 10px;
  font-size: 14px;
  color: #555;
}
.contact-info p {
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 10px;
}
.contact-info a {
  color: #555;
  text-decoration: none;
}
.contact-info a:hover{
  color:#007bff;
}
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-section {
  flex: 1 1 40%; /* Two per row default */
  padding-top: 40px;
}
.footer-title {
  width: fit-content;
  border-bottom: 2px solid #3b82f6;
}
.footer-section h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #1e40af;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.footer-section ul li a:hover {
  color: #007bff;
}
/* === Bottom Bar === */
.bottom-bar {
  background-color: #e0e0e01a;
  margin-top: 30px;
  padding: 20px 0;
  border-top: 1px solid #007bff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.social-link a {
  margin-left: 10px;
  text-decoration: none;
}
.footer-links a{
  padding: 10px;
  color: #555;
  text-decoration: none;
}
.social-icons {
  padding: 8px;
  border-radius: 9999px;
  color: inherit;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.social-icons:hover,.social-icons:focus {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
  transform: scale(1.1) translateY(-4px);
  outline: none;
}
.social-icons.facebook {
  background-color: #ffff;
  color: #3b5998;
}
.social-icons.instagram {
  background-color: #ffff;
  color: #e4405f;
  font-size: 1.125rem;
}
.social-icons.youtube {
  background-color: #ffff;
  color: #ff0000;
  font-size: 1.125rem;
}
.social-icons.whatsapp {
  background-color: #ffff;
  font-size: 1.125rem;
}
.social-link a.facebook:hover {
  background-color: #007bff;
  color: #fff;
}
.social-link a.instagram:hover {
  background-color: #e4405f;
  color: #fff;
}
.social-link a.youtube:hover {
  background-color: #ff0000;
  color: #fff;
}
.social-link a.whatsapp:hover {
  background-color: #25d366;
  color: #fff;
}
@media screen and (min-width: 480px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-left {
    width: 100%;
    max-width: 100%;
  }
  .footer-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-section {
    flex: 1 1 48%; /* 2 per row */
  }
}
/* min-width: 768px – Tablets and small desktops */
@media screen and (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .footer-right {
    flex: 0 0 68%;
    max-width: 68%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-section {
    flex: 1 1 48%; /* still 2 per row */
  }
}
/* min-width: 1024px – Laptops and up */
@media screen and (min-width: 1024px) {
  .footer-left {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .footer-right {
    flex: 0 0 68%;
    max-width: 68%;
  }
  .footer-section {
    flex: 1 1 22%; /* 4 per row approx (22% + gaps) */
  }
}