/* Ensure consistent navbar height */
:root {
  --header-height: 70px;
  --space-sm: 10px;
  --space-md: 15px;
  --space-lg: 25px;
  --radius-sm: 6px;
  --color-primary-green: #3a5132;
  --color-text-primary: #3a5132;
  --color-text-secondary: #3a5132;
  --color-background-primary: #ffffff;
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
#samsung{
  background-color: #f7fdf7;
}

body {
   font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #3a5132;
  background-color: #f7fdf7;
}



/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
    --header-height: 80px;
  --container-max-width: 1200px;
}

/* Sections */
.section {
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  color: #3a5132;
  margin-bottom: 20px;
  padding-top: 40px;
}

/* Hero Section */
.hero {
  background: #f7fdf7;
  padding: 80px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #3a5132;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.btn--primary {
  background: #3a5132;
  color: #fff;
}

.btn--primary:hover {
  background: #1a4027;
}

.btn--outline {
  background: transparent;
  border: 2px solid #3a5132;
  color: #3a5132;
}

.btn--outline:hover {
  background: #3a5132;
  color: #fff;
}

.hero-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 10px;
}

/* Intro Section */
.intro-section {
  text-align: center;
  background: #fafafa;
  padding: 60px 20px;
}

.intro-section h2 {
  margin-bottom: 10px;
}

.intro-section p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #555;
}

/* Testimonials */
.testimonials-section {
  background: #f8f8f8;
  padding: 60px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* Founder Section */
.founder-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.founder-image img {
  max-width: 350px;
  border-radius: 10px;
}

.founder-text h2 {
  margin-bottom: 10px;
}

.founder-text h3 {
  margin: 8px 0;
  color: #3a5132;
}

.credentials {
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.pillar-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Focus Areas */
.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.focus-area-card {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #2e7d32;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Plans Section */
.apple-hero {
  text-align: center;
  margin-bottom: 40px;
}

.apple-hero img {
  margin-top: 20px;
  max-width: 300px;
  border-radius: 10px;
}

.nokia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.xiaomi-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oneplus-header {
  padding: 20px;
  text-align: center;
  font-weight: bold;
}

.oneplus-header h3 {
  margin-bottom: 5px;
}

.motorola-content {
  padding: 20px;
}

.motorola-content p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.lenovo-features ul {
  margin-top: 10px;
  padding-left: 20px;
}

.zte-button-wrapper {
  text-align: center;
  padding: 20px;
}

/* Plan Specific Colors */
.oppo-platinum .oneplus-header {
  background: #BCDA56;
  color: #000000;
}

.oppo-gold .oneplus-header {
  background: #D9B557;
  color: #000000;
}

.oppo-lite .oneplus-header {
  background: #aa3f93;
  color: #000000;
}

.btn.infinix-platinum {
  background: #3a5132;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
}

.btn.infinix-gold {
  background: #3a5132;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  color: #ffffff;
}

.btn.infinix-lite {
  background: #3a5132;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .founder-section {
    flex-direction: column;
    text-align: center;
  }
}


/* Footer */
.porsche-footer {
  -size: 0.9rem;
  padding: 1.5rem 8%;
  border-top: 1px solid #ddd;
  color: #3a5132;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f7fdf7;
  flex-wrap: wrap;
}

.porsche-footer .logo {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.porsche-footer a {
  color: #3a5132;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.porsche-footer a:hover {
  color: #3b7a57;
}

/* Social Media Icons */
.footer-right a {
  margin-left: 12px;
  font-size: 1.5rem;
  color: #3a5132;
  transition: all 0.5s ease;
}

.footer-right a:hover {
  color: #3a8f60;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .porsche-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 1.35rem;
  }
}



@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}


  .container {
    padding: 0 var(--space-sm);
  }
/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Navigation barr */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  height: var(--header-height);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo {
    max-height: 32px;
  }
}

.nav-brand h2 {
    color: var(--color-primary-green);
    font-size: 1.4rem;
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
  .nav-brand h2 {
    font-size: 1.27rem;
  }
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}



@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-background-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    left: 0;
  }
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

/* .nav-link:hover,
.nav-link.active {
  color: var(--color-primary-green);
  background-color: rgba(59, 122, 87, 0.1);
} */




.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-normal);
  border-radius: 1px;
}

/* Animate hamburger to X */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}


a {
    color: var(--color-primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.interest-btn {
    display: inline-block;
    background: #3a5132;
    color: #fff;
    padding: 0.6rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}


.nav-link {
  padding: 8px 16px;              /* spacing like a button */
  border-radius: 8px;             /* rounded box shape */
  transition: all 0.3s ease;      /* smooth animation */
  display: inline-block;          /* makes padding work properly */
}

/*  */
/* Floating Button (Mobile Only) */
.floating-btn {
  position: fixed;
  bottom: -60px; /* hidden by default */
  left: 50%;
  transform: translateX(-50%);
  background: #3a5132;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  transition: bottom 0.4s ease;
  z-index: 999;
}

/* Show button when active */
.floating-btn.show {
  bottom: 20px;
}

/* Mobile Only */
@media (min-width: 769px) {
  .floating-btn {
    display: none;
  }
}


