/* ===== 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 - SAME AS HOME PAGE (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;
}

/* ===== SECTION 1 - PAGE BANNER WITH 3D ANIMATION ===== */
.page-banner {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
  padding-top: 100px;
}

/* 3D Floating Shapes */
.banner-3d-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  perspective: 1000px;
}

.shape-3d {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1);
  transform-style: preserve-3d;
  animation: float3d 15s infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3d-1 {
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  animation: float3d 18s infinite;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.shape-3d-2 {
  bottom: 10%;
  right: 15%;
  width: 250px;
  height: 250px;
  animation: float3d 20s infinite reverse;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.2));
}

.shape-3d-3 {
  top: 50%;
  right: 30%;
  width: 180px;
  height: 180px;
  animation: float3d 22s infinite;
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.2), rgba(10, 37, 64, 0.2));
}

.shape-3d-4 {
  bottom: 30%;
  left: 20%;
  width: 150px;
  height: 150px;
  animation: float3d 25s infinite reverse;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(135, 206, 235, 0.2));
}

@keyframes float3d {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg) translateY(0) translateX(0);
  }
  25% {
    transform: rotateX(10deg) rotateY(10deg) translateY(-20px) translateX(15px);
  }
  50% {
    transform: rotateX(20deg) rotateY(20deg) translateY(-40px) translateX(30px);
  }
  75% {
    transform: rotateX(10deg) rotateY(10deg) translateY(-20px) translateX(15px);
  }
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.3), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slideLeft 1.2s ease;
}

.banner-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: slideRight 1.2s ease 0.2s both;
}

/* ===== SECTION 2 - CONTACT INFO CARDS ===== */
.contact-info-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 50%, #d9e2ef 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background */
.info-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.info-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s infinite;
}

.info-shape-1 {
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.info-shape-2 {
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
}

.info-shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.05) 0%, transparent 70%);
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-title h6 {
  color: #010201;
  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: 0.5rem;
}

.section-title h2 span {
  background: linear-gradient(135deg, #667eea, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: #4a5568;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* 3D Contact Info Cards */
.contact-info-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  height: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: cardFloat 6s infinite;
}

.contact-info-card:nth-child(1) { animation-delay: 0s; }
.contact-info-card:nth-child(2) { animation-delay: 1s; }
.contact-info-card:nth-child(3) { animation-delay: 2s; }
.contact-info-card:nth-child(4) { animation-delay: 3s; }

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

.contact-info-card:hover {
  transform: translateY(-15px) rotateX(5deg) scale(1.02);
  box-shadow: 0 40px 60px rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #ff6b6b);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s;
  transform-style: preserve-3d;
}

.contact-info-card:hover .info-icon {
  transform: rotateY(180deg) scale(1.1);
}

.contact-info-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0a0f1e;
}

.contact-info-card p {
  color: #4a5568;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.contact-info-card a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 0.5rem;
}

.contact-info-card a:hover {
  color: #ff6b6b;
}

/* ===== SECTION 3 - CONTACT FORM ===== */
.contact-form-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.form-container {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  animation: formFloat 8s infinite;
  max-width: 800px;
  margin: 0 auto;
}

@keyframes formFloat {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: rotateX(1deg) rotateY(1deg);
  }
}

.form-container h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #0a0f1e;
  text-align: center;
}

.form-container p {
  color: #64748b;
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 0.8rem;
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  color: #0a0f1e;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #20c997;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group select {
  color: #0a0f1e;
}

.form-group select option {
  background: white;
  color: #0a0f1e;
}

.submit-btn {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(135deg, #20c997, #0a2540);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
  margin-top: 0.5rem;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
  width: 300%;
  height: 300%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px #20c997;
}

/* ===== SECTION 4 - GOOGLE MAP ===== */
.map-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #06c0a7, #2b999c);
  position: relative;
  overflow: hidden;
}

.map-3d-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  animation: mapFloat 10s infinite;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

@keyframes mapFloat {
  0%, 100% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: rotateX(1deg) rotateY(1deg);
  }
}

.map-container {
  width: 100%;
  height: 350px;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s;
}

.map-overlay:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.02);
}

.map-overlay p {
  margin: 0;
  color: #0a0f1e;
  font-weight: 600;
  font-size: 0.9rem;
}

.map-overlay i {
  color: #ff6b6b;
  margin-right: 8px;
}

/* ===== 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;
  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 30px rgba(32, 201, 151, 0.5);
}

/* ===== 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);
}

/* ===== ANIMATION CLASSES ===== */
.slide-left {
  animation: slideLeft 1.2s ease forwards;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-right {
  animation: slideRight 1.2s ease forwards;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-up {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom-in {
  animation: zoomIn 1s ease forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
  
  .banner-content h1 {
    font-size: 3.5rem;
  }
  
  .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;
  }
}

@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;
  }
  
  /* ===== BANNER SECTION - FIX (Heading Top Se Margin) ===== */
  .page-banner {
    min-height: 28vh !important;
    padding-top: 90px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
  }
  
  .banner-content h1 {
    font-size: 2.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }
  
  .banner-content p {
    font-size: 0.9rem !important;
    margin-top: 0 !important;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .contact-info-card {
    height: 200px;
    margin-bottom: 15px;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .map-container {
    height: 250px;
  }
  
  .map-overlay {
    top: 10px;
    left: 10px;
    padding: 0.4rem 1rem;
  }

  .navbar-logo {
    height: 40px !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;
  }
}

@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;
  }
  
  /* ===== BANNER SECTION - SMALL PHONE (Heading Top Se Margin) ===== */
  .page-banner {
    min-height: 28vh !important;
    padding-top: 70px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
  }
  
  .banner-content h1 {
    font-size: 2rem !important;
  }
  
  .banner-content p {
    font-size: 0.85rem !important;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .contact-info-card {
    height: 180px;
    padding: 1rem;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .contact-info-card h4 {
    font-size: 1rem;
  }
  
  .contact-info-card p {
    font-size: 0.8rem;
  }
  
  .form-container h3 {
    font-size: 1.5rem;
  }
  
  .float-buttons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.contact-info a {
  display: inline-block;
  white-space: nowrap;
}




/* ===== HAMBURGER BUTTON WITH CROSS EFFECT ===== */

.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;
}