      /* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background-size: cover;
  color: #333;
  line-height: 1.6;
  font-size: clamp(16px, 2.8vw, 18px);
}

/* Top Bar */
.top-bar {
  background-color: rgb(21, 68, 199);
  color: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 2.8vw, 16px);
  flex-wrap: wrap;
}

.top-left i,
.top-left span {
  margin-right: 8px;
}

.top-left a,
.top-right a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: clamp(14px, 2.8vw, 16px);
}

.top-left a:hover,
.top-right a:hover {
  text-decoration: underline;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 5%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  position: relative;
}

/* Logo */
.logo img {
  height: clamp(50px, 10vw, 70px);
  width: auto;
}

/* Navigation Menu */
.nav-menu {
  flex: 1;
  margin-left: 20px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 10px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 2.8vw, 18px);
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff5e3a;
}

/* Let's Talk Button */
.lets-talk-btn a {
  display: inline-block;
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
  background-color: #ff5e3a;
  color: white;
  border-radius: 20px;
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 18px);
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  white-space: nowrap;
}

.lets-talk-btn a:hover {
  background-color: #e04e2a;
  color: white;
  transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #000;
  padding: 5px 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.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, -7px);
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  padding: 4px 12px;
  color: #333;
  white-space: nowrap;
  display: block;
  font-size: clamp(16px, 2.8vw, 18px);
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #ff5e3a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
  gap: 2rem;
}

.text-section {
  flex: 1;
  min-width: 300px;
  color: #333;
}

.text-section h1 {
  font-size: clamp(2rem, 5.5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a2a6c;
  line-height: 1.3;
}

.text-section h1 span#element {
  color: #ff5e3a;
  font-weight: bold;
}

.text-section p {
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #666;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.buttons .btn {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.call-btn {
  background-color: #1a73e8;
  color: white;
}

.email-btn {
  background-color: #ff6347;
  color: white;
}

.buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-section {
  flex: 1;
  min-width: 300px;
}

.form-box {
  background-color: #f1f5f9;
  color: #000;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-box .call-header {
  background-color: #FF5722;
  color: rgb(227, 218, 218);
  padding: 0.6rem;
  text-align: center;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  border-radius: 5px 5px 0 0;
  font-weight: 500;
}

.form-box .header-text h2 {
  color: #002060;
  font-size: clamp(1.3rem, 3.2vw, 1.5rem);
  text-align: center;
  margin: 0.8rem 0 0.3rem;
  font-weight: 600;
}

.form-box .header-text p {
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-box textarea {
  resize: vertical;
  min-height: 100px;
}

.form-box button {
  padding: 0.8rem;
  background-color: #ebb40c;
  color: rgb(65, 54, 54);
  border: none;
  border-radius: 5px;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Poppins', 'Roboto', sans-serif;
  font-weight: 500;
}

.form-box button:hover {
  background-color: #FF5722;
  color: white;
}

/* Service Section */
.ssservice {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: clamp(30px, 5vw, 50px) 0;
}

.ssservice_section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.sshighlight {
  color: #079bd3; 
  background: linear-gradient(90deg, #079bd3, #4cc1e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ssservice_section h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: #1a202c;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ssservice_section h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #2d3748;
  font-weight: 600;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.sscard_items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3.5vw, 30px);
  margin-top: clamp(40px, 6vw, 60px);
}

.sscard {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(20px, 3.5vw, 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  border: 2px solid #4cc1e9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.sscard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 0 15px rgba(7, 155, 211, 0.2);
  border-color: #079bd3;
}

.sscard::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, rgba(7, 155, 211, 0.1), rgba(76, 193, 233, 0.1));
  transition: height 0.3s ease;
}

.sscard:hover::after {
  height: 100%;
}

.sscard h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  font-weight: 700;
  margin: 1rem 0;
  text-transform: capitalize;
  text-align: center;
  color: #079bd3; 
  background: linear-gradient(90deg, #079bd3, #4cc1e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sscard p {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0;
  text-align: center;
  flex-grow: 1;
  padding: 0 10px;
  overflow-wrap: break-word;
}

.ssservice_icon {
  width: clamp(50px, 10vw, 60px);
  height: clamp(50px, 10vw, 60px);
  margin: 0 auto 1.2rem;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sscard:hover .ssservice_icon {
  transform: scale(1.1);
  filter: brightness(1.1) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

/* Stats Section */
.stats-section {
  background-color: #0080b9;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(0.5rem, 1vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.stat-item {
  flex: 1;
  min-width: clamp(160px, 25vw, 180px);
  padding: clamp(0.8rem, 1.5vw, 1rem);
  background: #0071a8;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid #00e6e6;
  transition: transform 0.3s ease;
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item img.stat-icon {
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  margin-bottom: 0.8rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.stat-item p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #e0e7ff;
  font-weight: 500;
}

/* Industries Slider */
.industries-slider {
  padding: clamp(1.5rem, 3vw, 3rem) clamp(0.8rem, 2vw, 1.5rem);
  background: #fff;
}

.slider-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: clamp(0.8rem, 1.5vw, 1.5rem);
  border-radius: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-left {
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
}

.slider-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a3c87;
}

.slider-left p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.4rem, 1vw, 0.8rem);
}

.industry-tabs .tab {
  padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
  border: 2px solid #e5e5e5;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  background-color: #fff;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.industry-tabs .tab:hover,
.industry-tabs .tab.active {
  border-color: #ff5722;
  color: #ff5722;
}

.slider-container {
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  border-radius: 1rem;
  height: clamp(180px, 30vw, 260px);
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: clamp(0.5rem, 1vw, 0.8rem);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.slide-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: bold;
}

.slide-content p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.slide-content a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
}

/* Value for Employees Section */
.section {
  background: linear-gradient(135deg, #4b1f84, #6a3ab2);
  color: white;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.8rem, 2vw, 1.5rem);
  text-align: center;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section p {
  max-width: 800px;
  margin: 0 auto clamp(0.8rem, 1.5vw, 1.5rem);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.card-container {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  color: #333;
  border-radius: 12px;
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  width: 100%;
  max-width: clamp(250px, 40vw, 280px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: clamp(25px, 5vw, 35px);
  margin-bottom: 0.8rem;
}

.card h3 {
  color: #4b1f84;
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.card p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
}

/* Client Reviews */
.client-text {
  text-align: center;
  padding-top: 8px;
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #333;
  margin-bottom: 1.5rem;
}

.carousel-containers {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousels {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides {
  flex: 0 0 calc(33.33% - 1rem);
  box-sizing: border-box;
  padding: 1.5rem;
  margin: 0.5rem;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333;
}

.nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1f2937;
  color: white;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  font-size: 1rem;
  z-index: 10;
}

.nav-buttons:hover {
  background: #374151;
}

.prevs {
  left: 10px;
}

.nexts {
  right: 10px;
}

.dotss {
  text-align: center;
  margin-top: 1rem;
  padding: 1rem 0;
}

.dots {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dots.actives {
  background-color: #1f2937;
}

.star-ratings {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Form and Photo Section */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: clamp(0.8rem, 1.5vw, 1.5rem);
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.image-side {
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
}

.image-side img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-container {
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
  max-width: 950px;
  background-color: #fff;
  padding: clamp(0.8rem, 1.5vw, 1.5rem);
  border-radius: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form-container h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #333;
}

.form-container p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #555;
  margin-bottom: 1.5rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 1.5vw, 1rem);
}

.form-row input,
.form-row select {
  flex: 1;
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.2vw, 10px);
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  min-width: clamp(180px, 30vw, 200px);
}

.form-group {
  width: 100%;
}

.form-group textarea {
  width: 100%;
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.2vw, 10px);
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  resize: vertical;
  min-height: 100px;
}

.g-recaptcha {
  margin: 1rem 0;
}

.recaptcha-error {
  color: #ff5722;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  margin-top: 0.5rem;
}

#submit-button {
  padding: clamp(6px, 1vw, 8px) clamp(15px, 2vw, 20px);
  background-color: #ff5c33;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: fit-content;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  align-self: center;
}

#submit-button:hover {
  background-color: #e64a19;
}

#submit-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* FAQ Section */
.bg-gray-50 {
  background-color: #f9fafb;
}

.container.mx-auto {
  max-width: 1200px;
  margin: 0 auto;
}

.p-6 {
  padding: 1.5rem;
}

.max-w-3x1 {
  max-width: 1200px;
}

.text-4xl {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.font-extrabold {
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.text-gray-800 {
  color: #1f2937;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  transition: background 0.3s ease;
  border: none;
}

.accordion:hover {
  background: linear-gradient(to right, #5b21b6, #8b5cf6);
}

.accordion i {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  transition: transform 0.3s ease;
}

.accordion.active i {
  transform: rotate(180deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.panel.open {
  max-height: 500px;
  padding: 1rem;
}

.panel p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #4b5563;
  line-height: 1.6;
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
  color: #fff;
  padding: 3rem 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.15;
  z-index: 1;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.locations {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.locations p:first-child {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  margin-bottom: 0.8rem;
  color: #fff;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.locations p:last-child {
  color: #e0e7ff;
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
}

.footer-section {
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  transition: color 0.3s, transform 0.3s;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

.footer-section ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ff5e3a;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #ff5e3a;
  transform: translateX(8px);
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #e0e7ff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 400;
  transition: color 0.3s;
}

.contact-info p:hover {
  color: #ff5e3a;
}

.contact-info p i {
  color: #ff5e3a;
  font-size: 1.6rem;
  transition: transform 0.3s;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.social-container {
  padding: 1.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  text-align: center;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.social-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  color: #fff;
  letter-spacing: 1.2px;
}

.Social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.Social-icons a {
  color: #e0e7ff;
  font-size: clamp(1.8rem, 3.8vw, 2rem);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.Social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
  background: #ff5e3a;
}

.footer-bottom {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1600px;
  text-align: center;
  padding: 1.5rem 0.8rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #e0e7ff;
  font-size: clamp(1.1rem, 2.8vw, 1.3rem);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu ul {
    gap: clamp(3px, 1vw, 8px);
  }

  .sscard_items {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .slider-wrapper {
    flex-direction: column;
  }

  .form-row input,
  .form-row select {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: clamp(11px, 2vw, 13px);
  }

  .top-left,
  .top-right {
    justify-content: center;
    width: 100%;
  }

  .main-header {
    padding: clamp(8px, 1.5vw, 12px) 3%;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: clamp(8px, 1.5vw, 10px) 15px;
    font-size: clamp(13px, 2.2vw, 15px);
  }

  .lets-talk-btn a {
    width: calc(100% - 30px);
    margin: 8px 15px;
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 20px);
    font-size: clamp(12px, 2vw, 14px);
  }

  .hamburger {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    padding-left: 20px;
    min-width: 100%;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .sscard_items {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 0 clamp(8px, 1.5vw, 15px);
  }

  .stats-section {
    gap: clamp(0.8rem, 1.5vw, 1rem);
  }

  .stat-item {
    min-width: clamp(140px, 40vw, 160px);
  }

  .slider-left h2,
  .section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .slider-left p,
  .section p,
  .slide-content p,
  .card p,
  .clientreview-text,
  .form-container p {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  .slide-content h3,
  .card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
  }

  .slides {
    flex: 0 0 calc(100% - 1rem);
  }

  .form-container {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: clamp(35px, 7vw, 50px);
  }

  .top-bar {
    font-size: clamp(10px, 2.2vw, 14px);
    padding: 8px 3%;
  }

  .top-left i,
  .top-left span,
  .top-right a {
    margin-right: 5px;
    margin-left: 5px;
    font-size: clamp(13px, 2.2vw, 14px);
  }

  .lets-talk-btn a {
    width: calc(100% - 20px);
    margin: 8px 10px;
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 15px);
    font-size: clamp(12px, 2.2vw, 14px);
  }

  .nav-menu a {
    font-size: clamp(14px, 2.2vw, 16px);
  }

  .dropdown-content a {
    font-size: clamp(16px, 2.2vw, 18px);
  }

  .text-section h1,
  .ssservice_section h1,
  .slider-left h2,
  .section h2,
  .client-text {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }

  .text-section p,
  .ssservice_section h2,
  .slider-left p,
  .section p,
  .slide-content p,
  .card p,
  .advantage-card p,
  .form-container p {
    font-size: clamp(0.9rem, 2.8vw, 1rem);
  }

  .form-box {
    padding: 1rem;
  }

  .form-box .header-text h2 {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
  }

  .form-box .header-text p {
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  }

  .form-box .call-header {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
  }

  .form-box input,
  .form-box textarea,
  .form-box button {
    font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  }

  .sscard h3 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  }

  footer {
    padding: 2rem 0.8rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .locations {
    padding: 1rem;
    margin-bottom: 1.2rem;
  }

  .locations p:first-child {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  }

  .locations p:last-child {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }

  .footer-section h4 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  }

  .footer-section ul li a,
  .contact-info p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  .contact-info p i {
    font-size: 1.3rem;
  }

  .social-container {
    padding: 1rem 0.5rem;
    margin-top: 1rem;
  }

  .social-title {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  }

  .Social-icons {
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .Social-icons a {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
  }
}