:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #6366f1;
  --secondary: #06b6d4;
  --accent: #8b5cf6;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --success: #10b981;
  --warning: #f59e0b;
  --border: rgba(226, 232, 240, 0.5);
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header - Glass Morphism */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  transition: all 0.4s;
}

.header.scrolled .header-container {
  padding: 12px 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

.logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover:after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s;
}

.mobile-menu-btn:hover {
  transform: rotate(90deg);
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.05) 0%,
    rgba(6, 182, 212, 0.05) 100%
  );
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 20% 0);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: var(--dark);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.6s;
  box-shadow: var(--shadow-sm);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.8s;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 1s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(40, 40);
    opacity: 0;
  }
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: rgba(79, 70, 229, 0.05);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s forwards 0.5s;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.profile-card {
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.profile-card:hover {
  transform: translateY(-10px) rotateX(5deg);
}

.profile-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.profile-card:hover .profile-img {
  filter: grayscale(0%);
}

.profile-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.profile-content {
  padding: 32px;
}

.profile-content h3 {
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 1.5rem;
}

.profile-title {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--secondary) 100%
  );
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Services Section */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  opacity: 0;
  transform: translateY(30px);
}

.section-header.animated {
  animation: fadeInUp 0.8s forwards;
}

.section-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animated {
  animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
}

.service-card.us-focused {
  border-top: 5px solid var(--primary);
}

.service-card.global {
  border-top: 5px solid var(--accent);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.global .service-icon {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(168, 85, 247, 0.1) 100%
  );
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-light);
  font-size: 0.95rem;
}

.service-features i {
  color: var(--success);
  font-size: 0.9rem;
}

/* USP Section */
.usp {
  background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
  border-radius: 40px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.usp:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(79, 70, 229, 0.05) 0%,
    transparent 70%
  );
}

.usp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.usp-content h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--dark);
  opacity: 0;
  transform: translateX(-30px);
}

.usp-content.animated h2 {
  animation: fadeInLeft 0.8s forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.usp-points {
  list-style: none;
}

.usp-points li {
  margin-bottom: 32px;
  padding-left: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
}

.usp-points.animated li:nth-child(1) {
  animation: fadeInLeft 0.8s forwards 0.1s;
}
.usp-points.animated li:nth-child(2) {
  animation: fadeInLeft 0.8s forwards 0.2s;
}
.usp-points.animated li:nth-child(3) {
  animation: fadeInLeft 0.8s forwards 0.3s;
}
.usp-points.animated li:nth-child(4) {
  animation: fadeInLeft 0.8s forwards 0.4s;
}

.usp-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  color: white;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.usp-visual {
  background-color: white;
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(30px);
}

.usp-visual.animated {
  animation: fadeInRight 0.8s forwards 0.3s;
}

.usp-visual-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.usp-visual-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(6, 182, 212, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

/* Stats Counter */
.stats-counter {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.counter-item {
  text-align: center;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.counter-label {
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: 40px;
  padding: 100px 0;
  margin: 0 20px 30px;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}
.cta-container h2,
.cta-container p {
  max-width: 800px;
  margin: auto;
  padding: 0px 15px;
}

.cta-container.animated {
  animation: fadeInUp 0.8s forwards;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: white;
}

.cta p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 50px;
}

.cta .btn {
  background-color: white;
  color: var(--primary);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.cta .btn:hover {
  background-color: var(--gray-light);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* Floating Shapes Animation */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation: float 20s infinite linear;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation: float 25s infinite linear reverse;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: white;
  padding: 100px 0 50px;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
}

.footer-grid.animated {
  animation: fadeInUp 0.8s forwards;
}

.footer-col h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.footer-logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateY(-5px) rotate(10deg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
  opacity: 0;
  transition: all 0.3s;
}

.footer-links a:hover i {
  opacity: 1;
}

.copyright {
  text-align: center;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Custom css start */
.pb-0 {
  padding-bottom: 0px;
}
.about-section {
  display: flex;
  width: 100%;
  margin: auto;
}
.about-section .left-section {
  width: 50%;
  padding-right: 60px;
}
.about-section .left-section .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-section .left-section img {
  width: 100%;
  max-width: 80%;
  margin: 0px auto 0px;
  border-radius: 25px;
}
.about-section .left-section a {
  margin-top: 15px;
  width: fit-content;
}
.about-section .right-section {
  width: 50%;
}
.about-section .right-section ul {
  padding: 0;
  margin: 0;
}
#about {
  padding-bottom: 60px;
}
#usp {
  padding: 60px 0px;
}
.about-section .right-section ul li {
  list-style-type: none;
  background-color: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary);
}
.about-section .right-section ul li h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #0f172a;
}
.about-section .right-section ul li p {
  color: var(--gray);
}
/* Custom css end */

/* Responsive */
@media (max-width: 1200px) {
  .hero-container,
  .usp-container {
    gap: 60px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-container,
  .usp-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .about-section {
    flex-wrap: wrap;
  }
  .about-section .left-section,
  .about-section .right-section {
    width: 100%;
  }
  .about-section .left-section {
    padding: 0px 0px 50px;
  }
  .about-section .left-section img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 100px 0;
  }
  #about {
    padding-bottom: 50px;
  }
  #usp {
    padding: 50px 0px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .usp,
  .cta {
    margin: 0;
    border-radius: 0;
  }
  .cta {
    margin: 0px 0px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links a i {
    font-size: 0.8rem;
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 40px 30px;
  }

  .usp-visual {
    padding: 30px;
  }
  .profile-content {
    text-align: center;
  }
  .profile-tags {
    justify-content: center;
  }
  .section,
  .cta {
    padding: 50px 0px;
  }
  #about {
    padding-bottom: 30px;
    padding-top: 5px;
  }
  #usp {
    padding: 30px 0px;
  }
  .section-header {
    margin: 0 auto 30px;
  }
  .usp-content h2 {
    font-size: 2rem;
  }
  .usp-container {
    gap: 30px;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta .btn {
    background-color: white;
    color: var(--primary);
    padding: 18px 14px;
    font-size: 16px;
    width: fit-content;
  }
  .footer {
    padding: 50px 0 50px;
  }
}
