/* Base Styles */
:root {
  --primary-color: #0056b3;
  --primary-dark: #004494;
  --primary-light: #4d8fda;
  --secondary-color: #ff9800;
  --secondary-dark: #e68a00;
  --secondary-light: #ffad33;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --white-color: #fff;
  --border-color: #e9ecef;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.9rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.5);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--white-color);
}

.btn-secondary:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}

#loader-circle {
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dash 2s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 200;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}

.loader-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 20px;
}

.loader-text span {
  font-weight: 400;
  color: var(--secondary-color);
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.4s ease;
}

#header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  font-weight: 400;
  color: var(--secondary-color);
}

/* Animated Logo Container */
.animated-logo {
  display: grid;
  justify-items: start;
}

/* Styles for Each Name */
.animated-logo .name {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.8rem; /* Matches .logo h1 font-size */
  font-weight: 700; /* Matches .logo h1 font-weight */
  color: var(--primary-color); /* Matches .logo h1 color */
  opacity: 0;
  animation: fadeInOut 6s infinite;
}

/* Animation Delays for Each Name */
.animated-logo .name:nth-child(1) {
  animation-delay: 0s;
}

.animated-logo .name:nth-child(2) {
  animation-delay: 3s;
}

/* .animated-logo .name:nth-child(3) {
  animation-delay: 6s;
} */

/* Keyframes for Fade Animation */
@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Highlight Span Styling */
.animated-logo .highlight {
  font-weight: 400; /* Matches .logo span font-weight */
  color: var(--secondary-color); /* Matches .logo span color */
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 500;
  padding: 5px 0;
  transition: var(--transition);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 105vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 86, 179, 0.6) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #fff;
  max-width: 800px;
  text-align: left;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 152, 0, 0.3);
  z-index: -1;
}

.animate-text {
  overflow: hidden;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  margin-top: 40px;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white-color);
  display: block;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-slider-controls button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.hero-slider-controls button:hover {
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background: #fff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.8rem;
  margin-top: 10px;
  font-weight: 500;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.services-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: rgba(0, 86, 179, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  color: white;
  box-shadow: var(--hover-shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover h3,
.service-card:hover p {
  color: white;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  font-size: 1.8rem;
}

.service-card:hover .service-icon {
  background-color: white;
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: color 0.4s ease;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.service-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.4s ease;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-link {
  color: var(--white-color);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger service cards animation */
.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}
.service-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
}

.feature i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  border-radius: 10px;
  transition: transform 0.5s ease;
}

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

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -15px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
}

.about-content.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Counter Section */
.counter-section {
  padding: 80px 0;
  /* background: url("/placeholder.svg?height=600&width=1920") no-repeat center
    center / cover; */
  position: relative;
}

.counter-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 86, 179, 0.8) 100%
  );
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.counter-item {
  color: var(--white-color);
}

.counter-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.counter-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-item h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background-color: var(--light-color);
}

.project-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
  height: 300px;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.project-img {
  height: 100%;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  color: var(--white-color);
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white-color);
}

.project-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.project-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-5px);
}

.project-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background-color: var(--white-color);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-item:hover .icon-box {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}

.why-choose-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.why-choose-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.why-choose-image img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Companies Served Section */
.companies-served {
  padding: 100px 0;
  background-color: var(--white-color);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.company-item {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.company-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Stellar Collaborations Section */
.stellar-collaborations {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.stellar-collaborations::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1), transparent);
  z-index: 0;
}

.stellar-collaborations::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.1), transparent);
  z-index: 0;
}

.stellar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.stellar-item {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  perspective: 1000px;
  cursor: pointer;
}

.stellar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
  transition: all 0.5s ease;
  z-index: 2;
}

.stellar-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border: 2px dashed var(--secondary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: orbit 10s linear infinite;
  z-index: 1;
}

.stellar-details {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8) rotateY(90deg);
  transition: all 0.5s ease;
  z-index: 3;
}

.stellar-item:hover .stellar-core {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.2;
}

.stellar-item:hover .stellar-orbit {
  animation-play-state: paused;
}

.stellar-item:hover .stellar-details {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stellar-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }

  .stellar-item {
    width: 160px;
    height: 160px;
  }

  .stellar-core {
    width: 120px;
    height: 120px;
    font-size: 1rem;
    padding: 15px;
  }

  .stellar-orbit {
    width: 150px;
    height: 150px;
  }

  .stellar-details {
    width: 160px;
    height: 160px;
    font-size: 0.9rem;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .stellar-grid {
    grid-template-columns: 1fr;
  }

  .stellar-item {
    width: 200px;
    height: 200px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: var(--card-shadow);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-color);
  font-size: 1.1rem;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.client-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.client-details p {
  font-style: normal;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.rating {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.prev-btn,
.next-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  text-align: center;
  color: var(--white-color);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.info-item:hover i {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: rotateY(180deg);
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-map {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 250px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 10px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  width: 100%;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--secondary-color);
}

.footer-logo p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-services ul li {
  color: #ccc;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-newsletter p {
  color: #ccc;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #ccc;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: translateY(-5px);
}

/* Floating animation for the back to top button */
.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 992px) {
  .about-content,
  .contact-content,
  .why-choose-content {
    grid-template-columns: 1fr;
  }

  .about-image,
  .why-choose-image {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .experience-badge {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: var(--white-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .scroll-down {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .client-info {
    flex-direction: column;
  }
}

/* Added Styles for Owner Section in Contact Us */
.contact-owners {
  text-align: center;
  margin-bottom: 30px;
}

.contact-owners .owner {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.contact-owners .owner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.owner-icon {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-right: 10px;
  vertical-align: middle;
}

.contact-owners .owner-highlight {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-owners .owner-highlight:hover {
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Added Styles for Owner Section in Footer */
.footer .owner {
  font-size: 1.4rem;
  color: #ffffff;
  margin-top: 15px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer .owner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer .owner-highlight {
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer .owner-highlight:hover {
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for owner */
@media (max-width: 768px) {
  .contact-owners .owner,
  .footer .owner {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .contact-owners .owner,
  .footer .owner {
    font-size: 1rem;
  }
}

/* Added Styles for Trusted Partners Carousel */
/* Override and Update Trusted Partners Section with Carousel */
.trusted-partners {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.trusted-partners::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1), transparent);
  z-index: 0;
}

.trusted-partners::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.1), transparent);
  z-index: 0;
}

.trusted-partners .section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.trusted-partners .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.trusted-partners .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.trusted-partners .section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: 25px;
}

.partners-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  z-index: 2;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.partner-slide {
  flex: 0 0 calc(33.333% - 30px); /* 3 cards visible by default */
  margin: 0 15px;
  transition: all 0.3s ease;
}

.partner-card {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--primary-color);
}

.partner-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
}

.partner-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.1) rotate(10deg);
}

.partner-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-location {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-work {
  background-color: rgba(0, 86, 179, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: auto;
  transition: all 0.4s ease;
  text-align: center;
}

.partner-work span {
  font-weight: 600;
  color: var(--primary-color);
}

.partner-testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  border-radius: 15px;
}

.partner-testimonial p {
  color: var(--white-color);
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
}

.partner-card:hover .partner-testimonial {
  opacity: 1;
  transform: translateY(0);
}

.partner-card:hover .partner-name,
.partner-card:hover .partner-location {
  opacity: 0;
  transform: translateY(-20px);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
  transition: all 0.3s ease;
}

.carousel-control:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.prev-control {
  left: 0;
}

.next-control {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 86, 179, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Mobile Responsiveness for Trusted Partners Carousel */
@media (max-width: 992px) {
  .partner-slide {
    flex: 0 0 calc(50% - 20px); /* 2 cards visible */
  }
}

@media (max-width: 768px) {
  .partners-carousel-container {
    padding: 0 30px;
  }

  .partner-slide {
    flex: 0 0 calc(50% - 20px); /* 2 cards visible */
  }

  .trusted-partners {
    padding: 80px 0;
  }

  .trusted-partners .section-header h2 {
    font-size: 2.2rem;
  }

  .trusted-partners .section-header p {
    font-size: 1.1rem;
  }

  .partner-card {
    padding: 25px;
    height: 320px;
  }

  .partner-name {
    font-size: 1.4rem;
  }

  .partner-location {
    font-size: 0.9rem;
  }

  .partner-testimonial p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .partner-slide {
    flex: 0 0 calc(100% - 20px); /* 1 card visible */
  }

  .trusted-partners .section-header h2 {
    font-size: 1.8rem;
  }

  .trusted-partners .section-header p {
    font-size: 1rem;
  }

  .partner-card {
    padding: 20px;
    height: 300px;
  }

  .partner-name {
    font-size: 1.2rem;
  }

  .partner-location {
    font-size: 0.85rem;
  }

  .partner-testimonial p {
    font-size: 0.9rem;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* GSTIN Container Styling */
.gstin-container {
  display: inline-flex; /* Aligns GSTIN with logo horizontally */
  align-items: center; /* Vertically centers with logo */
  margin-left: 20px; /* Spacing from the logo */
  position: relative; /* For positioning effects */
}

/* GSTIN Styling with Effects */
.gstin {
  font-family: "Poppins", sans-serif; /* Matches website typography */
  font-size: 0.9rem; /* Slightly larger for prominence, but still subtle */
  color: var(--text-light); /* Light gray for initial subtlety */
  padding: 8px 12px; /* Padding for a button-like appearance */
  border-radius: 20px; /* Rounded corners for a modern look */
  background: rgba(255, 255, 255, 0.9); /* Light background for contrast */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border: 2px solid transparent; /* Initial transparent border for glow effect */
  transition: all 0.4s ease; /* Smooth transitions for all effects */
  opacity: 0; /* Start hidden for fade-in */
  transform: translateY(10px); /* Start slightly offset for animation */
  animation: gstinFadeIn 1.5s ease-out forwards 0.5s; /* Delayed fade-in animation */
}

/* Glowing Border Animation (Pulse Effect) */
.gstin::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  border: 2px solid var(--primary-color); /* Blue glow */
  opacity: 0;
  animation: gstinGlow 3s infinite ease-in-out; /* Continuous glow effect */
}

/* Hover Effect for GSTIN */
.gstin:hover {
  color: var(--white-color); /* White text on hover */
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  ); /* Gradient background */
  box-shadow: 0 5px 20px rgba(0, 86, 179, 0.5); /* Enhanced shadow */
  transform: translateY(-3px) scale(1.05); /* Slight lift and scale */
  border-color: var(--secondary-color); /* Orange border on hover */
}

/* Fade-In Animation for GSTIN */
@keyframes gstinFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glowing Pulse Animation */
@keyframes gstinGlow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gstin-container {
    margin-left: 10px; /* Reduced spacing on tablets */
  }

  .gstin {
    font-size: 0.8rem; /* Slightly smaller on tablets */
    padding: 6px 10px; /* Reduced padding */
  }

  .gstin:hover {
    transform: translateY(-2px) scale(1.03); /* Subtle effect on smaller screens */
  }
}

@media (max-width: 576px) {
  .gstin-container {
    /* display: block; Stack below logo on mobile */
    margin-left: 0;
    margin-top: 10px; /* Space after logo */
  }

  .gstin {
    font-size: 0.7rem; /* Smaller on mobile */
    padding: 5px 8px; /* Further reduced padding */
  }
}

/* Separator Styling */
.separator {
  font-family: "Poppins", sans-serif; /* Matches website typography */
  font-size: 0.9rem; /* Matches footer text size */
  color: #ccc; /* Light gray for subtlety, matching footer text color */
  margin: 0 10px; /* Adds 10px spacing on both sides of the separator */
  transition: color 0.3s ease; /* Smooth transition for hover */
}

.separator:hover {
  color: var(--secondary-color); /* Orange on hover for interactivity */
}

/* Adjust Crafted by Styling for Spacing */
.crafted-by {
  font-family: "Poppins", sans-serif; /* Matches website typography */
  font-size: 0.9rem; /* Matches footer text size for consistency */
  color: var(--text-light); /* Light gray for initial subtlety */
  position: relative; /* For pseudo-elements and animations */
  cursor: pointer; /* Indicates interactivity */
  padding: 20px 60px; /* Slight padding for a subtle box effect */
  border-radius: 4px; /* Subtle rounding */
  transition: all 0.4s ease; /* Smooth transitions for all effects */
  opacity: 0; /* Start hidden for fade-in */
  transform: translateY(10px); /* Start slightly offset for animation */
  animation: craftedFadeInBounce 1.5s ease-out forwards 0.5s; /* Delayed fade-in with bounce */
  margin-left: 5px; /* Additional spacing before "Crafted by Codinker" */
}

/* Text Shadow Effect on Hover */
.crafted-by::before {
  content: attr(data-text); /* Use data-text for the text content */
  position: absolute;
  color: rgba(255, 152, 0, 0.1); /* Subtle orange shadow */
  text-shadow: 0 0 10px rgba(255, 152, 0, 0.3); /* Glowing effect */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.crafted-by:hover::before {
  opacity: 1; /* Show glow on hover */
}

.crafted-by:hover {
  color: var(--secondary-color); /* Orange on hover for emphasis */
  transform: translateY(-2px) scale(1.05); /* Slight lift and scale */
  text-shadow: 0 2px 8px rgba(255, 152, 0, 0.3); /* Subtle glow on hover */
}

/* Fade-In and Bounce Animation */
@keyframes craftedFadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-5px); /* Bounce up */
  }
  70% {
    transform: translateY(2px); /* Bounce down slightly */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .separator {
    margin: 0 8px; /* Slightly reduced spacing on tablets */
    font-size: 0.8rem; /* Slightly smaller on tablets */
  }

  .crafted-by {
    font-size: 0.8rem; /* Slightly smaller on tablets */
    padding: 1px 6px; /* Reduced padding */
    margin-left: 3px; /* Reduced spacing on tablets */
  }

  .crafted-by:hover {
    transform: translateY(-1px) scale(1.03); /* Subtle effect on smaller screens */
  }
}

@media (max-width: 576px) {
  .separator {
    margin: 0 5px; /* Further reduced spacing on mobile */
    font-size: 0.7rem; /* Smaller on mobile */
  }

  .crafted-by {
    font-size: 0.7rem; /* Smaller on mobile */
    padding: 0 4px; /* Further reduced padding */
    margin-left: 2px; /* Further reduced spacing on mobile */
  }
}
