@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-blue: #2196f3;
  --dark-blue: #1976d2;
  --light-blue: #e3f2fd;
  --green-accent: #4caf50;
  --text-dark: #333333;
  --text-light: #ffffff;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#c2{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  border-top: black 3px solid;
  /* background-color: red; */
}
#content{
  margin-bottom: 50px;
}

h1,
h2,
h3 {
  margin-bottom: 15px;
  font-weight: 900;
  color: var(--dark-blue);
}

h1 {
  font-size: 3.5em;
  text-align: center;
  line-height: 1.1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.intro{
  font-size: 28px;
  color: white;
  font-family: 'Poppins';
}

h3 {
  font-size: 1.8em;
  margin-top: 0;
}

p {
  margin-bottom: 15px;
}

.navbar {
  background-color: navy;
  padding: 15px 0;
  box-shadow: var(--box-shadow-light);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--green-accent);
}

.hero-section {
  padding: 80px 0 40px;
  text-align: center;
  flex-grow: 1;
  background-color: var(--light-blue);
}

.hero-title {
  font-weight: 800;
  font-size: medium;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--dark-blue);
}

#heroo{
  font-size: 45px;
  font-weight: 800;
  color: var(--dark-blue);
}

.hero-title .highlight {
  color: var(--green-accent);
}

.hero-description {
  font-size: 28px;
  /* font-weight: 900; */
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  opacity: 0.9;
}
#boxed{
  font-weight: 800;
  font-size: 30px;
  border: 2px solid #2196f3;
  border-radius: 15px;
  padding: 10px 20px;
  color: white;
  background-color: #2196f3;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 70px;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--box-shadow-light);
  border: none;
  cursor: pointer;
  color: var(--text-light);
}

.first{
  font-size: 34px;
  font-weight: 700;
  margin-top: -12px;
}

.firstul{
  list-style: none;
  text-align: center;
}

.firstul li{
  font-size: 28px;
  font-weight: 700;
}

#second{
  font-size: 34px;
  font-weight: 700;
}

#secondp{
  font-size: 28px;
  font-weight: 700;
}

#secondbutton{
  margin-top: 65px;
  margin-bottom: -60px;
}

#third{
  font-size: 34px;
}

#thirdp{
  font-size: 28px;
  font-weight: 700;
}

#thirdul li{
  font-size: 30px;
  font-weight: 600;
}

#thirdul li span{
  color: #2196f3;
  font-size: 28px;
}

#fourth{
  font-size: 35px;
}

#fourthul{
  list-style: none;
  text-align: left;
}

#fourthul li{
  font-size: 35px;
}

#fourthul li span{
  color: #2196f3;
  font-size: 28px;
}
.space{
  margin-bottom: 10px;
}

.button-icon {
  font-size: 24px;
  color: var(--text-light);
}

.shop-now-button {
  background-color: var(--primary-blue);
}

.shop-now-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-strong);
  background-color: var(--dark-blue);
}

.whatsapp-hero-button {
  background-color: var(--green-accent);
}

.whatsapp-hero-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-strong);
  background-color: #43a047;
}

.banner-image-container {
  margin-top: 50px;
  padding: 0 20px;
}

.embedded-banner {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-strong);
}

/* .features-section {
  padding: 60px 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.feature-card {
  background-color: var(--primary-blue);
  padding: 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--box-shadow-light);
  transition: transform 0.2s ease, background-color 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: var(--dark-blue);
} */
/* 
.feature-icon {
  font-size: 60px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--text-light);
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95em;
} */

.contact-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--light-blue);
}

.contact-section h2 {
  color: var(--dark-blue);
}

.contact-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  opacity: 0.9;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-chat-button {
  background-color: var(--green-accent);
}

.whatsapp-chat-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-strong);
  background-color: #43a047;
}

.call-now-button {
  background-color: var(--primary-blue);
}

.call-now-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-strong);
  background-color: var(--dark-blue);
}

.email-us-button {
  background-color: var(--dark-blue);
}

.email-us-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-strong);
  background-color: #1565c0;
}

.footer {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: auto;
}

.hurry-message {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--green-accent);
}

@media (max-width: 768px) {
  
  .hero-title {
    font-size: 1.5em;
  }

  .intro{
    font-size: 18px;
  }
  .hero-description {
    font-size: 18px;
    margin-top: -40px;
  }
  .navbar{
    height: 50px;
  }

  #heroo{
    font-size: 22px;
    margin-top: -10px;
  }
  .nospace{
    margin-top: -155px;
  }

  #redp{
    font-size: 18px;
    margin-top: 20px;
    padding: 0 30px;
    text-align: center;
  }
  .first{
    font-size: 14px;
    margin-top: -45px;
  }

  .firstul li{
    font-size: 16px;
  }

  #firstbutton{
    font-size: 16px;
  }

  #boxed{
    font-size: 20px;
    margin-top: 20px;
  }

  #second{
    font-size: 28px;
    margin-top: -85px;
    margin-bottom: 40px;
  }

  #secondp{
    font-size: 18px;
  }

  #third{
    font-size: 28px;
    color:  navy;
  }

  #thirdp{
    font-size: 18px;
    margin-top: 20px;
    text-align: left;
  }
  #thirdp:last-child{
    margin-top: 5px;
  }
  #thirdul{
    list-style: none;
    text-align: left;
  }
  #thirdul li{
    font-size: 18px;
  }
  #thirdul li span .bx{
    font-size: 12px;
    /* border: 1px solid red; */
  }
  #fourth{
    font-size: 28px;
  }
  #fourthul{
    list-style: none;
  }
  #fourthul li{
    font-size: 18px;
  }
  #fourthul li span{
    font-size: 12px;
  }

  .space{
    margin-bottom: 20px;
  }
  .button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .feature-icon {
    font-size: 50px;
  }
}

@media (min-width: 769px) {
  .hero-title {
    font-size: 5.5em;
  }
  .hero-description {
    font-size: 22px;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6.5em;
  }
}
