/* ===========================
   ENHANCED NEXTSURE STYLES
   Professional, Modern & Fully Responsive
=========================== */

/* ===========================
   RESET & GLOBAL STYLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

:root {
  --primary: #1e1b4b;
  --secondary: #10b981;
  --accent: #3b82f6;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--light);
  color: #1e293b;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

::selection {
  background: var(--secondary);
  color: var(--white);
}

/* ===========================
   PRELOADER
=========================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1b69 50%, var(--primary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 2rem;
}

.loader {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--secondary);
  border-right: 5px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  position: relative;
}

.loader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-bottom: 3px solid var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===========================
   HEADER / NAVBAR
=========================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1400px;
  margin: auto;
}

.brand_logo {
  width: 170px;
  z-index: 1001;
}

.brand img {
  width: 100%;
  display: block;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
  position: relative;
}

.nav-list li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list li a:hover {
  color: var(--secondary);
}

.nav-list li a:hover::before {
  width: 100%;
}

.nav-list li a.cta {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-list li a.cta::before {
  display: none;
}

.nav-list li a.cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.nav-list li a.cta:hover::after {
  width: 300px;
  height: 300px;
}

.nav-list li a.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  padding: 0.8rem 0;
  list-style: none;
  margin: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  z-index: 100;
  pointer-events: none;
}

.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.submenu li a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: #334155;
  transition: var(--transition);
  font-size: 0.9rem;
  border-left: 3px solid transparent;
}

.submenu li a::before {
  display: none;
}

.submenu li a:hover {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
  color: var(--secondary);
  padding-left: 2rem;
  border-left-color: var(--secondary);
}

/* Mobile Toggle - Hidden by default */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  position: relative;
  transition: var(--transition);
  
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  position: absolute;
  left: 0%;
  transition: var(--transition);
}

.hamburger::before {
  top: -9px;
}

.hamburger::after {
  top: 9px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
  backdrop-filter: blur(2px);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 8rem 2rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.5;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary);
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.lead {
  text-align: center;
  margin-bottom: 5rem;
  color: var(--gray);
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ===========================
   PRODUCT CARDS
=========================== */
.grid.cards {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background:#ffffff;
  padding: 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
        height: 370px;

}

.icon_logo {
  width: 50px;
  margin: 0 auto 1.5rem;
}

.icon_logo img {
  width: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
  transition: left 0.6s ease;
}

.card:hover::before {
  left: 100%;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::after {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.card h3 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.card p {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ===========================
   WHY CHOOSE SECTION
=========================== */
.why-choose {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 800;
  text-align: center;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.why-choose li {
  font-size: 1.15rem;
  color: #334155;
  padding: 1.5rem 2rem 1.5rem 4.5rem;
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--secondary);
}

.why-choose li::before {
  content: '✓';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.why-choose li:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

/* ===========================
   PARTNERS SECTION
=========================== */
.partners-section {
  background: var(--white);
  padding: 8rem 2rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.partner {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.partner a {
  position: relative;
  z-index: 2; /* ensure link is clickable */
}

.partner.prime img {
  max-height: 170px;
}

.partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.partner:hover::before {
  opacity: 1;
}

.partner img {
  width: 100%;
  max-width: 180px;
  max-height: 130px;
  object-fit: contain;
  transition: var(--transition);
}

.partner:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}


/* ===========================
   QUOTE FORM SECTION
=========================== */
.quote-section {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  padding: 8rem 2rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
  width: 100%;
}

.quote-form h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 800;
}

.quote-form p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#formMsg {
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: none;
  text-align: center;
  font-weight: 600;
  border: 2px solid;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#formMsg.show {
  display: block;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45);
}

.btn:active {
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 0.8rem 2rem;
  box-shadow: none;
  width: auto;
  font-weight: 600;
}

.btn-link:hover {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* ===========================
   CONTACT / FOOTER
=========================== */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: var(--white);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.contact_main {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact_item {
  flex: 1;
  min-width: 280px;
  max-width: 465px;
}

.contact_social .social_item {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.contact_social li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
}

.contact_social li i,
.contact_social li a {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}

.contact_social li:hover {
  background-color: #059669;
  transform: scale(1.15);
}

.contact_information p {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: 1.8;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.contact-info {
  line-height: 2.2;
  position: relative;
  z-index: 1;
}

.contact-info p,
.contact-info p a,
.contact-info ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: #34d399;
}

footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
  margin: 0.5rem 0;
}

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

footer a:hover {
  color: #34d399;
}

/* ===========================
   BACK TO TOP
=========================== */
#backTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  z-index: 999;
  transition: var(--transition);
  font-size: 1.6rem;
  border: none;
  font-weight: 700;
}

#backTop::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

#backTop:hover::before {
  width: 100%;
  height: 100%;
}

#backTop:hover {
  transform: translateY(-8px) rotate(360deg);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Desktop - Hide Toggle Button */
@media (min-width: 993px) {
  .nav-toggle {
    display: none !important;
  }
  
  .menu-overlay {
    display: none !important;
  }
}

/* Large Tablet & Below (992px) */
@media (max-width: 992px) {
  /* Show Toggle Button */
  .nav-toggle {
    display: block !important;
  }
  
  /* Mobile Navigation - HIDDEN BY DEFAULT */
  .nav-list {
    position: fixed;
    top: 0;
    right: -100% !important;
    height: 100vh;
    width: 85%;
    max-width: 350px;
    flex-direction: column;
    background: var(--white);
    display: flex !important;
    gap: 0;
    padding: 5rem 0 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
  }

  .nav-list.active {
    right: 0 !important;
    visibility: visible;
    opacity: 1;
  }
  
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list li a {
    display: block;
    padding: 1.2rem 2rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
  }

  .nav-list li a::before {
    display: none;
  }

  .nav-list li a:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
    color: var(--secondary);
    padding-left: 2.5rem;
  }

  /* CTA button in mobile */
  .nav-list li a.cta {
    margin: 1rem 2rem;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }

  .nav-list li a.cta:hover {
    padding-left: 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
  }

  /* Submenu in mobile */
  .has-submenu > a {
    position: relative;
    padding-right: 3.5rem !important;
  }

  .has-submenu > a::after {
    content: '▼';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
  }

  .has-submenu.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .has-submenu .submenu {
    position: static;
    display: none;
    background: #f8fafc;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-submenu.active .submenu {
    display: block;
    max-height: 500px;
  }

  .submenu li {
    border-bottom: none;
  }

  .submenu li a {
    padding: 1rem 2rem 1rem 3.5rem !important;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
  }

  .submenu li a:hover {
    border-left-color: var(--secondary);
    background: rgba(16, 185, 129, 0.08);
    padding-left: 4rem !important;
  }

  /* Responsive sections */
  .section {
    padding: 1rem 1.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .lead {
    font-size: 1.15rem;
    margin-bottom: 4rem;
  }

  .grid.cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }

  .card {
    padding: 0;
  }

  .why-choose h2 {
    font-size: 2.5rem;
  }

  .why-choose::before {
    width: 350px;
    height: 350px;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
  }

  .quote-form {
    padding: 3rem 2.5rem;
  }

  .contact_main {
    gap: 2.5rem;
  }

  .contact_item {
    max-width: 100%;
  }

  .contact-section::before {
    width: 400px;
    height: 400px;
  }
}

/* Tablet & Below (768px) */
@media (max-width: 768px) {
  .header-inner {
    padding: 1rem 1.5rem;
  }

  .brand_logo {
    width: 140px;
  }

  .section {
    padding: 5rem 1rem;
  }

  .section-title {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

  .lead {
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
  }

  .grid.cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card {
    padding: 0;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1rem;
  }

  .why-choose {
    padding: 5rem 1rem;
  }

  .why-choose h2 {
    font-size: 2.2rem;
  }

  .why-choose li {
    font-size: 1.05rem;
    padding: 1.3rem 1.8rem 1.3rem 4.2rem;
  }

  .why-choose::before {
    width: 300px;
    height: 300px;
  }

  .partners-section {
    padding: 5rem 1rem;
  }

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

  .partner {
    height: 130px;
    padding: 2rem;
  }

  .quote-section {
    padding: 5rem 1rem;
  }

  .quote-form {
    padding: 3rem 2rem;
  }

  .quote-form h2 {
    font-size: 2.2rem;
  }

  .quote-form p {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem 1.3rem;
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 4rem 1rem;
  }

  .contact_main {
    flex-direction: column;
    gap: 2rem;
  }

  .contact_item {
    min-width: 100%;
  }

  .contact-section h2 {
    font-size: 18px;
  }

  .contact-info p,
  .contact-info ul li a {
    font-size: 16px;
  }

  .contact-section::before {
    width: 300px;
    height: 300px;
  }

  #backTop {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 25px;
    right: 25px;
  }
}

/* Mobile Devices (480px) */
@media (max-width: 480px) {
  .nav-list {
    width: 100%;
    max-width: 100%;
  }

  .nav-list li a {
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
  }

  .has-submenu > a::after {
    right: 1.5rem;
  }

  .submenu li a {
    padding: 1rem 1.5rem 1rem 3rem !important;
    font-size: 0.9rem;
  }

  .submenu li a:hover {
    padding-left: 3.5rem !important;
  }

  .nav-list li a.cta {
    margin: 1rem 1.5rem;
  }

  .header-inner {
    padding: 0.9rem 1rem;
  }

  .brand_logo {
    width: 120px;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .section::before {
    width: 60px;
    height: 3px;
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .grid.cards {
    gap: 1.5rem;
  }

  .card {
    padding: 0%;
  }

  .card h3 {
    font-size: 1.4rem;
  }

  .card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .icon_logo {
    width: 45px;
    margin-bottom: 1.2rem;
  }

  .why-choose {
    padding: 4rem 1rem;
  }

  .why-choose h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .why-choose li {
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    font-size: 0.95rem;
  }

  .why-choose li::before {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    left: 1.2rem;
  }

  .why-choose::before {
    width: 250px;
    height: 250px;
  }

  .partners-section {
    padding: 4rem 1rem;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partner {
    height: 110px;
    padding: 1.5rem;
  }

  .partner img {
    max-width: 150px;
    max-height: 100px;
  }

  .partner .prime img {
    max-height: 140px;
  }

  .quote-section {
    padding: 4rem 1rem;
  }

  .quote-form {
    padding: 2.5rem 1.5rem;
  }

  .quote-form h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .quote-form p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }

  .btn-link {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .contact_main {
    gap: 1.5rem;
  }

  .contact_item {
    min-width: 100%;
  }

  .contact_information p {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-section h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .contact-info p,
  .contact-info p a,
  .contact-info ul li a {
    font-size: 15px;
  }

  .contact-info {
    line-height: 2;
  }

  .contact_social li {
    width: 36px;
    height: 36px;
  }

  .contact_social li i,
  .contact_social li a {
    font-size: 18px;
  }

  .contact-section::before {
    width: 200px;
    height: 200px;
  }

  footer {
    padding: 2rem 1rem;
    font-size: 0.85rem;
  }

  #backTop {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Extra Small Devices (360px) */
@media (max-width: 360px) {
  .brand_logo {
    width: 110px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.8rem 1.3rem;
  }

  .card h3 {
    font-size: 1.3rem;
  }

  .why-choose h2 {
    font-size: 1.6rem;
  }

  .why-choose li {
    font-size: 0.9rem;
    padding: 1rem 1.2rem 1rem 3.8rem;
  }

  .why-choose::before {
    width: 180px;
    height: 180px;
  }

  .quote-form {
    padding: 2rem 1.2rem;
  }

  .quote-form h2 {
    font-size: 1.6rem;
  }

  .contact-section h2 {
    font-size: 15px;
  }

  .contact-info p,
  .contact-info p a,
  .contact-info ul li a {
    font-size: 14px;
  }

  .contact-section::before {
    width: 150px;
    height: 150px;
  }
}

/* Utility Classes */
html {
  scroll-padding-top: 80px;
}

body.menu-open {
  overflow: hidden;
}
/* ===== Modern Tech Look CSS ===== */
body {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  margin: 0;
  padding: 0;
}

/* ===== Header Card ===== */
.card1 {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0 0 2rem 2rem;
  text-align: right;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.card1 button {
  background: white;
  color: #1e3a8a;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  transition: all 0.3s ease;
}
.card1 button:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* ===== Main Card ===== */
.card-shadow2 {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}
.card-shadow2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.15);
}

/* ===== Step Buttons ===== */
.step {
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.step.active {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
  transform: scale(1.02);
}
.step:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  cursor: pointer;
}

/* ===== Form Inputs ===== */
input, select, textarea {
  transition: all 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  background: #f8fafc;
}

/* ===== Buttons ===== */
button {
  transition: all 0.25s ease;
}
button:hover {
  transform: translateY(-2px);
}

/* ===== Result Box ===== */
#result {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border: 1px solid #bae6fd;
  box-shadow: inset 0 0 8px rgba(37, 99, 235, 0.15);
  font-weight: 600;
  color: #1e3a8a;
}

/* ===== Notification ===== */
.notif {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 9999;
  animation: slideIn 0.4s ease;
}

/* ===== Animations ===== */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .card1 {
    text-align: center;
  }
  .card-shadow2 {
    padding: 1.5rem;
  }
  .step {
    font-size: 14px;
    padding: 0.5rem;
  }
}





.hidden { display: none; }

.login-box, .login-card {
background: #fff;
top: 350px;
padding: 50px;
border-radius: 10px;
width: 420px;
height: auto;
text-align: center;
position: fixed;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
z-index: 1001;
}

.login-btn {
display: block;
width: 100%;
background: #007bff;
color: #fff;
padding: 12px;
margin-top: 12px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
}


.close-btn {
position: absolute;
top: 10px; right: 10px;
background: red;
color: white;
border: none;
padding: 4px 8px;
border-radius: 5px;
cursor: pointer;
}


#loginSubmit {
margin-top: 18px;
background: green;
color: white;
border-radius: 6px;
padding: 12px;
width: 50%;
}