@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: roboto;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* General Styles */
/* Update your existing body styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Update the main container */
.main-container {
  width: 100%;
  overflow-x: hidden;
}

/* Ensure all sections have proper width constraints */
.hero,
.about-us-contaner,
.card-container,
.logos,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* Default styling for the logo */
.logo {
  display: flex;
  position: absolute;
  left: 20px;
  padding: 0px 0px;
  margin: 0px 0px;
  top: 0px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.logo-img {
  top: 15px;
  position: relative;
  padding: 0px 0px;
  margin-bottom: 30px;
  height: 40px;
  /* Adjust to fit within the header */
  width: 60px;
  /* Maintains aspect ratio */
}


h1,
h2,
h3 {
  margin: 0;
}

.logo h2 {
  color: #1C4355;
  font-size: 25px;
}

.logo span {
  color: #E67E22;
  ;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  /* Lower than sidebar */
  height: 60px;
}

/* Logo Section */
header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #E67E22;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-top: 20px;
}

header nav a {
  margin: 0 15px;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: 15px;
}

header nav a:hover {
  color: #E67E22;
}

header .buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

header .buttons .button-1,
header .buttons .button-2 {
  width: auto;
}

header .buttons .btn,
header .buttons .btn2 {
  color: #E67E22;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #E67E22;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

header .buttons .btn:hover,
header .buttons .btn2:hover {
  color: white;
}

header .buttons .btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #E67E22;
  z-index: -1;
  transition: all 1s;
}

header .buttons .btn2::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #E67E22;
  z-index: -1;
  transition: all 1s;
}

header .buttons .btn:hover::before,
header .buttons .btn2:hover::before {
  width: 160%;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.sidebar-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  position: absolute;
  top: 20px;
  left: -100px;
  min-width: 700px;
  padding: 20px 10px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;

  display: flex;
  /* Always flex */
  flex-direction: row;
  /* Stay horizontal */
  gap: 50px 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

/* Individual Column Styling */
.dropdown-column {
  width: 220px;
}

.dropdown-column h4 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  border-bottom: 2px solid #ddd;
}

.dropdown-column a {
  color: black;
  padding: 2px 0;
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

/* .dropdown-column a:hover {
  background-color: #f4f4f4;
} */

/* Show dropdown when hovering */
.dropdown:hover .dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sidebar-dropdown.active .dropdown-content {
  display: block;
  /* Show dropdown when active */
}

.sidebar-dropdown.active .sidebar-nav {
  display: flex;
  /* Makes the dropdown content visible */
  top: 500px;
}

/* Arrow Buttons for Dropdown Links */
.arrow-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  float: right;
}

/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Sidebar hidden on desktop by default */
.sidebar {
  display: none;
}

/* Arrow Buttons for Dropdown Links */
.arrow-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  float: right;
}

/* ======================================
   HERO SECTION - ADVANCED STYLING
   ====================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(230, 126, 34, 0.1) 0%, 
    rgba(0, 0, 0, 0.3) 50%, 
    rgba(41, 128, 185, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.7) contrast(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  animation: heroFadeIn 1.5s ease-out;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 2s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideUpFade 1s ease-out 0.5s both;
}

.hero .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
  position: relative;
  overflow: hidden;
  animation: slideUpFade 1s ease-out 0.8s both;
}

.hero .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s;
}

.hero .cta-button:hover::before {
  left: 100%;
}

.hero .cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 126, 34, 0.6);
  background: linear-gradient(135deg, #D35400 0%, #B7471C 100%);
}

.hero .cta-button::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero .cta-button:hover::after {
  transform: translateX(5px);
}

/* Hero Animations */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGlow {
  from {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  to {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  }
}


/* ======================================
   ABOUT US SECTION - ADVANCED STYLING
   ====================================== */
.about-us-contaner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  padding: 100px 5% 100px 8%;
  overflow: hidden;
}

.about-us-contaner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, 
    rgba(230, 126, 34, 0.05) 0%, 
    transparent 50%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.about-us-content {
  width: 45%;
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: aboutContentSlide 1s ease-out;
}

.about-us-title {
  margin-bottom: 40px;
  position: relative;
}

.about-us-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E67E22, #D35400);
  border-radius: 2px;
}

.about-us-title h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.1;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.about-us-text {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 40px;
}

.about-us-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #E67E22;
  line-height: 1.3;
}

.about-us-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 30px;
}

/* Social icons styling */
.social {
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.5);
  background: linear-gradient(135deg, #D35400 0%, #B7471C 100%);
}

.about-us-contaner .btn-container {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.about-us-contaner .btn-container button {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  padding: 15px 35px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
  overflow: hidden;
  position: relative;
}

.about-us-contaner .btn-container button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s;
}

.about-us-contaner .btn-container button:hover::before {
  left: 100%;
}

.about-us-contaner .btn-container button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
  background: linear-gradient(135deg, #D35400 0%, #B7471C 100%);
  color: white;
}

button:after {
  display: none; /* Remove old animation */
}

.about-us-contaner .btn-container button:hover:after {
  display: none; /* Remove old animation */
}

/* Image styling */
.about-image {
  position: relative;
  width: 50%;
  z-index: 1;
  animation: aboutImageSlide 1s ease-out 0.3s both;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* About Us Animations */
@keyframes aboutContentSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aboutImageSlide {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  height: 100vh;
  margin: 50px 0;

}

.card {
  display: block;
  position: relative;
  max-width: 500px;
  max-height: 720px;
  background-color: #f2f8f9;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
  font-family: Arial, Helvetica, sans-serif;
  flex: 1 1 calc(33.333% - 40px);
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
}

.card::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(0px);
  transition: filter 0.35s ease-out;
}

.blur {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid white;
  opacity: 1;
  height: 100px;
  width: 600px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(5px);
  transition: transform 2s ease-out;

}

.card-title {
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
  position: absolute;
}

.small-desc {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease-out, height 0.1s ease-out;
  position: absolute;
  top: 150px;
}

.card:hover .blur {
  opacity: 0;
}

.card:hover .small-desc {
  opacity: 1;
  height: auto;
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #d67b2c, #d67b2c);
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #d67b2c, #d67b2c);
  height: 45px;
  width: 47px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.card:hover:after {
  transform: scale(28);
  filter: blur(8px);
  background-color: transparent;
}

.card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}

/* Partners/Logos Section */
.logos {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  white-space: nowrap;
  position: relative;
}

.logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.03) 0%, rgba(211, 84, 0, 0.03) 100%);
  z-index: 1;
}

.logos::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.02) 0%, transparent 70%);
  animation: logosGlow 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes logosGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: rotate(25deg) scale(1.2);
    opacity: 0.8;
  }
}

/* Gradient overlays for seamless scroll effect */
.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  content: "";
  z-index: 3;
  pointer-events: none;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to right, 
    #f8f9fa 0%, 
    rgba(248, 249, 250, 0.8) 50%,
    rgba(248, 249, 250, 0) 100%
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to left, 
    #f8f9fa 0%, 
    rgba(248, 249, 250, 0.8) 50%,
    rgba(248, 249, 250, 0) 100%
  );
}

.logos-slide {
  display: inline-block;
  animation: 12s logoSlide infinite linear;
  position: relative;
  z-index: 2;
}

.logos-slide img {
  height: 80px;
  width: 140px;
  aspect-ratio: 7 / 4;
  object-fit: contain;
  margin: 0 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(100%) opacity(0.7);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logos-slide img:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(230, 126, 34, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(230, 126, 34, 0.3);
  background: rgba(255, 255, 255, 0.35);
}

/* Enhanced sliding animation */
@keyframes logoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Add pause on hover for better UX */
.logos:hover .logos-slide {
  animation-play-state: paused;
}

/* Footer Styling */
footer {
  background-color: #2C3E50;
  /* Dark Navy Blue */
  color: #FFFFFF;
  /* White */
  padding: 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #E67E22;
  /* Industrial Orange */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #FFFFFF;
  /* White */
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #E67E22;
  /* Industrial Orange */
}

.shipping-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #FFFFFF;
  /* White */
}

.shipping-note strong {
  color: #E67E22;
  /* Industrial Orange */
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #FFFFFF;
  /* White */
}

.shipping-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #bdc3c7;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #bdc3c7;
}

/* Stats Section */
.comn-py.stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.comn-py.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(211, 84, 0, 0.05) 100%);
  z-index: 1;
}

.comn-py.stats::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.03) 0%, transparent 70%);
  animation: statsGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes statsGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: rotate(10deg) scale(1.1);
    opacity: 0.6;
  }
}

.stats_container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats_item {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: statsSlideUp 0.8s ease-out both;
  animation-delay: calc(var(--stats-index, 0) * 0.1s);
}

/* Laptop and larger screens - ensure 4 cards in a row */
@media (min-width: 1024px) {
  .stats_container {
    flex-wrap: nowrap;
    gap: 25px;
    max-width: 1300px;
  }
  
  .stats_item {
    flex: 1 1 calc(25% - 19px);
    min-width: 240px;
    max-width: none;
  }
}

.stats_item:nth-child(1) { --stats-index: 0; }
.stats_item:nth-child(3) { --stats-index: 1; }
.stats_item:nth-child(5) { --stats-index: 2; }
.stats_item:nth-child(7) { --stats-index: 3; }

@keyframes statsSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stats_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(211, 84, 0, 0.05) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.stats_item:hover::before {
  opacity: 1;
}

.stats_item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(230, 126, 34, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(230, 126, 34, 0.3);
}

.stats_item h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all 0.3s ease;
}

.stats_item:hover h2 {
  background: linear-gradient(135deg, #D35400 0%, #B7471C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.1);
}

.stats_item p {
  font-size: 1.1rem;
  color: #5a6c7d;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.stats_item:hover p {
  color: #2c3e50;
}

/* Divider spans - hidden but kept for structure */
.comn-py.stats span {
  display: none;
}

.stats_divider {
  display: none;
}

/* FAQ Section */
.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}


@keyframes faqGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: rotate(20deg) scale(1.1);
    opacity: 0.7;
  }
}

.wrapper>p,
.wrapper>h1 {
  margin: 0 0 50px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.wrapper>h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.faq {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin: 20px 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  animation: faqSlideUp 0.6s ease-out both;
  animation-delay: calc(var(--faq-index, 0) * 0.1s);
}

.faq:nth-child(2) { --faq-index: 0; }
.faq:nth-child(3) { --faq-index: 1; }
.faq:nth-child(4) { --faq-index: 2; }
.faq:nth-child(5) { --faq-index: 3; }
.faq:nth-child(6) { --faq-index: 4; }

@keyframes faqSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(230, 126, 34, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(230, 126, 34, 0.3);
}

.faq.active {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(230, 126, 34, 0.4);
  box-shadow: 
    0 15px 40px rgba(230, 126, 34, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.accordion {
  background: transparent;
  color: #2c3e50;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 700;
  width: 100%;
  padding: 25px 30px;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.accordion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(211, 84, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion:hover::before,
.accordion.active::before {
  opacity: 1;
}

.accordion:hover {
  color: #E67E22;
  transform: translateX(5px);
}

.accordion i {
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accordion:hover i {
  transform: scale(1.2);
}

.accordion.active i {
  transform: rotate(180deg) scale(1.1);
}

.pannel {
  padding: 0 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-height: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-top: 1px solid rgba(230, 126, 34, 0.1);
}

.pannel p {
  color: #5a6c7d;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0 0 25px 0;
  margin: 25px 0 0 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq.active .pannel {
  max-height: 300px;
  padding: 0 30px;
}

.faq.active .pannel p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

@media (max-width: 1024px) {
  header .logo {
    left: 10px;
    font-size: 20px;
  }

  header nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  header .buttons {
    right: 10px;
  }

  header .buttons .btn,
  header .buttons .btn2 {
    padding: 8px 16px;
    font-size: 12px;
  }

  .sidebar-dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
    min-width: 900px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Light transparent background */
    backdrop-filter: blur(10px);
    /* Blur effect */
    padding: 10px;
    border-radius: 5px;
  }

  .sidebar-dropdown.active {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .sidebar-.dropdown.active::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay */
    backdrop-filter: blur(10px);
    z-index: 5;
  }

}

@media (max-width: 850px) {
  .logo h2 {
    font-size: 20px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {

  /* Center all content */
  .hero .container,
  .about-us-content,
  .card-container,
  .footer-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 5%;
  }

  header {
    height: auto;
    padding: 10px 0;
  }

  header .logo {
    position: static;
    transform: none;
    margin-bottom: 10px;
    text-align: center;
  }

  header nav {
    display: none;
    /* Hide the main nav on mobile */
  }

  header .buttons {
    display: none;
    /* Hide the buttons on mobile */
  }

  /* Hamburger Menu */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Sidebar Styles */
  .sidebar {
    display: block;
    /* Override the desktop display:none */
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
  }

  .sidebar.active {
    right: 0;
    visibility: visible;
  }

  .sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    /* Responsive width, maximum 320px or 85% of viewport */
    height: 100%;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 50px;
  }

  .sidebar-logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }

  .sidebar-logo h3 {
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .sidebar-logo span {
    color: #1C4355;
  }

  .sidebar-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 15px 0 0 0;
  }

  .sidebar-nav {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
  }

  .sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
  }

  .sidebar-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #FFD700;
    transform: translateX(5px);
  }

  .sidebar-link i {
    width: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
  }

  .sidebar-link:hover i {
    color: #FFD700;
  }

  .sidebar-dropdown {
    position: relative;
  }


  .dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px !important;
  }

  .sidebar-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #D35400;
  }

  .sidebar-dropdown-content {
    max-height: 0;
    overflow: hidden;
    background-color: #2c3e50;
    transition: max-height 0.3s ease;
    margin: 0;
    /* Remove any margins */
    padding: 0;
    /* Remove any padding */
  }

  .sidebar-dropdown.active .sidebar-dropdown-content {
    max-height: 300px;
  }

  .sidebar-sublink {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    /* Slightly less padding than main links for visual hierarchy */
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    /* Slightly smaller font */
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: 0;
    position: relative;
  }

  /* Add a subtle left border to show hierarchy */
  .sidebar-sublink::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
  }

  .sidebar-sublink:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: #FFD700;
    color: #fff;
    transform: translateX(3px);
    /* Subtle slide effect */
  }

  .sidebar-sublink:hover::before {
    background: #FFD700;
    width: 12px;
  }

  .sidebar-sublink i {
    width: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
    /* Add slight indent for the icon */
  }

  .sidebar-sublink:hover i {
    color: #FFD700;
  }

  .track-btn {
    background: rgba(255, 215, 0, 0.2) !important;
    border: 2px solid #FFD700 !important;
    border-radius: 8px !important;
    margin: 10px 20px !important;
  }

  .track-btn:hover {
    background: #FFD700 !important;
    color: #E67E22 !important;
    transform: translateX(0) !important;
    border-left-color: #FFD700 !important;
  }

  .sidebar-cta {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sidebar-signin-btn,
  .sidebar-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .sidebar-signin-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .sidebar-signin-btn:hover {
    background: #fff;
    color: #E67E22;
  }

  .sidebar-signup-btn {
    background: #FFD700;
    color: #E67E22;
  }

  .sidebar-signup-btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }


}

/* For very small screens */
@media (max-width: 480px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }

  header .logo {
    font-size: 18px;
  }

  .sidebar {
    display: block !important;
    /* Ensure sidebar is visible on small screens */
    width: 100%;
    /* Full width on small screens */
  }

  .sidebar-content {
    width: 100%;
    /* Full width content on very small screens */
  }

  .sidebar-nav a,
  .sidebar-nav .track-btn {
    font-size: 12px;
  }

  .dropdown-content {
    padding: 10px 5px;
  }

  .dropdown-column h4 {
    font-size: 14px;
  }

  .dropdown-column a {
    font-size: 12px;
  }

  .main-container {
    overflow-x: hidden;
  }
}

/* Back Button Styles */
.back-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: #E67E22;
  /* Change color on hover */
}

/* Sign In Button Styles */
.sidebar-header .btn {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.sidebar-header .btn:hover {
  color: white;
}

.sidebar-header .btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: black;
  z-index: -1;
  transition: all 1s;
}

.sidebar-header .btn:hover::before {
  width: 160%;
}

/* Responsive styling for smaller screens */
@media (max-width: 770px) {
  body {
    width: 100vw;
  }

  .card-container {
    height: auto;
  }

  .logo {
    position: absolute;
    padding: 0px 0px;
    margin: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Adjust position for smaller screens */
  }

  .logo-img {
    height: 50px;
    /* Reduce logo size on smaller screens */
    width: 70px;
    position: relative;
    padding: 0px 0px;
    margin: 0px 0px;
    /* Maintains aspect ratio */
  }

  .logo h2 {
    display: none;
  }

  .sidebar-nav .dropdown.active .dropdown-content {
    display: flex;
    /* Show dropdown when active */
    background-color: #333;
  }

  .sidebar-nav .dropdown-content .dropdown-column {
    position: relative;
    left: 100px;
  }

  header {
    margin: 0px 0px;
    padding: 0px 0px;
    height: 80px;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;

  }

  .stats_item p {
    font-size: 2vw;
  }

  .stats_item h2#years,
  .stats_item h2#space,
  .stats_item h2#clients,
  .stats_item h2#managers {
    font-size: 3vw;
  }

}

@media (max-width: 480px) {
  .logo {

    position: absolute;
    left: 20px;
    padding: 0px 0px;
    margin: 0px 0px;
  }

  .logo-img {
    height: 50px;
    width: 70px;
    position: relative;
    padding: 0px 0px;
    margin: 0px 0px;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .stats_container {
    position: relative;
    top: 25px;
  }

  .stats_item p {
    font-size: .5rem;
  }

  .stats_item h2#years,
  .stats_item h2#space,
  .stats_item h2#clients,
  .stats_item h2#managers {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .logo {
    position: absolute;
    left: 20px;
    padding: 0px 0px;
    margin: 0px 0px;
    top: 0px;
    /* Adjust for extra small screens */
  }

  .logo-img {
    height: 50px;
    /* Reduce logo size even further */
    width: 70px;
    position: relative;
    padding: 0px 0px;
    margin: 0px 0px;
    /* Maintains aspect ratio */
  }

}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Serviceses section Media Query */

@media screen and (max-width: 1280px) {
  .card-title {
    font-size: 1.5vw;
  }

  .small-desc {
    top: 90px;
    font-size: 1.1vw;
  }
}

@media screen and (max-width: 770px) {
  .card-container {
    flex-direction: row;
    align-items: center;
  }

  .card {
    flex: 1 1 100%;
    max-width: 50%;
    height: 500px;
    opacity: 1;
    z-index: 1;
  }

  .card::after {
    display: none;
  }

  .card::before {
    display: none;
  }

  .card .small-desc {
    height: 120px;
    opacity: 1;
    top: 180px;
    height: auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
  }

  .card:hover .small-desc {
    height: auto;
  }

  .card-title {
    font-size: 35px;
    color: white;
  }

  .blur {
    background: black;
    opacity: .6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid white;
    height: 100%;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    /* filter: blur(5px); */
    transition: transform 2s ease-out;
    z-index: -1;
  }

  .card:hover .blur {
    opacity: .6;
  }


}

@media screen and (max-width: 768px) {
  /* .card-container {
    flex-direction: column;
    align-items: center;
  } */

  .card {
    /* flex: 1 1 100%; */
    max-width: 100%;
  }
}

/* About Us section media query */
/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
  .about-us-contaner {
    padding-left: 5%;
    /* Reduce padding for smaller screens */
  }

  .about-us-content {
    width: 40%;
    /* Increase content width for better readability */
  }

  .about-image {
    right: 100px;
    /* Adjust image position */
    width: 50%;
    /* Reduce image width */
  }

  .about-us-contaner .btn-container {
    left: 150px;
    /* Adjust button position */
  }

  .about-us-contaner .btn-container button {
    right: 150px;
    /* Adjust button position */
  }
}

@media screen and (max-width: 768px) {
  .about-us-contaner {
    flex-direction: column;
    /* Stack content vertically */
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    /* Allow height to adjust based on content */
    padding-top: 50px;
    /* Add top padding */
    padding-bottom: 50px;
    /* Add bottom padding */
  }

  .about-us-content {
    width: 80%;
    /* Increase content width for smaller screens */
    text-align: center;
    /* Center-align text */
  }

  .about-image {
    position: static;
    /* Reset image position */
    transform: none;
    /* Remove transform */
    width: 80%;
    /* Adjust image width */
    margin-top: 30px;
    /* Add space between content and image */
  }

  .about-us-contaner .btn-container {
    position: static;
    /* Reset button position */
    margin-top: 20px;
    /* Add space above the button */
    left: 0;
    /* Reset left position */
  }

  .about-us-contaner .btn-container button {
    position: static;
    /* Reset button position */
    right: 0;
    /* Reset right position */
    color: white;
  }

  .about-us-contaner .btn-container button:hover {
    color: white;
  }

  .about-us-contaner .btn-container button::after {
    display: none;
  }

  /* Adjust hero text */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    width: 90%;
    font-size: 1rem;
  }

  /* Fix about us section */
  .about-us-contaner {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .about-us-content {
    width: 100%;
    padding: 20px;
  }

  .about-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  /* Fix cards */
  .card {
    max-width: 100%;
    margin: 10px 0;
  }

  /* Fix form container */
  .main-form-container .form-container {
    width: 90%;
  }

  .footer-section .social-links-container {
    margin-top: 20px;
  }

  .footer-section ul.social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .about-us-content {
    width: 90%;
    /* Increase content width for very small screens */
  }

  .about-image {
    width: 90%;
    /* Adjust image width for very small screens */
  }

  .about-us-title h1 {
    font-size: 2.5rem;
    /* Reduce title font size */
  }

  .about-us-text h3 {
    font-size: 1.2rem;
    /* Reduce heading font size */
  }

  .about-us-text p {
    font-size: 0.9rem;
    /* Reduce paragraph font size */
  }

  .social a {
    font-size: 1rem;
    /* Reduce social icon size */
  }

  .about-us-contaner .btn-container button {
    font-size: 16px;
    /* Reduce button font size */
  }
}

/* Social Media Icons in Footer */
.footer-section .social-links-container h3 {
  margin-bottom: 15px;
  color: #E67E22;
}

.footer-section ul.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.footer-section ul.social-links li {
  display: inline-block;
}

.footer-section ul.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-section ul.social-links a:hover {
  background-color: #E67E22;
  transform: translateY(-3px);
  color: white;
}

/* ======================================
   QUICK QUOTE SECTION STYLES
   ====================================== */

.quick-quote-section {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.quick-quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.quick-quote-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quick-quote-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-quote-heading {
  font-size: 1.8rem;
  color: #E67E22;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.quote-input-group {
  display: flex;
  flex-direction: column;
}

.quote-input-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.quote-input-group input,
.quote-input-group select {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}

.quote-input-group input:focus,
.quote-input-group select:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
  transform: translateY(-2px);
}

.quote-input-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E67E22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.quote-btn {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
  background: linear-gradient(135deg, #D35400 0%, #B7471C 100%);
}

.quote-btn i {
  font-size: 1rem;
}

.quick-quote-content {
  color: white;
}

.quick-quote-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.quick-quote-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.quote-feature i {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 12px;
}

/* Responsive Design for Quick Quote */
@media (max-width: 1200px) {
  .quick-quote-grid {
    gap: 40px;
  }
  
  .quick-quote-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .quick-quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .quick-quote-content {
    order: -1;
  }
  
  .quick-quote-form {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .quick-quote-section {
    padding: 60px 0;
  }
  
  .quick-quote-container {
    padding: 0 15px;
  }
  
  .quick-quote-form {
    padding: 30px 25px;
    border-radius: 16px;
  }
  
  .quick-quote-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .quick-quote-title {
    font-size: 2rem;
  }
  
  .quote-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .quote-features {
    justify-content: center;
  }
  
  .quote-feature {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quick-quote-section {
    padding: 50px 0;
  }
  
  .quick-quote-container {
    padding: 0 10px;
  }
  
  .quick-quote-form {
    padding: 25px 20px;
    margin: 0 5px;
  }
  
  .quick-quote-heading {
    font-size: 1.3rem;
  }
  
  .quick-quote-title {
    font-size: 1.8rem;
  }
  
  .quick-quote-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .quote-input-group input,
  .quote-input-group select {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .quote-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .quote-feature {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .quick-quote-form {
    padding: 20px 15px;
    margin: 0;
  }
  
  .quick-quote-title {
    font-size: 1.6rem;
  }
  
  .quote-input-group input,
  .quote-input-group select {
    padding: 10px;
    font-size: 0.85rem;
  }
}
