.contact-section h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 2.2rem;
}
/* Side-by-side contact layout: address+map left, form right */
.contact-sidebyside {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}
.contact-info-map-card {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(42,59,143,0.10);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  max-width: 650px;
  min-width: 320px;
  flex: 2 1 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-info-map-card .info-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact-info-map-card .info-icon {
  background: var(--primary, #10b981);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 2px 8px rgba(16,185,129,0.10);
}
.contact-info-map-card h3 {
  margin: 0 0 0.2rem 0;
  color: var(--primary, #10b981);
  font-size: 1.25rem;
}
.contact-info-map-card address {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.7;
}
.contact-info-map-card a {
  color: var(--primary, #10b981);
  text-decoration: underline;
}
.map-below-address {
  margin-top: 1.5rem;
}
.map-below-address iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(42,59,143,0.10);
}
@media (max-width: 900px) {
  .contact-sidebyside {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-info-map-card, .modern-contact-form {
    max-width: 100%;
    min-width: 0;
  }
  .map-below-address iframe {
    height: 180px;
  }
}
/* Wide map below contact section */
.wide-map-container {
  width: 100%;
  margin: 0 auto 0 auto;
  max-width: 100vw;
  display: block;
}
.wide-map-container iframe {
  width: 100%;
  min-height: 320px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(42,59,143,0.10);
}
@media (max-width: 900px) {
  .wide-map-container iframe {
    min-height: 180px;
  }
}
/* Modern Contact Page Redesign */
.modern-contact-flex {
  gap: 3.5rem;
}
.modern-contact-info {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(42,59,143,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 420px;
  min-width: 260px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modern-contact-info .info-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.modern-contact-info .info-icon {
  background: var(--primary, #10b981);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 2px 8px rgba(16,185,129,0.10);
}
.modern-contact-info h3 {
  margin: 0 0 0.2rem 0;
  color: var(--primary, #10b981);
  font-size: 1.25rem;
}
.modern-contact-info address {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.7;
}
.modern-contact-info a {
  color: var(--primary, #10b981);
  text-decoration: underline;
}
.modern-map-container {
  margin-top: 1.5rem;
}
.modern-map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(42,59,143,0.08);
}
.modern-contact-form {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(42,59,143,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 540px;
  min-width: 260px;
  flex: 2 1 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modern-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.modern-contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.modern-contact-form label {
  font-weight: 500;
  color: var(--primary, #10b981);
  margin-bottom: 0.1rem;
  font-size: 1rem;
}
.modern-contact-form input,
.modern-contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  font-size: 1rem;
  background: #f7fafc;
  color: #222;
  transition: border-color 0.2s;
  outline: none;
}
.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
  border-color: var(--primary, #10b981);
  background: #fff;
}
.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.modern-btn {
  background: var(--primary, #10b981);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16,185,129,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.modern-btn:hover {
  background: var(--primary-dark, #059669);
  box-shadow: 0 4px 16px rgba(16,185,129,0.13);
}
@media (max-width: 900px) {
  .modern-contact-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .modern-contact-info, .modern-contact-form {
    max-width: 100%;
    min-width: 0;
  }
  .modern-map-container iframe {
    height: 220px;
  }
}
/* Contact Page Flex Layout */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.contact-info {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 380px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(42,59,143,0.06);
  margin-bottom: 2rem;
}
.contact-info h3 {
  margin-top: 0;
  color: var(--primary, #2a3b8f);
}
.contact-info address {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}
.map-container {
  margin-top: 1.2rem;
}
.map-container iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 6px;
}
.contact-form {
  flex: 2 1 340px;
  min-width: 260px;
  max-width: 520px;
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(42,59,143,0.06);
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* Center the Why Choose Xtension LLP heading */
.why-us h2 {
    text-align: center;
    width: 100%;
}
/* Why Choose Us Section - Card Row */
.why-us {
    margin: 6rem 0 0 0;
}
.features-card-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.feature-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s;
}
.feature-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.feature-card p {
    color: var(--gray);
    font-size: 1rem;
}
@media (max-width: 900px) {
    .features-card-row {
        flex-direction: column;
        align-items: stretch;
    }
    .feature-card {
        max-width: 100%;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset browser default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
 :root {
    --primary: #10b981; /* Main green */
    --primary-light: #d1fae5;
    --primary-dark: #059669;
    --secondary: #047857;
    --accent: #fbbf24; /* Gold accent */
    --dark: #064e3b;
    --light: #f0fdf4;
    --gray: #6b7280;
    --surface: #ffffff;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.7;
}

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

/* Header styles */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
    display: block;
    /* border: 2px solid #e11d48 !important; Debug border removed */
    background: #fff;
}

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

nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.button.primary {
    background: white;
    color: var(--primary);
}

.button.primary:hover {
    background: var(--primary);
    color: #fff !important;
}

.button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* General Section Styling */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: var(--dark);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-radius: 1rem;
    margin: 6rem auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: #a0aec0;
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    text-align: center;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

footer ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

/* Products Page */
.products-page {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
}

.sidebar {
  width: 250px;
  flex-shrink: 0;
}

.sidebar h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.sidebar select, .sidebar input, .sidebar label {
  width: 100%;
  margin-bottom: 1rem;
}

.product-list {
  flex-grow: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-content .price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-card button {
  width: 100%;
  padding: 0.8rem;
  margin-top: auto;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 6rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none; /* Needs a mobile menu implementation */
    }
    .products-page {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}

/* --- Mobile-friendly additions --- */
@media (max-width: 900px) {
  body { padding-top: 68px; }
  .nav-toggle {
    display: inline-block;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    position: relative;
    margin-left: 1rem;
    cursor: pointer;
  }
  .nav-toggle span,
  .nav-toggle::before,
  .nav-toggle::after {
    content: '';
    display: block;
    height: 3px;
    background: var(--dark);
    margin: 8px 10px;
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  nav { display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; background: #fff; padding: 0.5rem 1rem; border-radius: 8px; box-shadow: var(--shadow-md); }
  nav li { padding: 0.5rem 0; }
  nav a { display: block; padding: 0.5rem 0.25rem; }
  .container { padding: 0 0.5rem; }
  .hero {
    padding: 80px 0 40px;
    text-align: left;
  }
  .hero .hero-content { max-width: 100%; padding: 0 0.5rem; }
  .hero .hero-image { display: block; padding: 0 0.5rem; margin-bottom: 1rem; }
  .hero .hero-image img { width: 100%; height: auto; display: block; }
  .button-group { flex-direction: column; gap: 0.6rem; }
  .button { width: 100%; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr !important; }
  .features-card-row { flex-direction: column; }
  .partners-logos img { height: auto; max-width: 90vw; }
  .footer-container { grid-template-columns: 1fr !important; }
}
@media (min-width: 901px) {
  .nav-toggle { display: none; }
  nav { display: block; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.95rem; }
}

