/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #f7fbff;
  color: #001F54;
  overflow-x: hidden;
  font-family: 'Dosis', sans-serif;
}

/* Header Section */
.header {
  padding: 0px 80px;
  font-family: 'Nunito', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}


.header.scrolled {
  padding: 0px 60px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
  font-size: 24px;
  color: #001F54;
  font-weight: bold;
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center (if needed) */
  padding: 10px 0;
  gap: 10px;    
  font-size: 14px;           /* Image aur text ke darmiyan gap */
}

.logo span {
  color: #00aaff;
  font-style: italic;
  font-weight: 700; /* Use the boldest available weight */
  font-family: 'Dosis', sans-serif;
  font-size: 18px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  font-size: 14px;
  color: #333;
}

nav ul li {
  cursor: pointer;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

nav ul li a {
  color: #081F46;
  text-decoration: none;
}
nav ul li:hover {
  color: #329FFF;
}
nav ul li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #329FFF;
  transition: width 0.3s;
}
nav ul li:hover::after {
  width: 100%;
}

.info {
  font-size: 12px;
  color: #081F46;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}

.icons {
  font-size: 20px;
  display: flex;
  gap: 15px;
}

.icons i {
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}
.icons i:hover {
  transform: scale(1.2);
  color: #329FFF;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Media Queries for Responsive Layout */
@media (max-width: 992px) {
  .header {
    padding: 0 30px;
  }
  .header.scrolled {
    padding: 0px 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .logo-p{
    font-size: 13px;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .info {
    display: none;
  }
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 180px 200px 200px;*/
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.content {
  flex: 1;
  max-width: 750px;
  animation: slideInLeft 1s ease;
  margin-top: 100px;
  padding-top: 30px;
  padding-bottom: 60px;
  /*background-color: #00AEEF;*/
}

.content h1 span {
  font-size: 48px;
  font-weight: bold;
  color: #001F54;
  display: inline-block;
}
.content h1 strong {
  color: #329FFF;
  font-size: 30px;
  display: inline-block;
  margin-top: 10px;
}
.text-p{
  font-family: 'Nunito', sans-serif;
}

.content p {
  margin: 20px 0;
  font-size: 16px;
  color: #1b2665;
  
  line-height: 1.6;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.order-btn-link {
  background: linear-gradient(135deg, #329FFF, #1D8AF5);
  color: #fff;
  border: none;
  /*margin-top: 300px;*/
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(50, 159, 255, 0.25);
  transition: all 0.35s ease;
  text-decoration: none;
  /*display: inline-block;*/
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-btn-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(50, 159, 255, 0.4);
}

.read-btn-link {
  background: #ffffff;
margin: 10px;
  color: #329FFF;
  border: 2px solid #329FFF;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  text-decoration: none;
  /*display: inline-block;*/
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-btn-link:hover {
  background: #f0faff;
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(50, 159, 255, 0.2);
}


.order-btn,
.read-btn {
  background: #329FFF;
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.order-btn:hover,
.read-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(50, 159, 255, 0.3);
}

.order-btn::after,
.read-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.order-btn:focus:not(:active)::after,
.read-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

.read-btn {
  background: #fff;
  color: #329FFF;
  border: 1px solid #329FFF;
}

.play-btn {
  width: 50px;
  height: 50px;
  margin-top: -10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #d1eaff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(50, 159, 255, 0.4), 0 0 0 5px rgba(50, 159, 255, 0.1);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
  /* animation: float 3s ease-in-out infinite; <-- removed this */
}

.play-btn:hover {
  transform: scale(1.15) rotate(2deg);
  box-shadow: 0 12px 30px rgba(50, 159, 255, 0.5), 0 0 0 7px rgba(50, 159, 255, 0.15);
}

.play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(50, 159, 255, 0.2);
  animation: pulse 2s infinite;
  z-index: -1;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #329FFF;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


small {
  font-size: 12px;
  color: #666;
  margin-left: -10px;
}

.image {
  animation: slideInRight 1s ease, float 3s ease-in-out infinite;
}

.image img {
  width: 300px;
  max-height: 650px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Water droplets animation */
.water-droplets {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

  .droplet {
    position: absolute;
    background: rgba(50, 159, 255, 0.4);
    border-radius: 50%;
    animation: fall linear infinite;
  }
/*.water-droplets {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}*/

/*.droplet {
  position: absolute;
  background: rgba(50, 159, 255, 0.3);
  border-radius: 50% / 60%;
  filter: drop-shadow(0 0 2px rgba(150, 200, 255, 0.7));
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0.4;
  transform-origin: center;
}*/

@keyframes fall {
  0% {
    transform: translateY(-20px) scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50vh) scaleY(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) scaleY(0.8);
    opacity: 0;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding-left: 100px;
    padding-right: 100px;
  }

  .content h1 span {
    font-size: 40px;
  }

  .content h1 strong {
    font-size: 26px;
  }

  .image img {
    max-height: 500px;
  }
  .div-btns{
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    padding: 60px 40px 40px;
  }
  .div-btns{
    justify-content: center;
  }

  .hero-img{
    width: 300px;
    height: 70px;
  }
  .content {
    max-width: 100%;
    padding: 20px 0;
  }

  .content h1 span {
    font-size: 36px;
  }

  .content h1 strong {
    font-size: 24px;
  }

  .buttons {
    justify-content: center;
  }

  .image img {
    max-height: 400px;
    width: 100%;
    height: auto;
  }
  .image{
    max-width: 200px  
  }
}

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

  .content h1 span {
    font-size: 32px;
  }

  .content h1 strong {
    font-size: 22px;
  }

  .content p {
    font-size: 14px;
  }

  .order-btn-link,
  .read-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 15px;
  }

  .content h1 span {
    font-size: 28px;
  }

  .content h1 strong {
    font-size: 20px;
  }

  .content p {
    font-size: 13px;
  }

  .order-btn-link,
  .read-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .image img {
    max-height: 300px;
  }
}


/* Composition Section */
.composition-section {
  padding-top: 200px;
  text-align: center;
  padding-right:  200px;
  padding-left: 200px;
  /*background: url('puresip-logo-bgremoved.png') no-repeat center center/cover;*/
  position: relative;
}

.composition-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 251, 255, 0.9);
}

  .composition-section h2 {
  font-size: 46px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color:  #329fff;;
}
.composition-section h2 span {
  color: #001F54;}

.subtitle { 
  margin-top: 20px;
  font-size: 14px;
  margin-bottom: 50px;
  color: #666;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.composition-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.left, .right {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 40px;
 
}

.center-img {
  width: 250px;
  position: relative;
}
.center-img img {
  /*width: 100%;*/
  /*border-radius: 50%;*/
  animation: slideInRight 1s ease, float 3s ease-in-out infinite;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}

.item {
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.item .value {
  color: #329fff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.item .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {
  .composition-container {
    flex-direction: column;
    align-items: center;
  }
  .left, .right {
    width: 100%;
    align-items: center;
  }
  .item {
    text-align: center;
    max-width: 400px;
  }
  .center-img {
    margin-right: 90px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
/* Medium Devices (Tablets) */
@media (max-width: 768px) {
  .composition-section {
    padding: 120px 40px 60px;
  }

  .composition-section h2 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .item {
    max-width: 100%;
    padding: 12px;
  }

  .item h4 {
    font-size: 15px;
  }

  .item .value {
    font-size: 14px;
  }

  .item .desc {
    font-size: 13px;
  }

  .center-img {
    width: 200px;
  }
}

/* Small Devices (Phones) */
@media (max-width: 480px) {
  .composition-section {
    padding: 100px 20px 40px;
  }

  .composition-section h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .center-img {
    width: 150px;
  }

  .item {
    padding: 10px;
    margin-bottom: 20px;
  }

  .item h4 {
    font-size: 14px;
  }

  .item .value {
    font-size: 13px;
  }

  .item .desc {
    font-size: 12px;
  }
}


/* Products Section */
.products-section {
  text-align: center;
  padding: 100px 40px;
  background: #f6fbff;
}

.products-section h2 {
  font-size: 46px;
  font-weight: 600;
}
.products-section h2 span {
  color: #329fff;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 16px;
  margin: 10px 0 6px;
  color: #111;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 6px;
}

.price {
  font-size: 15px;
  margin-bottom: 12px;
}
.price del {
  color: #999;
  margin-right: 6px;
}
.price span {
  color: #111;
  font-weight: bold;
}

.product-card button {
  border: 1px solid #329fff;
  background: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: #329fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.product-card button:hover {
  background: #329fff;
  color: white;
  transform: translateY(-2px);
}

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4757;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}

.all-products-btn {
  margin-top: 40px;
}
.all-products-btn a {
  display: inline-block;
  background: #329fff;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(50, 159, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.all-products-btn a:hover {
  background: #267edb;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(50, 159, 255, 0.4);
}

.all-products-btn a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.all-products-btn a:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

/* Tablets & Mobile: Two products per row */
@media (max-width: 992px) {
  .products-section {
    padding: 80px 30px;
  }

  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .product-card {
    width: calc(50% - 20px); /* Two cards per row */
  }

  .products-section h2 {
    font-size: 28px;
  }
}

/* Mobile Phones: Still 2 per row */
@media (max-width: 600px) {
  .products-section {
    padding: 60px 20px;
  }

  .product-grid {
    gap: 15px;
  }

  .product-card {
    width: calc(50% - 15px); /* Keep 2 cards per row on small phones */
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card .price {
    font-size: 14px;
  }

  .product-card button {
    font-size: 14px;
    padding: 10px;
  }

  .badge {
    font-size: 11px;
    padding: 3px 8px;
  }

  .all-products-btn a {
    padding: 10px 25px;
    font-size: 14px;
  }

  .products-section h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 13px;
  }
}

/* Our Story Section */
.our-story {
  background: linear-gradient(135deg, #f6fbff 0%, #e6f4ff 100%);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.our-story::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: url('https://i.ibb.co/4W2F6P0/water-bg.png') no-repeat;
  opacity: 0.1;
  transform: rotate(45deg);
}

.our-story h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.our-story h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #329FFF;
}
.our-story h2 span {
  color: #00aef0;
}

.our-story p {
  color: #333;
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.feature {
  background: white;
  border-radius: 50%;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 174, 240, 0.1);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 174, 240, 0.2);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(50, 159, 255, 0.1) 0%, rgba(50, 159, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover::before {
  opacity: 1;
}

.feature img {
  width: 40px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.feature:hover img {
  transform: scale(1.1);
}

.feature h4 {
  font-size: 12px;
  color: #0a0a23;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  background: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.ibb.co/4W2F6P0/water-bg.png') no-repeat;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.black-text {
  color: #001F54;
}

.blue-text {
  color: #329FFF;
}

.subtitle {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.slide {
  display: none;
  animation: fade 0.5s ease-in-out;
}
.slide.active {
  display: block;
}

.testimonial-card {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  margin: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonial-left {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.testimonial-left h3 {
  font-size: 22px;
  color: #001F54;
  margin-bottom: 5px;
}

.role {
  color: #329FFF;
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.quote-box {
  position: relative;
}

.quote-box::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 60px;
  color: rgba(50, 159, 255, 0.1);
  font-family: serif;
  line-height: 1;
}

.quote-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-right {
  width: 200px;
  background: #f6fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.testimonial-right img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #329FFF;
  transform: scale(1.2);
}

/* Counter Section */
.counter-section {
  background: linear-gradient(135deg, #329FFF 0%, #0066CC 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.counter-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.counter-box {
  text-align: center; 
}

.counter {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.counter-label {
  font-size: 16px;
  opacity: 0.9;
}
/* Tablets */
@media (max-width: 992px) {
  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .testimonial-left {
    padding: 20px;
    text-align: center;
  }

  .testimonial-right {
    width: 100%;
    padding: 20px 0;
    background: transparent;
  }

  .testimonial-right img {
    width: 120px;
    height: 120px;
  }

  .section-title {
    font-size: 28px;
  }

  .quote-box::before {
    left: 5px;
    top: -10px;
    font-size: 40px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .testimonial-card {
    margin: 0 10px;
  }

  .testimonial-left h3 {
    font-size: 20px;
  }

  .quote-box p {
    font-size: 14px;
  }

  .slider-controls {
    margin-top: 20px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 24px;
  }
}


/* Footer */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
}
.footer {
  background-color: #0f0c3e;
  color: white;
  padding-top: 150px; 
  position: relative;
  overflow: hidden;
}
.f-bg-wave {
  fill: white; /* Exact same as .footer background */
}
.footer-map {
  width: 25%;
  min-width: 250px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

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

.footer-column h4 {
  border-left: 3px solid #157efb;
  padding-left: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10px;
  width: 30px;
  height: 2px;
  background: #329FFF;
}

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

.footer-column ul li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(5px);
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #329FFF;
}

.footer-column form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-column input[type="email"] {
  padding: 12px 10px;
  border: none;
  border-radius: 25px;
  width: 100%;
  font-size: 14px;
  outline: none;
}

.footer-column button {
  background-color: #329FFF;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer-column button:hover {
  background-color: #267edb;
  transform: translateY(-2px);
}

.footer-social {
  margin-top: 10px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #329FFF;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
}

/* Tablet & Mobile (up to 992px) */
@media (max-width: 992px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0x;
    text-align: center;
    height: 600px;
  }

  .footer-column {
    width: 100%;
    max-width: 480px;
    padding: 0 10px;
  }

  /* Hide the first column (e.g., Menu or Links) */
  .footer-column:first-child {
    display: none;
  }

  /* Newsletter Form: stack elements and adjust spacing */
  .footer-column form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-column input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 10px 10px;
    font-size: 14px;
  }

  .footer-column button {
    width: 100%;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 14px;
    margin-top: 8px;
  }

  /* Hide or simplify the map on mobile */
  .footer-container iframe {
    /*display: none;*/
  width: 300px;
  }

  .footer-bottom {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
  }

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

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 14px;
    line-height: 2.9;

  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(50, 159, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(50, 159, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(50, 159, 255, 0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

@keyframes fade {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fall {
  0% {
    top: -10%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .header {
    padding: px 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  nav ul {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
  
  .hero {
    flex-direction: column;
    padding: 150px 30px 60px;
    text-align: center;
  }
  
  .content {
    margin-bottom: 40px;
  }
  
  .buttons {
    justify-content: center;
  }
  
  .testimonial-card {
    flex-direction: column;
  }
  
  .testimonial-right {
    width: 100%;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .info, .icons {
    display: none;
  }
  
  .composition-section, .products-section, .our-story, .testimonials {
    padding: 60px 20px;
  }
  
  .counter-wrapper {
    gap: 40px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: px;
  }
  
  nav ul {
    font-size: 12px;
    gap: 10px;
  }
  
  .hero {
    padding: 120px 15px 40px;
  }
  
  .content h1 span {
    font-size: 32px;
  }
  
  .content h1 strong {
    font-size: 28px;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  small {
    margin-left: 0;
    margin-top: 10px;
    display: block;
    text-align: center;
  }
  
  .counter-wrapper {
    gap: 20px;
  }
  
  .counter {
    font-size: 36px;
  }
}
/*contact section*/
.contact-section {
  padding: 20px 200px;
  background: #f1faff;
  color: #001F54;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.contact-section h2 span {
  color: #00AEEF;
}

.contact-section .subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #4b5e7a;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ccd9e4;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  background-color: #fff;
  color: #001F54;
}

.input-group textarea {
  resize: none;
}

.submit-btn {
  background: #00AEEF;
  color: white;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #0077b6;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #001f54;
}

.contact-info p {
  margin: 10px 0;
  font-size: 15px;
  color: #374c68;
}
/* Tablets (width up to 992px) */
@media (max-width: 992px) {
  .contact-section {
    padding: 40px 60px;
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    width: 100%;
    text-align: center;
  }

  .contact-info {
    margin-top: 30px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .submit-btn {
    align-self: center;
  }
}

/* Mobile Devices (width up to 600px) */
@media (max-width: 600px) {
  .contact-section {
    padding: 30px 20px;
  }

  .contact-section h2 {
    font-size: 28px;
  }

  .contact-section .subtitle {
    font-size: 14px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 13px;
    padding: 12px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  .contact-info h3 {
    font-size: 18px;
  }

  .contact-info p {
    font-size: 13px;
  }
}
