/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f5f7fa;
  color: #0a0f1e;
  overflow-x: hidden;
}

/* ===== NAVBAR - ALL LINKS VISIBLE, NO HAMBURGER ===== */
.navbar-modern {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 0 !important;
  transition: all 0.3s;
  z-index: 99999 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
}

.navbar-modern.scrolled {
  background: #ffffff !important;
  padding: 8px 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Brand/Logo */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.navbar-logo {
  height: 50px !important;
  width: auto !important;
  max-height: 50px !important;
}

/* Hide Hamburger Button */
.navbar-toggler {
  display: none !important;
}

/* Navbar Container */
.navbar-modern .container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}

/* Navbar Collapse - Always Visible */
.navbar-collapse {
  display: flex !important;
  flex: 1 !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

/* Navbar Links */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 5px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.navbar-nav .nav-item {
  display: inline-block !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
}

.navbar-modern .nav-link {
  color: #0a0f1e !important;
  font-weight: 500;
  padding: 8px 12px !important;
  position: relative;
  font-size: 15px !important;
  white-space: nowrap !important;
  display: inline-block !important;
}

.navbar-modern .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #20c997, #0a2540);
  transition: width 0.3s;
}

.navbar-modern .nav-link:hover::before,
.navbar-modern .nav-link.active::before {
  width: 100%;
}

.navbar-modern .nav-link.active {
  color: #20c997 !important;
  font-weight: 600;
}

/* Get a Quote Button */
.btn-gradient {
  background: linear-gradient(135deg, #20c997, #0a2540);
  color: white;
  border: none;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
  margin-left: 8px !important;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3);
  color: white;
}

.btn-outline-light {
  border-radius: 50px !important;
  padding: 0.8rem 2rem !important;
  border: none;
  background: white;
  color: #0a0f1e;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
  background: #20c997;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 30px -10px #20c997;
}

/* ===== HERO SLIDER SECTION ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-1 { background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1400&auto=format'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&auto=format'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&auto=format'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1400&auto=format'); }

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 3;
}

.slider-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
  border-radius: 50%;
}

.slider-arrow:hover {
  background: #20c997;
  border-color: #20c997;
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #20c997;
  transform: scale(1.2);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===== 3D ANIMATIONS ===== */
.bg-3d-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.floating-shape-3d {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(10, 37, 64, 0.1));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float3d 20s infinite;
  transform-style: preserve-3d;
  border: 1px solid rgba(32, 201, 151, 0.2);
}

@keyframes float3d {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg) translateY(0) translateX(0);
  }
  25% {
    transform: rotateX(15deg) rotateY(15deg) translateY(-30px) translateX(20px);
  }
  50% {
    transform: rotateX(30deg) rotateY(30deg) translateY(-50px) translateX(40px);
  }
  75% {
    transform: rotateX(15deg) rotateY(15deg) translateY(-30px) translateX(20px);
  }
}

.shape-1 { top: 10%; left: 5%; width: 200px; height: 200px; animation-duration: 18s; }
.shape-2 { bottom: 10%; right: 5%; width: 250px; height: 250px; animation-duration: 22s; animation-delay: 2s; }
.shape-3 { top: 40%; right: 20%; width: 150px; height: 150px; animation-duration: 25s; animation-delay: 4s; }
.shape-4 { bottom: 30%; left: 15%; width: 180px; height: 180px; animation-duration: 20s; animation-delay: 6s; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.scroll-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.scroll-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.scroll-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease;
}

.scroll-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.scroll-active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/* ===== SECTION STYLES ===== */
.section-padding {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-title h6 {
  color: #20c997;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(32, 201, 151, 0.1);
  border-radius: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.section-title h2 span {
  background: linear-gradient(135deg, #667eea, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6b8cff 100%);
  position: relative;
  overflow: hidden;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-section h6 {
  color: #ffffff !important;
}

.about-section h2 {
  color: #ffffff !important;
}

.about-section h2 span {
  color: #ffd700 !important;
  background: none;
  -webkit-text-fill-color: #ffd700;
}

.about-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.stat-card-round {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card-round:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.25);
}

.stat-card-round h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.stat-card-round p {
  color: white !important;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.service-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 2rem;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #20c997;
  box-shadow: 0 30px 50px -20px #20c997;
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0a0f1e;
}

.service-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
  position: relative;
  overflow: hidden;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 2rem;
  transition: all 0.4s;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 30px 50px -20px #ffd700;
  background: rgba(255, 255, 255, 0.2);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.why-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd700;
  margin: 0.5rem 0;
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.trusted-title {
  text-align: center;
  color: #333333;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  text-align: center;
}

.logo-item img {
  height: 50px;
  width: auto;
  transition: all 0.4s;
  filter: none;
  opacity: 1;
}

.logo-item:hover img {
  transform: translateY(-10px) scale(1.1);
}

.logo-item span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 2rem;
  transition: all 0.4s;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #20c997;
  box-shadow: 0 30px 50px -20px #20c997;
}

.quote-icon {
  color: #20c997;
  font-size: 2.5rem;
  opacity: 0.3;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.testimonial-card:hover .quote-icon {
  transform: rotate(10deg) scale(1.2);
  opacity: 0.6;
}

.testimonial-card p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-info h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #0a0f1e;
}

.author-info small {
  color: #20c997;
  font-size: 0.8rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1424, #1a1f35, #0a0f1e);
  position: relative;
  overflow: hidden;
}

.portfolio-section .section-title h6 {
  color: #20c997;
  background: rgba(32, 201, 151, 0.2);
}

.portfolio-section .section-title h2 {
  color: white;
}

.portfolio-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: #20c997;
  box-shadow: 0 30px 50px -20px #20c997;
}

.portfolio-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.portfolio-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.blog-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -20px #20c997;
  border-color: #20c997;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.blog-content p {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: #20c997;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #20c997, #0a2540);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-section .btn-light {
  border-radius: 50px !important;
  padding: 0.8rem 2rem !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf5e6, #f5e6d3);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(180, 95, 46, 0.1) 0%, transparent 60%);
  animation: rotate 30s linear infinite;
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section h6 {
  color: #b45f2e !important;
}

.contact-section h2 {
  color: #5a3e2b !important;
}

.contact-section h2 span {
  color: #b45f2e !important;
  background: none;
  -webkit-text-fill-color: #b45f2e;
}

.contact-form {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #20c997;
  outline: none;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.contact-form .btn-gradient {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a0f1e;
  padding: 60px 0 30px;
}

.footer h4, .footer h5 {
  color: white;
}

.footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
}

.footer a:hover {
  color: #20c997;
}

.footer .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.footer .contact-info i {
  width: 20px;
  color: #20c997;
}

.footer .contact-info span,
.footer .contact-info a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(32,201,151,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #20c997;
  transform: translateY(-5px);
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-buttons a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.float-buttons a:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.4);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .navbar-modern .nav-link {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }
  .btn-gradient {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  .navbar-logo {
    height: 40px !important;
  }
  .hero-buttons {
    justify-content: center;
  }
  .slider-content h1 {
    font-size: 3rem;
  }
  .stat-card-round {
    width: 130px;
    height: 130px;
  }
  .stat-card-round h3 {
    font-size: 2rem;
  }
  .logo-wrapper {
    gap: 40px;
  }
  
  .hero-slider {
    min-height: 85vh !important;
    height: auto !important;
  }
  .slider-container {
    min-height: 85vh !important;
    height: auto !important;
  }
  .slider-content {
    padding: 120px 0 80px !important;
  }
  .slider-content h1 {
    font-size: 4rem;
        text-align: center;
    
  }
  .slider-content h6 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  .hero-buttons {
    margin-top: 20px !important;
  }
}

@media (max-width: 768px) {
  .navbar-modern .container {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    padding: 0 10px !important;
  }
  .navbar-brand {
    margin-right: 10px !important;
  }
  .navbar-collapse {
    display: flex !important;
    flex: auto !important;
  }
  .navbar-nav {
    gap: 2px !important;
  }
  .navbar-modern .nav-link {
    padding: 5px 6px !important;
    font-size: 11px !important;
  }
  .btn-gradient {
    padding: 5px 10px !important;
    font-size: 11px !important;
  }
  @media (max-width: 768px) {
  .navbar-logo {
    height: 40px !important;  /* Blog ke equal karo */
    /* padding-left: 20px; - Agar chahiye toh add karo */
  }
}
  
  /* ===== HERO SECTION - PHONE (SAME AS LAPTOP LAYOUT) ===== */
  .hero-slider {
    min-height: 45vh !important;
    height: auto !important;
  }
  .slider-container {
    min-height: 45vh !important;
    height: auto !important;
  }
  .slider-content {
    padding: 70px 0 40px !important;
    text-align: center !important;
  }
  
  /* WEBSITE • APP • SOFTWARE */
  .slider-content h6 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 5px !important;
    margin-top: 25px !important;
    margin-bottom: 20px !important;
    color: #20c997 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }
  
  /* Where Logic Meets Creativity */
  .slider-content h1 {
    font-size: 3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: white !important;
  }
  
  /* We build powerful... */
  .slider-content .lead {
    font-size: 1.8rem !important;
    margin-bottom: 25px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }
  
  /* Buttons - Center (Same as Laptop) */
  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
  }
  
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-light {
    padding: 10px 28px !important;
    font-size: 14px !important;
    min-width: 130px !important;
    width: auto !important;
    max-width: 140px !important;
  }
  
  /* Arrow Buttons - Corners (Same as Laptop) */
  .slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .slider-arrow.prev {
    left: 15px !important;
    right: auto !important;
    margin-top: 54px;
  }
  
  .slider-arrow.next {
    right: 15px !important;
    left: auto !important;
    margin-top: 54px;
  }
  
  .slider-arrow:hover {
    background: #20c997 !important;
    border-color: #20c997 !important;
    transform: translateY(-50%) scale(1.05) !important;
  }
  
  /* 3 Dots */
  .slider-dots {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: absolute !important;
  }
  .slider-dots .dot {
    width: 9px !important;
    height: 9px !important;
  
  }
  
  /* Footer Social Icons - Center */
  .footer .col-lg-4,
  .footer .col-lg-2,
  .footer .col-lg-3 {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer .contact-info {
    justify-content: center;
  }
  .footer .d-flex {
    justify-content: center !important;
  }
  
  .section-title h2 { font-size: 2rem; }
  .stat-card-round {
    width: 120px;
    height: 120px;
  }
  .stat-card-round h3 { font-size: 1.8rem; }
  .logo-wrapper {
    gap: 30px;
  }
  .logo-item img {
    height: 40px;
  }
  .about-section .row {
    text-align: center;
  }
  .about-section .col-4 {
    margin-bottom: 20px;
  }
  .contact-section img {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .navbar-modern .container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
  }
  .navbar-modern .container::-webkit-scrollbar {
    height: 3px !important;
  }
  .navbar-modern .nav-link {
    padding: 4px 5px !important;
    font-size: 10px !important;
  }
  .btn-gradient {
    padding: 4px 8px !important;
    font-size: 10px !important;
  }
  .navbar-logo {
    height: 40px !important;
  }
  
  /* ===== HERO SECTION - SMALL PHONE (SAME AS LAPTOP LAYOUT) ===== */
  .hero-slider {
    min-height: 58vh !important;
    height: auto !important;
  }
  .slider-container {
    min-height: 58vh !important;
    height: auto !important;
  }
  .slider-content {
    padding: 60px 0 35px !important;
    text-align: center !important;
  }
  
  .slider-content h6 {
    font-size: 1.2rem !important;
    letter-spacing: 4px !important;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
  }
  
  .slider-content h1 {
    font-size: 2.6rem !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
  }
  
  .slider-content .lead {
    font-size: 1.8rem !important;
    margin-bottom: 22px !important;
    line-height: 1.45 !important;
  }
  
  /* Buttons - Center (Same as Laptop) */
  .hero-buttons {
    gap: 18px !important;
    margin-top: 12px !important;
  }
  
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-light {
    padding: 9px 24px !important;
    font-size: 13px !important;
    min-width: 120px !important;
    width: auto !important;
    max-width: 130px !important;
  }
  
  /* Arrow Buttons - Corners (Same as Laptop) */
  .slider-arrow {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.95rem !important;
  }
  
  .slider-arrow.prev {
    left: 12px !important;
  }
  
  .slider-arrow.next {
    right: 12px !important;
  }
  
  /* 3 Dots */
  .slider-dots {
    bottom: 20px !important;
  }
  .slider-dots .dot {
    width: 8px !important;
    height: 8px !important;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  .stat-card-round {
    width: 100px;
    height: 100px;
  }
  .stat-card-round h3 {
    font-size: 1.5rem;
  }
  .logo-item img {
    height: 35px;
  }
  .float-buttons {
    bottom: 20px;
    right: 20px;
  }
  .float-buttons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Responsive footer address */
@media (max-width: 768px) {
  .footer .contact-info span {
    white-space: normal !important;
    word-break: keep-all;
  }
}
.contact-info a {
  display: inline-block;
  white-space: nowrap;
}

/* ===== BUTTON FIX - SAME SIZE FOR BOTH BUTTONS ON ALL SCREENS ===== */

/* Force same styles for both buttons */
.hero-buttons .btn-gradient,
.hero-buttons .btn-outline-light {
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  line-height: 1 !important;
  border: none !important;
}

/* Get Started Button */
.hero-buttons .btn-gradient {
  background: linear-gradient(135deg, #20c997, #0a2540) !important;
  color: white !important;
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3) !important;
}

.hero-buttons .btn-gradient:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 30px -10px #20c997 !important;
  background: linear-gradient(135deg, #1eb887, #0a1f35) !important;
  color: white !important;
}

/* View Work Button - Same as Get Started */
.hero-buttons .btn-outline-light {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: none !important;
}

.hero-buttons .btn-outline-light:hover {
  background: white !important;
  color: #20c997 !important;
  border-color: white !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 30px -10px rgba(255, 255, 255, 0.5) !important;
}

/* Desktop/Laptop (992px and above) */
@media (min-width: 992px) {
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-light {
    padding: 14px 36px !important;
    font-size: 18px !important;
    min-width: 160px !important;
  }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-light {
    padding: 12px 30px !important;
    font-size: 16px !important;
    min-width: 140px !important;
  }
}

/* Mobile (below 768px) */
@media (max-width: 767px) {
  .hero-buttons .btn-gradient,
  .hero-buttons .btn-outline-light {
    padding: 8px 20px !important;
    font-size: 13px !important;
    min-width: 115px !important;
    
  }
}

/* ===== HAMBURGER MENU STYLES ===== */

.navbar-toggler {
  border: none !important;
  background: transparent !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  margin-left: auto !important;
  display: block !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  position: relative !important;
  width: 28px !important;
  height: 2px !important;
  background: #0a0f1e !important;
  border-radius: 2px !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '' !important;
  position: absolute !important;
  width: 28px !important;
  height: 2px !important;
  background: #0a0f1e !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
  left: 0 !important;
}

.navbar-toggler-icon::before {
  top: -8px !important;
}

.navbar-toggler-icon::after {
  bottom: -8px !important;
}

/* Jab menu CLOSED ho - ☰ Three Lines */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: #0a0f1e !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  top: -8px !important;
  transform: none !important;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  bottom: -8px !important;
  transform: none !important;
}

/* Jab menu OPEN ho - ✕ Cross */
.navbar-toggler.collapsed .navbar-toggler-icon {
  background: transparent !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
  transform: rotate(45deg) !important;
  top: 0 !important;
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
  transform: rotate(-45deg) !important;
  bottom: 0 !important;
}

/* Menu Logo - Top Center */
.menu-logo {
  text-align: center !important;
  margin-bottom: 30px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid rgba(32, 201, 151, 0.3) !important;
}

.menu-logo img {
  height: 50px !important;
  width: auto !important;
}

/* Mobile Quote Button */
.mobile-quote-btn {
  display: none !important;
}

.desktop-quote-btn {
  display: inline-block !important;
}

/* Overlay Background */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.menu-overlay.show {
  display: block;
}

/* ===== MOBILE VIEW - LEFT SIDE SLIDE ===== */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block !important;
  }
  
  .desktop-quote-btn {
    display: none !important;
  }
  
  .mobile-quote-btn {
    display: inline-block !important;
    margin-top: 20px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Menu - LEFT SE SLIDE OPEN */
  @media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    width: 280px !important;
    height: 100vh !important;
    background: #ffffff !important;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1) !important;
    transition: left 0.3s ease !important;
    z-index: 1050 !important;
    padding: 20px 20px 30px !important;  /* 80px se 20px kar diya */
    overflow-y: auto !important;
  }
}
  
  .navbar-collapse.show {
    display: block !important;
    left: 0 !important;
  }
  
  /* Show logo inside menu on mobile */
  .menu-logo {
    display: block !important;
  }
  
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .navbar-nav .nav-item {
    width: 100% !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
  
  .navbar-modern .nav-link {
    padding: 12px 0 !important;
    font-size: 18px !important;
    display: block !important;
    color: #0a0f1e !important;
  }
  
  .navbar-modern .nav-link.active {
    color: #20c997 !important;
  }
  
  .navbar-modern .nav-link::before {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
  
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
  }
  
  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 0 !important;
  }
  
  .navbar-nav .nav-item {
    width: auto !important;
    border-bottom: none !important;
  }
  
  .navbar-modern .nav-link {
    padding: 8px 12px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    color: #0a0f1e !important;
    position: relative !important;
  }
  
  .navbar-modern .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #20c997, #0a2540);
    transition: width 0.3s;
  }
  
  .navbar-modern .nav-link:hover::before,
  .navbar-modern .nav-link.active::before {
    width: 100%;
  }
  
  .navbar-modern .nav-link.active {
    color: #20c997 !important;
  }
  
  .desktop-quote-btn {
    display: inline-block !important;
    margin-left: 8px !important;
  }
  
  .mobile-quote-btn {
    display: none !important;
  }
  
  .menu-overlay {
    display: none !important;
  }
  
  .menu-logo {
    display: none !important;
  }
}

.btn-gradient {
  background: linear-gradient(135deg, #20c997, #0a2540);
  color: white;
  border: none;
  padding: 8px 18px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(32, 201, 151, 0.3);
  color: white;
}