/* ===== BASIC STYLING ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 32, 39, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}
.site-header {
  padding: 10px 0;
}

/* === LOGO STYLING === */
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f39c12;
}
/* ===== HEADER STYLES ===== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

/* ðŸ”¸ Top Info Bar */
.top-bar {
  background: #6b0f0f;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.top-right a {
  margin-left: 12px;
  font-size: 15px;
  transition: color 0.3s;
}

.top-right a:hover {
  color: #ffb347;
}

/* ðŸ”¸ Main Header Row */
.main-bar {
  background: #fff;
  padding: 10px 0;
}

.main-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-bar .logo img {
  height: 55px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #222;
}

.header-right .phone {
  font-size: 15px;
  color: #2c2c2c;
}

.header-right i {
  color: #25d366;
  margin-right: 5px;
}

.btn-enquiry {
  background: linear-gradient(90deg, #ff9900, #ff6200);
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-enquiry:hover {
  background: linear-gradient(90deg, #ff6200, #ff9900);
  transform: translateY(-2px);
}

/* ðŸ”¸ Navbar */
.navbar {
  background: #fff8f1;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #eee;
}

.nav-links a {
  margin: 0 20px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
}

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

/* ðŸ”¸ Sticky Header Scroll Effect */
.sticky {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Navbar Scroll Effect ===== */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Logo hover */
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}


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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1, .hero h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
}

.btn-primary {
  background: linear-gradient(90deg, #f39c12, #e67e22);
  border: none;
  padding: 15px 40px;
  color: white;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

/* ===== FLOATING BUTTON ===== */
.lets-talk {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  padding: 12px 18px;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
}

.lets-talk:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
}

.lets-talk img {
  width: 20px;
}
/* ===== Navbar Style ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  transition: background 0.4s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: auto;
  padding: 15px 40px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f39c12;
}
// ===== Navbar Scroll Effect =====
window.addEventListener("scroll", function() {
  const header = document.querySelector(".site-header");
  if (window.scrollY > 50) {
    header.classList.add("scrolled");
  } else {
    header.classList.remove("scrolled");
  }
});
/* ===== ENQUIRY POPUP ===== */
.open-popup-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1001;
}
.open-popup-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.enquiry-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease forwards;
  z-index: 1002;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.enquiry-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 350px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  position: relative;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.close-popup {
  position: absolute;
  top: 10px; right: 15px;
  border: none;
  background: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}
.close-popup:hover {
  color: #e74c3c;
}

.enquiry-box h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #203a43;
  font-family: 'Poppins', sans-serif;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.tab {
  background: #f5f5f5;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}
.tab.active {
  background: #f39c12;
  color: #fff;
}

.form input, .form select, .form textarea {
  width: 100%;
  padding: 10px;
  margin: 7px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #f39c12, #e67e22);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.submit-btn:hover {
  transform: scale(1.05);
}

.live-chat {
  text-align: center;
  margin-top: 10px;
  color: #f39c12;
  font-weight: 600;
  cursor: pointer;
}
/* ===== PREMIUM HEADER STYLING ===== */

/* Top Bar */
.top-bar {
  background: #6b0f0f;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #ffb347;
}

.top-left span {
  margin-right: 15px;
}

.top-right a {
  margin-left: 12px;
  font-size: 15px;
  color: #fff;
}

.top-right a:hover {
  color: #ffb347;
}

/* Main Header */
.main-bar {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #f2f2f2;
}

.main-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-bar .logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.main-bar .logo img:hover {
  transform: scale(1.05);
}

/* Header Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #2c2c2c;
}

.header-right .phone {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
}

.header-right i {
  color: #25d366;
  font-size: 18px;
}

/* Enquiry Button */
.btn-enquiry {
  background: linear-gradient(90deg, #ff9900, #ff6200);
  color: #fff;
  padding: 8px 22px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(255, 98, 0, 0.3);
}

.btn-enquiry:hover {
  background: linear-gradient(90deg, #ff6200, #ff9900);
  transform: translateY(-2px);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  background: #fff8f1;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #222; /* darker text for visibility */
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.navbar ul li a:hover {
  color: #ff6200; /* orange hover like Enquiry button */
}

/* Active link (optional) */
.navbar ul li a.active {
  color: #ff6200;
  border-bottom: 2px solid #ff6200;
  padding-bottom: 4px;
}
/* ===== TOP BAR ===== */
.top-bar {
  background: #5b0c0c;
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
}

.top-info span {
  margin: 0 12px;
}

/* ===== MAIN NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-logo {
  height: 55px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff7b00;
}

/* ===== MEGA MENU ===== */
.dropdown:hover .mega-menu {
  display: flex;
  animation: slideDown 0.3s ease;
}

.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px 40px;
  border-radius: 10px;
  gap: 40px;
  z-index: 99;
}

.mega-column {
  display: flex;
  flex-direction: column;
}

.mega-column h4 {
  color: #ff7b00;
  margin-bottom: 10px;
}

.mega-column a {
  color: #222;
  margin-bottom: 6px;
  font-size: 14px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RIGHT SIDE ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-btn {
  text-decoration: none;
  color: #25d366;
  font-weight: 600;
}

.enquiry-btn {
  background: linear-gradient(90deg, #ff8800, #ff5500);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  transform: scale(1.05);
}

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .mega-menu {
    position: static;
    display: none !important;
    flex-direction: column;
    padding: 15px;
  }

  .dropdown.active .mega-menu {
    display: flex !important;
  }

  .mega-column h4 {
    cursor: pointer;
    margin-bottom: 8px;
    color: #ff6600;
  }
}
/* ===== TOP BAR ===== */
.top-bar {
  background: #5b0c0c;
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
}

.top-info span {
  margin: 0 12px;
}

/* ===== MAIN NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.nav-logo {
  height: 55px;
  transition: 0.3s;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #1a1a1a;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #ff7b00;
  text-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
}

/* ===== MEGA MENU ===== */
.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 25px 40px;
  border-radius: 14px;
  gap: 60px;
  z-index: 99;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.dropdown:hover .mega-menu {
  display: flex;
  animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.mega-column {
  display: flex;
  flex-direction: column;
  width: 180px;
}

.mega-column h4 {
  color: #ff7b00;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.mega-column a {
  color: #333;
  margin-bottom: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mega-column a:hover {
  color: #ff6600;
  transform: translateX(5px);
}

/* ===== RIGHT SIDE ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.whatsapp-btn {
  text-decoration: none;
  color: #25d366;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.enquiry-btn {
  background: linear-gradient(90deg, #ff8800, #ff5500);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 999;
  }

  .nav-menu.show {
    display: flex;
    animation: fadeIn 0.4s forwards;
  }

  .hamburger {
    display: block;
  }

  .mega-menu {
    position: static;
    display: none !important;
    flex-direction: column;
    padding: 10px 20px;
    gap: 15px;
    opacity: 1;
    transform: none;
  }

  .dropdown.active .mega-menu {
    display: flex !important;
  }

  .mega-column h4 {
    cursor: pointer;
    color: #ff6600;
  }
}
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0; left: 0;
  z-index: -2;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 43, 58, 0.9), rgba(15, 43, 58, 0.4));
  z-index: -1;
}
.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.hero-content h1 span {
  color: #ff7b00;
}
.hero-content p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-top: 15px;
}
.btn-primary {
  margin-top: 30px;
  background: linear-gradient(90deg, #ff9900, #ff6200);
  border: none;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.4);
}
@media (max-width:768px){
  .hero-content h1{font-size:2.2rem;}
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background: #f9fbfd;
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}
.about-text h2 {
  font-size: 2.2rem;
  color: #0f2b3a;
  margin-bottom: 20px;
}
.about-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.about-text ul li {
  margin-bottom: 10px;
  color: #222;
}
.btn-secondary {
  background: none;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 10px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: #ff7b00;
  color: white;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width:991px){
  .about-grid{grid-template-columns:1fr;text-align:center;}
  .about-image{order:-1;}
}
/* ===== SERVICES SECTION ===== */
.services-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.section-title {
  font-size: 2.3rem;
  color: #0f2b3a;
  margin-bottom: 10px;
}
.section-sub {
  color: #666;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.service-card {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  background: #fff;
  border-top: 4px solid #ff7b00;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: #0f2b3a;
  margin-bottom: 10px;
}
.service-card p {
  color: #555;
  font-size: 14px;
}
/* ===== TRUSTED BY SECTION ===== */
.trusted-section {
  background: linear-gradient(135deg, #fdf1e3, #fbe3d3, #fef6ef);
  padding: 60px 0;
  border-radius: 20px;
  margin: 100px auto 0;
  width: 90%;
  max-width: 1400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.trusted-container {
  text-align: center;
}
.trusted-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trusted-logos img {
  height: 40px;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
.trusted-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}
.expertise-section .section-title {
  font-size: 2.3rem;
  color: #0f2b3a;
  margin-bottom: 15px;
}
.expertise-section .section-sub {
  color: #555;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.7;
}
.expertise-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.exp-btn {
  background: #fff;
  border: 2px solid #ff7b00;
  color: #ff7b00;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.exp-btn:hover {
  background: #ff7b00;
  color: white;
}
.exp-btn.active {
  background: linear-gradient(90deg, #ff9900, #ff6200);
  color: white;
  border: none;
}
@media (max-width:768px) {
  .trusted-section {
    margin: 60px auto;
    width: 95%;
  }
  .trusted-logos img {
    height: 30px;
  }
  .expertise-section .section-title {
    font-size: 1.9rem;
  }
}


/* ===== EXPERTISE CARDS SECTION ===== */
.expertise-cards {
  background: #fafafa;
  padding: 100px 0;
}

.expertise-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.expertise-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 136, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: linear-gradient(135deg, #ff9900, #ff4d00);
  transition: all 0.4s ease;
  z-index: 0;
  opacity: 0;
}

.expertise-card:hover::before {
  height: 100%;
  opacity: 1;
}

.expertise-card .icon {
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
.expertise-card .icon img {
  width: 70px;
  transition: transform 0.3s ease;
}
.expertise-card:hover .icon img {
  transform: scale(1.1);
}

.expertise-card h3 {
  font-size: 1.25rem;
  color: #0f2b3a;
  margin-bottom: 15px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}

.expertise-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
  position: relative;
  transition: color 0.3s ease;
}

.expertise-card:hover h3,
.expertise-card:hover p {
  color: #fff;
}

@media (max-width: 768px) {
  .expertise-cards {
    padding: 60px 0;
  }
  .expertise-card {
    padding: 30px 20px;
  }
}
/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 100px 0;
  background: #fff;
}

.choose-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.choose-left {
  flex: 1;
}

.choose-left h2 {
  font-size: 2.5rem;
  color: #0f2b3a;
  font-weight: 700;
  margin-bottom: 20px;
}

.choose-left h2 span {
  background: linear-gradient(90deg, #ff8c00, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-left p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.choose-list {
  list-style: none;
  padding: 0;
}

.choose-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-list i {
  color: #ff7a00;
  font-size: 1.2rem;
}

/* Right Side Stats */
.choose-right {
  flex: 1;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat {
  background: linear-gradient(145deg, #fff, #f5f5f5);
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 4px solid #ff7a00;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 120, 0, 0.2);
}

.stat h3 {
  font-size: 2rem;
  color: #ff7a00;
  font-weight: 700;
}

.stat p {
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
  }

  .choose-left h2 {
    font-size: 2rem;
  }

  .stats-box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .stats-box {
    grid-template-columns: 1fr;
  }
}
/* ===== OUR SERVICES ===== */
.our-services {
  background: #f9f9f9;
  padding: 100px 0;
  text-align: center;
}

.our-services h2 {
  font-size: 2.5rem;
  color: #0f2b3a;
  margin-bottom: 10px;
}

.our-services h2 span {
  background: linear-gradient(90deg, #ff7a00, #ff3c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-services .subtext {
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 25px;
  border: 2px solid #ff7a00;
  background: transparent;
  color: #ff7a00;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(90deg, #ff7a00, #ff3c00);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 120, 0, 0.3);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #0f2b3a;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 120, 0, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .our-services h2 {
    font-size: 2rem;
  }

  .tab-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}
.global-presence {
  background: linear-gradient(180deg, #fffaf7, #fff8f3);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.global-presence .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.global-presence .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.global-presence .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Slider */
.presence-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: calc(250px * 25);
  animation: pingpong 90s ease-in-out infinite alternate;
}

@keyframes pingpong {
  0% { transform: translateX(0); }
  45% { transform: translateX(-45%); }
  55% { transform: translateX(-45%); }
  100% { transform: translateX(0); }
}

/* Office Cards */
.office-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
  padding: 22px;
  width: 230px;
  flex-shrink: 0;
  text-align: left;
  transition: 0.4s ease;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(255, 102, 0, 0.25);
}

.office-card .flag {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.office-card h4 {
  font-size: 1.1rem;
  color: #222;
  font-weight: 700;
}

.office-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Fade edges */
.slider-fade {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.slider-fade.left {
  left: 0;
  background: linear-gradient(90deg, #fff8f3, transparent);
}

.slider-fade.right {
  right: 0;
  background: linear-gradient(270deg, #fff8f3, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  .slider-track {
    animation-duration: 60s;
  }
  .office-card {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .slider-track {
    animation-duration: 45s;
  }
  .office-card {
    width: 160px;
    padding: 18px;
  }
}
/* 🤝 OUR CLIENTS / TRUSTED PARTNERS */
.our-clients {
  background: linear-gradient(180deg, #fff, #fffaf7);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.our-clients .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.our-clients .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-clients .section-subtitle {
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Logo Slider */
.clients-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 80px;
  width: calc(200px * 20);
  animation: clientsPingPong 80s ease-in-out infinite alternate;
}

/* Ping-pong animation for luxury feel */
@keyframes clientsPingPong {
  0% { transform: translateX(0); }
  45% { transform: translateX(-45%); }
  55% { transform: translateX(-45%); }
  100% { transform: translateX(0); }
}

/* Client Logo Design */
.client-logo {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 120, 0, 0.15);
}

/* Subtle fade edges */
.our-clients::before,
.our-clients::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.our-clients::before {
  left: 0;
  background: linear-gradient(90deg, #fffaf7, transparent);
}
.our-clients::after {
  right: 0;
  background: linear-gradient(270deg, #fffaf7, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  .clients-track {
    animation-duration: 60s;
    gap: 60px;
  }
  .client-logo {
    width: 140px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .clients-track {
    animation-duration: 45s;
  }
  .client-logo img {
    max-width: 100px;
  }
}
/* 💬 TESTIMONIALS SECTION (PREMIUM INTERACTIVE VERSION) */
.testimonials {
  background: linear-gradient(180deg, #fff8f3, #fff);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.testimonials .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.testimonials .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Slider */
.testimonials-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  width: calc(340px * 50);
  animation: testimonialsScroll 120s linear infinite;
}

@keyframes testimonialsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause on hover (for the track) */
.testimonials-track:hover {
  animation-play-state: paused;
}

/* Cards */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
  padding: 25px 30px;
  width: 300px;
  flex-shrink: 0;
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

/* Glow + expand effect on hover */
.testimonial-card:hover {
  transform: scale(1.07);
  box-shadow: 0 18px 40px rgba(255, 102, 0, 0.35);
  background: linear-gradient(180deg, #ffffff, #fff2e6);
  z-index: 2;
}

/* Smooth reveal animation for text */
.testimonial-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  max-height: 70px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.testimonial-card:hover p {
  max-height: 200px;
  color: #222;
}

/* Client Info */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff9900;
  transition: 0.4s;
}

.client-info h4 {
  margin: 0;
  color: #222;
  font-weight: 600;
  font-size: 1rem;
}

.client-info span {
  color: #777;
  font-size: 0.85rem;
}

/* Stars */
.stars {
  color: #ff9900;
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: 2px;
  transition: 0.3s;
}

/* Glow around stars on hover */
.testimonial-card:hover .stars {
  text-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

/* Fade edges */
.testimonials::before,
.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(90deg, #fff8f3, transparent);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(270deg, #fff8f3, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-track {
    animation-duration: 80s;
  }
  .testimonial-card {
    width: 260px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials-track {
    animation-duration: 60s;
  }
  .testimonial-card {
    width: 220px;
  }
}


/* 🏢 ABOUT US SECTION */
.about-us {
  background: linear-gradient(180deg, #fff, #fff8f3);
  padding: 120px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 45%;
  text-align: left;
}

.about-text .section-title {
  font-size: 2.8rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-intro {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 500;
}

.about-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6600;
  margin-bottom: 5px;
}

.stat p {
  color: #666;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  border: none;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff5500, #ff8800);
  transform: translateY(-3px);
}

/* Right Side Image */
.about-image {
  flex: 1 1 45%;
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(255, 102, 0, 0.25);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 102, 0, 0.25), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
  .about-image {
    flex: 1 1 100%;
  }
  .about-stats {
    justify-content: center;
  }
}
/* 🌟 MISSION & VISION SECTION */
.mission-vision {
  background: linear-gradient(180deg, #fff8f3, #fff);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.mission-vision .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.mission-vision .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-vision .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Card Layout */
.mv-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.mv-card {
  flex: 1 1 30%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #ff6600;
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(255, 102, 0, 0.25);
  background: linear-gradient(180deg, #ffffff, #fff3e6);
}

/* Icon Styling */
.mv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ff6600;
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

.mv-card h3 {
  font-size: 1.5rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
}

.mv-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* Golden Divider (optional aesthetic line between cards) */
.mv-cards::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  top: 50%;
  left: 20%;
  opacity: 0.3;
  z-index: 0;
}

.mv-cards {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .mv-cards {
    flex-direction: column;
    align-items: center;
  }
  .mv-card {
    width: 90%;
    margin-bottom: 30px;
  }
}


/* 💼 SERVICES / WHAT WE OFFER */
.services {
  background: linear-gradient(180deg, #fff, #fff8f3);
  padding: 120px 0;
  text-align: center;
}

.services .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.services .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(255, 102, 0, 0.25);
  background: linear-gradient(180deg, #ffffff, #fff3e6);
}

/* Icon Styling */
.service-card .icon {
  font-size: 3rem;
  color: #ff6600;
  margin-bottom: 15px;
  transition: 0.3s;
}

.service-card:hover .icon {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(255, 153, 0, 0.5);
}

/* Titles & Text */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Enquiry Button */
.enquiry-btn {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background: linear-gradient(90deg, #ff5500, #ff8800);
  transform: translateY(-3px);
}

/* 🌍 INDUSTRIES WE SERVE */
.industries {
  background: linear-gradient(180deg, #fff8f3, #fff);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.industries .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
}

.industries .section-title span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industries .section-subtitle {
  color: #555;
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Slider Animation */
.industries-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.industries-track {
  display: flex;
  gap: 30px;
  width: calc(250px * 20);
  animation: industriesScroll 60s linear infinite;
}

@keyframes industriesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Industry Cards */
.industry-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
  padding: 30px 20px;
  width: 220px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  text-align: center;
}

.industry-card:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(255, 102, 0, 0.25);
  background: linear-gradient(180deg, #ffffff, #fff3e6);
}

.industry-card .icon {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 10px;
  transition: 0.3s;
}

.industry-card h4 {
  font-size: 1.1rem;
  color: #222;
  font-weight: 600;
}

/* Subtle fade edges */
.industries::before,
.industries::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.industries::before {
  left: 0;
  background: linear-gradient(90deg, #fff8f3, transparent);
}

.industries::after {
  right: 0;
  background: linear-gradient(270deg, #fff8f3, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  .industries-track {
    animation-duration: 45s;
  }
}

@media (max-width: 768px) {
  .industries-track {
    animation-duration: 35s;
  }
  .industry-card {
    width: 180px;
  }
}

.industries-track:hover {
  animation-play-state: paused;
}
/* 📞 CONTACT CTA */
.contact-cta {
  background: linear-gradient(180deg, #fffaf7, #fff2e6);
  padding: 100px 0;
  text-align: left;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-left {
  flex: 1 1 45%;
}

.contact-left h2 {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left h2 span {
  background: linear-gradient(90deg, #ff6600, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-left p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-right {
  flex: 1 1 45%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #333;
}

.info-item i {
  font-size: 1.5rem;
  color: #ff6600;
}

.social-links a {
  font-size: 1.8rem;
  margin-right: 15px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.social-links a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 153, 0, 0.6);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 25px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 153, 0, 0.5);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .contact-left, .contact-right {
    flex: 1 1 100%;
  }
  .social-links {
    justify-content: center;
  }
}
