:root {
  --primary-color: #3498db;
  --secondary-color: #fff;
  --text-color: #333;
  --background-color: #ffffff;
  --heading-color: #000;
  --button-hover-bg: #fff;
  --button-hover-color: #3498db;
  --font-large: 3rem;
  --font-medium: 1.5rem;
  --font-small: 1rem;
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 32px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* cursor: url('cricket-bat-cricket-ball-3D-custom-cursor.cur'), default; */

}

body,
html {
  font-family: 'Poppins', system-ui;
  font-weight: 400;
  /* Regular */
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}


/* common container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-medium);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 10px;
  /* Adjusted padding for more space */
  background-color: var(--secondary-color);
  position: sticky;
  z-index: 1001;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-bottom: 1px solid #000000;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  gap: 15px;
  /* Increased gap between items */
  opacity: 1;
  font-size: 21px;
  font-weight: 300;
  line-height: 62.5px;
  text-align: left;
}

.navbar-brand {
  font-size: var(--font-medium);
  font-weight: bold;
  color: var(--text-color);
  text-decoration: none;
}

.navbar-logo {
  width: 150px;
  height: auto;
  margin-left: 25px;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  margin: 0 var(--spacing-medium);
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1002;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  background: var(--text-color);
  height: 2px;
  width: 30px;
  transition: all 0.3s ease-in-out;
  position: absolute;
}

.menu-toggle span::before {
  transform: translateY(-10px);
}

.menu-toggle span::after {
  transform: translateY(10px);
}

.menu-toggle.open span {
  background: transparent;
}

.menu-toggle.open span::before {
  transform: rotate(45deg);
}

.menu-toggle.open span::after {
  transform: rotate(-45deg);
}

.nav-container {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px 5px rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 1000;
}


.nav-container.open {
  right: 0;
}

.nav-items {
  padding: 80px 40px 0;
}

.nav-items a {
  display: block;
  padding: var(--spacing-medium) 0;
  text-decoration: none;
  color: var(--text-color);
  border-bottom: 1px solid #eee;
  font-size: var(--font-medium);
  transition: color 0.3s ease;
}

.nav-items a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  justify-content: center;
  padding-bottom: var(--spacing-large);
}

.social-icons a {
  margin: 0 var(--spacing-small);
  color: var(--text-color);
  text-decoration: none;
  font-size: var(--font-large);
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.navbar-logo {
  width: 150px;
  height: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-logo {
    display: none;
  }

  .navbar-brand {
    display: block;
    background-image: url('../images/logo1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 100px;
    height: 50px;
    padding: 15px;
    margin: 5px;
  }

  .nav-container {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
    padding: 10px;
  }

  .nav-desktop a {
    padding: 0 25px;
  }

  .nav-container {
    display: none;
    padding: 15px;
  }
}



/* Section 1 - Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(6.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  padding: 0;
}

.hero-title .begin-your {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.hero-title .journey {
  color: transparent;
  -webkit-text-stroke: 2px var(--heading-color);
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}

.hero-title:hover .begin-your {
  color: transparent;
  -webkit-text-stroke: 2px var(--heading-color);
}

.hero-title:hover .journey {
  color: var(--heading-color);
  -webkit-text-stroke: 0;
}

.hero-card {
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 16 / 9;
  border-radius: 25px;
  background-image: url('../images/FirstPageillustration1.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: -70px;
}

.explore-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: #3498db;
  border: none;
  padding: 10px 50px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background-color: #2980b9;
  color: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 0;
    margin: 0;
    height: 100vh;
    justify-content: flex-start;/
  }

  .hero-content {
    padding-top: 20px;
    /* Add some top padding */
  }

  .hero-title {
    margin-top: 0;
    margin-bottom: 20px;
    /* Add some space below the title */
    font-size: clamp(2.0rem, 4vw, 2.5rem);
  }

  .hero-card {
    margin-top: -10%;
    /* Move the image upward */
    height: 75vh;
    background-image: url('../images/round_mobile_image.png');
    background-size: contain;
    background-position: center top;
    border-radius: 20px;
    padding: 0;
    margin: 0 20px;
  }

  .explore-btn {
    bottom: 10%;
  }
}

/* Additional adjustment for very tall mobile screens */
@media (max-width: 768px) and (min-height: 800px) {
  .hero-card {
    height: 70vh;
    margin-top: -5%;
  }
}

/* Secttion 2 - Intro */
.intro-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

/* .container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
} */
.intro-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #333;
}

.vision-who-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  margin-top: 40px;
}

.vision-box, .who-box {
  width: 100%;
  background-color: #F5F5F5;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.vision-box>h2, .who-box>h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.vision-box>h2 span, .who-box>h2 span {
  font-weight: normal;
  color: #333;
}

.vision-box p, .who-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .vision-box, .who-box {
    width: calc(50% - 15px);
  }

  .testimonials-container {
    padding: 0 60px;
  }

  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}

/* Section 3- Service Section */

.main-container {
  width: 60%;
  margin: 1px 20%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
}

/* Text area styling */
.text-area {
  text-align: center;
}


.service-feature>h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin: 10px 0;
}

.service-feature>p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .main-container {
    width: 80%;
    /* Increase width for mobile */
    margin: 10%;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-feature>h2 {
    font-size: 1.25rem;
  }

  .service-feature>p {
    font-size: 0.9rem;
  }
}

/* section 4 - About Section */
.about-section {
  background: linear-gradient(to top, #69d1ff, #2a72c5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: var(--spacing-large) 0;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px;
  flex-wrap: wrap;
}

.left-content {
  position: relative;
  max-width: 50%;
  min-width: 300px;
  text-align: center;
}

.left-content h1 {
  font-size: 7.5rem;
  margin: 0;
  color: white;
  line-height: 1.2;
}

.left-content h1 span {
  display: inline;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

.right-content {
  max-width: 45%;
  margin-left: 20px;
  text-align: left;
}

.right-content h2 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-medium);
}

.right-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.image-section {
  position: absolute;
  bottom: -10px;
  left: 25%;
  z-index: 1;
}

.image-section img {
  max-width: 300px;
  height: auto;
  transition: transform 0.5s ease;
}

.image-section img:hover {
  transform: scale(1.1);
}

.stars {
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 20px;
  color: white;
}

.star {
  font-size: 24px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.star:hover {
  color: yellow;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .left-content, .right-content {
    max-width: 100%;
    margin-left: 0;
  }

  .left-content h1 {
    font-size: 5rem;
  }

  .right-content {
    margin-top: 20px;
  }

  .right-content h2 {
    font-size: 2rem;
  }

  .right-content p {
    font-size: 1.1rem;
  }

  .image-section {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 20px auto;
  }

  .image-section img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .left-content h1 {
    font-size: 3.5rem;
  }

  .right-content h2 {
    font-size: 1.8rem;
  }

  .right-content p {
    font-size: 1rem;
  }

  .image-section img {
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 3.5rem;
    /* Adjust for horizontal display on mobile */
    white-space: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .left-content h1 span {
    display: inline;
  }

  .right-content h2 {
    font-size: 1.5rem;
  }

  .right-content p {
    font-size: 0.9rem;
  }

  .image-section img {
    max-width: 150px;
  }

  .stars {
    top: 5%;
    font-size: 16px;
  }

  .star {
    font-size: 18px;
  }
}

/* section 5 - app section  */
.app-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-container {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  width: 80vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;

}

.app-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-right: 80px;
  margin-left: 80px;
}

.app-section:first-of-type .app-image img {
  margin-right: 40px;
}

.app-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 350px;
  margin-left: 100px;
  margin-right: 100px;
}

.app-title {
  color: #0099cc;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 1px;
  display: flex;
  align-items: center;
}

.app-title img {
  width: 50px;
  height: 50px;
  margin-left: 10px;
}

.app-subtitle {
  font-size: 50px;
  font-weight: bold;
  color: #0099cc;
}

.app-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-badges {
  display: flex;
  flex-direction: column;
}

.store-badges a {
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 16px;
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.store-badges a:hover {
  background-color: #333;
}

.store-badges i {
  margin-right: 10px;
  font-size: 20px;
}

/* Responsive styling */
@media (max-width: 1200px) {
  .app-container {
    width: 90vw;
    padding: 30px;
  }

  .app-image img {
    max-width: 250px;
    margin-right: 40px;
    margin-left: 40px;
  }

  .app-details {
    margin-left: 60px;
    margin-right: 60px;
  }

  .app-title, .app-subtitle {
    font-size: 40px;
  }
}

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

  .app-image img {
    margin: 30px 0 0 0;
  }

  .app-details {
    margin: 0;
    max-width: 100%;
    order: -1;
    /* This moves the text above the image */
  }

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

  .store-badges {
    flex-direction: row;
    justify-content: center;
  }

  .store-badges a {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .app-container {
    width: 95vw;
    padding: 20px;
  }

  .app-title, .app-subtitle {
    font-size: 15px;
  }

  .app-description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .app-title, .app-subtitle {
    font-size: 30px;
  }

  .app-image img {
    max-width: 200px;
  }

  .store-badges {
    flex-direction: column;
  }

  .store-badges a {
    margin: 10px 0;
    width: 100%;
  }
}


/* Section 6 - Sports Offered Section */
.sports-section {
  padding: var(--spacing-large) 0;
  background-color: var(--secondary-color);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: var(--spacing-large);
}

.section-title span {
  font-weight: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
}

.clients-section {
  overflow: hidden;
  background-color: #ffffff;
  padding: 30px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logos-container {
  overflow: hidden;
  width: 100%;
}

.logos-row {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo {
  flex: 0 0 auto;
  width: calc(12% - 8px);
  /* Adjusted for 7 logos per row */
  aspect-ratio: 1 / 1;
  margin: 0 8px;
  padding: 4px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f8f8;
  border-radius: 15px;
}

.logo-image-container {
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.logo img {
  width: 70%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
  background: #96C9F4;
  border-radius: 10px;
}

.logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  display: block;
  text-align: center;
  margin-top: -12px;
  font-weight: bold;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logos-row {
  width: 300%;
}

.logos-row .logo {
  flex-shrink: 0;
  /* Prevent logos from shrinking */
}

@media (max-width: 1200px) {
  .logos-row {
    animation-duration: 30s;
    /* Keep laptop speed consistent */
  }
}

@media (max-width: 992px) {
  .logos-row {
    animation-duration: 25s;
    /* Faster for tablets */
  }
}

@media (max-width: 768px) {
  .logos-row {
    animation-duration: 20s;
  }
}

@media (max-width: 576px) {

  .logo {
    width: calc(25% - 8px);
    aspect-ratio: 1 / 1;
    margin: 0 4px;
  }

  /* Adjust animation duration for mobile speed */
  .logos-row {
    animation-duration: 15s;
  }

  .logo img {
    width: 80%;
    height: 80%;
  }

  .logo span {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
}

/* Section 7 - Testimonial  */
/*WHAT OUR CLIENT SAYS  */
.testimonials-section {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.testimonials-container>h1 {
  color: #007bff;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.testimonial {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  height: auto;
  min-height: 220px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.testimonial h3 {
  color: #333;
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.testimonial p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

.author {
  font-weight: bold;
  text-align: right;
  color: #007bff;
  margin-top: 20px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-arrow:hover {
  background: #0056b3;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-arrow:before {
  content: '';
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
}

.slick-prev:before {
  transform: rotate(135deg);
  margin-left: 5px;
}

.slick-next:before {
  transform: rotate(-45deg);
  margin-right: 5px;
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #007bff;
}


/* section 8 - Contact Section */
.contact-section {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section>a {
  color: #4a5568;
  text-decoration: none;
  font-size: 16px;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.contact-section>a:hover {
  color: #3182ce;
}

.contact-container {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
}

.form-container {
  max-width: 50%;
  margin-right: 20px;
}

.form-container>h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.form-container>h1 .highlight {
  color: #69d1ff;
}

.form-container>p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a9a9a9;
  opacity: 1;
}

textarea {
  height: 100px;
  resize: none;
  color: #000;
}

.submit-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.submit-btn:hover {
  background-color: #0056b3;
}

.image2-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration {
  max-width: 100%;
  height: auto;
}

.logo-container {
  display: flex;
  justify-content: center;
}

.logo-container img {
  max-width: 300px;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .form-container {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .image2-container {
    width: 100%;
  }

  .illustration {
    max-width: 100%;
  }

  .logo-container img {
    max-width: 100%;
  }
}

.message {
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  min-width: 300px;
  max-width: 90%;
}

.message.visible {
  top: 20px;
  opacity: 1;
  visibility: visible;
}

.message i {
  font-size: 24px;
  margin-right: 15px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border-left: 5px solid #28a745;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  /* border-left: 5px solid #dc3545; */
}

.warning {
  background-color: #fff3cd;
  color: #856404;
  border-left: 5px solid #ffc107;
}


/* Section 9 - Logo Section  */
.logo-container {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
}

.logo1 {
  max-width: 100%;
  height: auto;
}

.logo2 {
  position: absolute;
  right: 35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 150%;
  height: auto;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .logo-container {
    height: 150px;
  }

  .logo2 {
    right: 20rem;
    width: 120%;
  }
}

@media (max-width: 768px) {
  .logo-container {
    height: 120px;
    flex-direction: column;
    align-items: center;
  }

  .logo1 {
    max-width: 80%;
  }

  .logo2 {
    position: static;
    margin-top: 100px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-container {
    height: auto;
    padding: 10px;
  }

  .logo1 {
    max-width: 70%;
  }

  .logo2 {
    width: 80%;
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .form-container {
    max-width: 100%;
    margin-right: 0;
  }

  .illustration {
    margin-top: 20px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .form-container h1 {
    font-size: 2rem;
  }

  .illustration {
    max-width: 250px;
  }

  .logo-container img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .form-container h1 {
    font-size: 1.8rem;
  }

  .illustration {
    max-width: 200px;
  }

  .logo-container img {
    max-width: 200px;
  }
}


/* Footer */
.footer {
  background-color: #00a0e3;
  color: white;
  padding: 60px 0 40px;
  position: relative;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
  color: white;
}

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

.social-icons a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d236a1;
}

.dotted-image {
  max-width: 100%;
  height: 30vh;
  margin: 20px 0;
}

.footer-bottom {
  /* background-color: #333; Dark background for contrast */
  color: #fff;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  position: relative;
}

.footer-bottom p {
  margin: 0;
}