*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between; /* ✅ Added for equal space */
    padding: 20px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
}
a{
    text-decoration: none;
    color: #555;
}
p{
    color: #555;
}
.container{
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}
.col-2{
  flex-basis: 50%;
  min-width: 300px;
}
.col-2 img{
  max-width: 100%;
  padding: 50px 0;
}
.col-2  h1{
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
}
.btn{
  display: inline-block;
  background: #20b420;
  color: #fff;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 30px;
  transition: background 0.5s;
}
.btn:hover{
  background: #f8664c;
}
.header{
  background: radial-gradient(#fff,#d8eedb);
}
.header .row{
  margin-top: 70px;
}
.categories{
  margin: 70px 0;
}
.col-3{
  flex-basis: 30px;
  min-width: 250px;
  margin-bottom: 30px;
}
.col-3 img{
  width: 100%;
}
.small-container{
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.col-4{
  flex-basis: 25%;
  padding: 10px;
  min-width: 200px;
  margin-bottom: 50px;
}
.col-4 img {
  width: 100%;
}
.title {
  text-align: center;
  margin: 0 auto 80px;
  position: relative;
  line-height: 60px;
  color: #555;
}
.title::after {
  content: '';
  background: #ff523b;
  width: 80px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h4{
  color: #555;
  font-size: normal;
}
.col-4 p{
  font-size: 14px;
}
.rating .fa{
  color: #14e20d;
}
/*---------Offer------*/
.offer{
   background: radial-gradient(#fff,#d8eedb);
   margin-top: 80px;
   padding: 30px 0;
}
.col-2 .offer-img{
  padding: 50px;
}
.small{
  color: #555;
}

/*---------Testomonial------*/

..testimonial {
  padding-top: 100px;
}

.testimonial .col-3 {
  text-align: center;
  padding: 20px 40px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s;
}

.testimonial .col-3 img {
  width: 50px;
  margin-top: 20px;
  border-radius: 50%;
}

.testimonial .col-3:hover {
  transform: translateY(-10px);
}


/* Footer Styling */
/* Footer Styling */
/*----- Footer -----*/
/*----- Footer -----*/
/* --- Footer Styling --- */
.site-footer {
  background: #0c0c0c;
  color: #e6e8ee;
  font-family: system-ui, sans-serif;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 2fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand Section */
/* Brand Section */
.footer-brand {
  display: flex;
  align-items: center;   /* logo aur text vertically center */
  gap: 12px;
}

.footer-brand .logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer-brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-brand p {
  margin: 0;             /* upar-neeche ka default margin remove */
  padding: 0;            /* safe: extra padding bhi hata diya */
  color: #a7afc0;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 10px;
  font-size: 14px;
  color: #f0f0f7;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  display: block;
  color: #e7e9ee;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px;
}
.footer-links a:hover {
  color: #faf8f8;
}

.footer-newsletter p {
  font-size: 14px;
  color: #f6f6fa;
  margin-bottom: 10px;
}
.footer-newsletter form {
  display: flex;
  gap: 10px;
}
.footer-newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #1c2331;
  background: #10131a;
  color: #e6e8ee;
}
.footer-newsletter button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: #5b8cff;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.footer-newsletter button:hover {
  background: #b3ebb7;
}

.footer-bottom {
  border-top: 1px solid #1c2331;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #e6e8ec;
}
.footer-bottom .social a {
  margin-left: 10px;
  font-size: 20px;
  color: #e6e8ee;
  text-decoration: none;
}
.footer-bottom .social a:hover {
  color: #f4f6f8;
}

/* Responsive */
@media (max-width: 960px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

