
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  background: radial-gradient(#fff,#ffd6d6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

header .logo img {
  border-radius: 8px;
}




header .logo img,
header div img {  
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

header .logo img:hover,
header div img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}


nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #200a0afa; 
}


.blog-hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3a1c0c;
  background: url('bdaurapics/spiral curls_27_pic_2') center/cover no-repeat; 
  border-radius: 12px;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 182, 133, 0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7); 
  border-radius: 12px;
}

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

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #3a1c0c;
}




.blog-content {
  padding: 80px 5%;
  background: #fffaf4;
  text-align: center;
}

.blog-content p {
  font-size: 1.2rem;        
  line-height: 1.8;           
  color: #3a1c0c;            
  max-width: 800px;           
  margin: 0 auto 30px;         
  text-align: center;         
  background: rgba(255, 228, 225, 0.2); 
  padding: 25px 30px;         
  border-radius: 15px;        
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-weight: 500;           
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.blog-content strong {
  color: #b68955;
}

.contact-btn {
  margin: 30px 0;
}

.contact-btn .btn {
  background-color: #b68955;
  color: #fff;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn .btn:hover {
  background-color: #8b5e2d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

blockquote {
  font-style: italic;
  color: #b68955;
  border-left: 4px solid #b68955;
  padding-left: 20px;
  margin: 40px auto;
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
  background: rgba(255, 182, 133, 0.1); 
  border-radius: 8px;
}

.enquiry-btn {
  margin-top: 50px;
}

.enquiry-btn .btn {
  background-color: #ffb6c1; 
  color: #3a1c0c;
  padding: 14px 45px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.enquiry-btn .btn:hover {
  background-color: #ff69b4; 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}




.footer {
  background: linear-gradient(to bottom, #fff9f9, #ffd6d6);
  color: #130303;
  padding: 60px 40px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 12px;
  color: #5c040f;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #130303;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #5c040f;
}


.footer-follow-download {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.app-icons {
  display: flex;
  gap: 10px;
}

.app-icons img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.app-icons a:hover img {
  transform: scale(1.05);
}



.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: #5c040f;
  margin-top: 40px;
  width: 100%;
}



@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-follow-download {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .app-icons {
    justify-content: center;
  }
}



.contact-info {
  background: linear-gradient(to bottom, #fff0f0, #ffd6d6);
  padding: 80px 5%;
  text-align: center;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #3a1c0c;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #3a1c0c;
  margin-bottom: 20px;
}

.contact-details {
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 500;
}

.contact-details img {
  width: 25px;
  height: 25px;
}

.contact-details strong {
  color: #b68955; 
}

.contact-btn {
  margin-top: 25px;
}

.contact-btn .btn {
  padding: 14px 40px;
  background: #b68955;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-btn .btn:hover {
  background: #8f6b3d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}



@media (max-width: 768px) {
  .contact-details {
    padding: 20px;
  }

  .contact-details p {
    flex-direction: column;
    align-items: flex-start;
  }
}


.social-section {
  background: linear-gradient(to bottom, #fff0f0, #ffd6d6);
  
  text-align: center;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.social-section h2 {
  font-size: 2.5rem;
  color: #3a1c0c;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #3a1c0c;
  margin-bottom: 30px;
}

.social-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-section .social-icons a img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
}

.social-section .social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}


@media (max-width: 768px) {
  .social-section h2 {
    font-size: 2rem;
  }
  
  .social-section p {
    font-size: 1rem;
  }
  
  .social-section .social-icons a img {
    width: 40px;
    height: 40px;
  }
}
