* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

body {
  font-family: "Georgia, serif";
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  

background-image: url(../img/.png);

  justify-content: center;
  align-items: center;

  height: 100vh;
}


/* Marquee Container */
.marquee-container {
  background: linear-gradient(90deg, #f39c12, #d35400);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 15s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  padding: 0 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.marquee-item i {
  margin-right: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Navbar Styling */
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  /* Light blur effect */
  backdrop-filter: blur(10px);
  /* Blur effect */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 200px;
  height: auto;
  margin-right: 10px;
  border-radius: 50%;
}

.navbar-logo span {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  margin: 0 15px;
  font-size:22px;
  font-family: "Georgia, serif";
  font-weight: bold;
  color: #E75F2c;

  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-menu li:hover {
  color: #11a198;

}

/* Dropdown Styling */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 10px 20px;
  white-space: nowrap;
  color: #333;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #E75F2c;
  color: white;
}

/* Social Media Icons Section */
.social-icons {
  display: flex;
  gap: 15px;
  margin-right: 50px;
}

.social-icons a {
  color: #333;
  font-size: 25px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f39c12;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    width: 200px;
    padding: 10px 0;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    margin: 10px 0;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
  }
}

/*  icons design */

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.icon {

  text-decoration: none;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 14px;
  /* background-color: hsla(209 20% 70% / 20%); */
  /* For dark theme */
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.icon>i {
  color: #11a198;
  font-size: 1.5rem;
  transition: all 0.2s;
}

.icon:hover>i {
  scale: 1.2;
  color: #f1f1f1;
}

.icon:before {
  background: var(--color);
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  left: -110%;
  top: 80%;
  transform: rotate(45deg);
}

.icon:hover:before {
  animation: slide 0.7s forwards;
}

@keyframes slide {
  50% {
    left: 10%;
    top: -40%;
  }

  100% {
    left: -15%;
    top: -15%;
  }
}

.icon:has(.fa-instagram) {
  --color: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.icon:has(.fa-linkedin-in) {
  --color: #0077b5;
}

.icon:has(.fa-youtube) {
  --color: #ff0000;
}

.icon:has(.fa-facebook) {
  --color: #136293;
}

.icon:has(.fa-github) {
  --color: #333;
}

/*  icon */

.container {
 background-image: url(../img/.png);
 background-size: 1900px 500px;

  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 500px;

  align-items: center;
  gap: 50px;

}
.left-content {
  width: 60%;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeIn 1s forwards;
  text-align: center;

}

.left-content h1 {
  font-size: 3rem;
  color: #11a198;
  margin-bottom: 15px;
  margin: auto;
}

.left-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f5efec;
  max-width: 90%;
  margin: auto;
}
.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.right-content {
  width: 40%;
  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 130px;
  height: 130px;
  z-index: 10;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.96);
}

.orbit {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  animation: rotate 8s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit img {
  position: absolute;
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease-in-out;
  filter:drop-shadow(2px 2px 5px white); 
}

.orbit img:hover {
  transform: scale(1.2);
}

.orbit img:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit img:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orbit img:nth-child(3) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.orbit img:nth-child(4) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.orbit img:nth-child(5) {
  top: 10%;
  left: 10%;
}

.orbit img:nth-child(6) {
  bottom: 10%;
  right: 10%;
}

.orbit img:nth-child(7) {
  top: 10%;
  right: 10%;
}

.orbit img:nth-child(8) {
  bottom: 10%;
  left: 10%;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: center;
    background-size: cover;
    height: 400px;
    padding: 50px 15px;
  }

  .left-content {
    width: 100%;
    text-align: center;
    animation: fadeIn 1s forwards;
  }

  .left-content h1 {
    font-size: 2.5rem;
  }

  .left-content p {
    font-size: 1.1rem;
    max-width: 95%;
    display: none;
  }

  .right-content {
    width: 100%;
    margin-top: 20px;
  }

  .orbit {
    width: 300px;
    height: 300px;
  }

  .orbit img {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 20px 10px;
    text-align: center;
  }

  .left-content h1 {
    font-size: 2rem;
  }

  .left-content p {
    font-size: 1rem;
    line-height: 1.6;
    display: none;
  }

  .wrapper {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .icon > i {
    font-size: 1.3rem;
  }

  .orbit {
    width: 250px;
    height: 250px;
  }

  .orbit img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 480px) {
  .left-content h1 {
    font-size: 1.8rem;
  }

  .left-content p {
    font-size: 0.95rem;
    display: none;
  }

  .icon {
    width: 1.6rem;
    height: 1.6rem;
  }

  .icon > i {
    font-size: 1.1rem;
  }

  .orbit {
    width: 250px;
    height: 250px;
  }

  .orbit img {
    width: 35px;
    height: 35px;
  }
}
/* heading */
.heading-container {
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin: 15px;
}

.heading {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(0, 0, 108);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  /* border: 4px solid rgb(0, 0, 108); */
  padding: 12px 20px;
}

.underline {
  width: 50%;
  height: 6px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  position: absolute;
  bottom: -10px;
  left: 24%;
  border-radius: 10px;
  transform: scaleX(0.1);
  transform-origin: center;
  text-align: center;
  
  transition: transform 0.4s ease-in-out;
}

.heading-container:hover .underline {
  transform: scaleX(1);
}/* about Us */

.container1{
   display: flex;
   width: 85vw;
  align-items: center;
   margin: auto;
   background-color: white;
}
.left-cont{
  width: 60vw;
  margin: 30px;
}
.dynamic-heading{
  font-size: 2.5rem;
  color: #d35400;
  text-align: center;
}
.dynamic-paragraph{
  font-size: 2.3rem;
  color: #11a198;
  text-align: center;
}
span{
  font-size: 2.3rem;
  color:#11a198;
  text-shadow: 2px 2px 4px #000000;
}


.text-dark{
  color: rgb(0, 0, 108);;
  margin: 10px;
  font-size: large;
  text-align: justify;
}
.explore{
  font-size: 1rem;
  background-color: #11a198;
  color: white;
  justify-items: center;
  padding: 10px;
  border: none;
  border-radius: 20px;
  margin: auto;
}
/* about  Images  */

.about-image {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 15px;
  box-shadow: 2px 2px 5px black;
  transition: transform 0.4s ease-in-out;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }

  .left-cont {
    width: 100%;
    margin: 10px;
    text-align: center;
  }

  .dynamic-heading,
  .dynamic-paragraph,
  span {
    font-size: 1.8rem;
  }

  .text-dark {
    font-size: 0.95rem;
    text-align: center;
    margin: 5px;
  }

  .explore {
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .about-image {
    max-width: 100%;
  }
}


/* numbers */
.counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: transparent;
}
.counter-box {
  width: 250px;
  height: 150px;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}
.counter-box:hover {
  transform: translateY(-10px);
}
.icon {
  font-size: 35px;
  margin-bottom: 10px;
}
.counter {
  font-size: 32px;
  font-weight: bold;
}
.text {
  font-size: 18px;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Different Background Colors */
.orange { background: #E75F2c; }
.green { background: #11a198; }
.blue { background: #E75F2c; }
.purple { background: #11a198; }

@media (max-width: 768px) {
  .counter-container {
      flex-direction: column;
      gap: 15px;
  }
}

/* card */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 90%;
  margin: auto;
  background-color: transparent;
  max-width: 1200px;
}

.card {
  background-color: white;
  
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.card-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.card-button:hover {
  background: linear-gradient(90deg, #114ba1, #11a198);
}


/* team member  */


.team-container {
  display: flex;
  
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.team-card {
  
  background: linear-gradient(rgb(239, 212, 212),rgb(198, 198, 240), rgb(196, 243, 200));
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 220px;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.team-card img {
  width: a;
  
  border-radius: 50%;
  margin-bottom: 10px;
}

.team-card h2 {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}

.team-card p {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
  margin: auto;

  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  text-decoration: none;
  font-size: 1.4em;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease;
}

/* Facebook */
.fb {
  background-color: #1877f2;
}

/* Instagram */
.insta {
  background-color: #e4405f;
}

/* LinkedIn */
.linkedin {
  background-color: #0a66c2;
}

/* Hover Effect */
.social-icons a:hover {
  transform: scale(1.1);
}


/* our clint section  */
.clients-section {
  padding: 50px 20px;
  background: #fff;
}
.clients-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}
.swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
.swiper-slide img {
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}
.swiper-slide img:hover {
  transform: scale(1.1);
}
.swiper-button-next, .swiper-button-prev {
  color: #007bff;
}
.swiper-pagination-bullet-active {
  background: #007bff;
}


.testimonial-container {
  width: 50%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}
.stars {
  color: gold;
}
.testimonial {
  display: none;
}
.testimonial.active {
  display: block;
}
.buttons {
  margin-top: 20px;
}
.buttons button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin: 5px;
  border-radius: 5px;
}
/* testimanials */

.containers {
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  bottom: -10px;
  left: 25%;
  border-radius: 10px;
}

.section-header p {
  color: #718096;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #4158d0, #c850c0);
  top: 0;
  left: 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
}

.client-info {
  flex: 1;
}

.client-info h3 {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 5px;
}

.client-info p {
  font-size: 14px;
  color: #805ad5;
  font-weight: 600;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: rgba(203, 213, 224, 0.3);
  font-family: Georgia, serif;
}

.testimonial-body {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
}

.rating {
  display: flex;
  margin-bottom: 15px;
}

.star {
  color: #ffb400;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #edf2f7;
}

.company-logo {
  height: 30px;
  opacity: 0.7;
}

.date {
  font-size: 14px;
  color: #a0aec0;
}

.card-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  opacity: 0.03;
  z-index: 0;
}

.controls {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.control-btn {
  background: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: linear-gradient(135deg, #4158d0, #c850c0);
}

.control-btn:hover svg {
  fill: white;
}

.control-btn svg {
  width: 20px;
  height: 20px;
  fill: #4158d0;
  transition: fill 0.3s ease;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}


/* footer */
.content {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.footer {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Wave effect at top of footer */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.footer-wave .shape-fill {
  fill: #f5f5f5;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #fff;
  border-radius: 20px;
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-links li i {
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: white;
  transform: translateY(-5px);
}

.social-icon:hover svg {
  fill: #1a2a6c;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: fill 0.3s ease;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact li i {
  margin-right: 15px;
  margin-top: 5px;
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

.footer-newsletter input {
  padding: 12px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px 0 0 30px;
  color: white;
  flex-grow: 1;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
  padding: 0 20px;
  background: white;
  border: none;
  border-radius: 0 30px 30px 0;
  color: #1a2a6c;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: #fdbb2d;
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.footer-bottom a {
  color: #fdbb2d;
  text-decoration: none;
}

/* Background elements */
.footer-bg-element {
  position: absolute;
  opacity: 0.05;
  z-index: 1;
}

.footer-bg-element.circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: white;
  top: -150px;
  right: -50px;
}

.footer-bg-element.circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: white;
  bottom: -100px;
  left: 10%;
}

.footer-bg-element.circle-3 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  top: 30%;
  left: 20%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-wave svg {
    height: 30px;
  }
}