@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

:root {
  --color: rgb(255, 224, 232);
  --white: #fff;
  --black: #333;
  --gray: #f5f5f5;
}
/* Fixed Navbar */
nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  position: sticky;
  display: flex;
  padding: 10px 2%;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Logo Styling */
nav img {
  width: 120px;
}

/* Navigation Links */
.nav-links {
  text-align: right;
  color: black;
}

.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}

.nav-links ul li a {
  color: black;
  text-decoration: none;
  font-size: 18px;
}

.nav-links ul li:hover::after {
  content: '';
  width: 100%;
  height: 2px;
  background: black;
  display: block;
  margin: auto;
  transition: 0.5s;
}
/* Show/hide the hamburger icon for small screens */
.nav .fa {
  display: none;
}

/* Media Query for Small Screens */
@media (max-width: 700px) {
  .nav .fa {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: black;
  }

  .nav-links {
    position: fixed;
    background: white;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }

  .nav-links ul {
    padding: 30px;
  }

  .nav-links ul li {
    display: block;
  }
}

/* ====================== Hero Section ====================== */
.hero {
  position: relative;
  background: url('image/banner.png.webp') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;  /* Align to the left */
  text-align: center;
  padding: 20px;
  padding-top: 150px; /* Adjust top padding */
  margin-top: 0px;  /* Space below the fixed navbar */
}
section h1,
article h1,
aside h1,
nav h1 {
  font-size: 2.25rem;
}


.hero-content-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin-left: auto;
  margin-right: 20px;
}

.hero-content-box h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-content-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-content-box button {
  background: linear-gradient(to bottom left , #f0f0f0, #e090a6);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* ====================== Hero Banner Section ====================== */
.hero-banner {
  background: #f9f9f9;
  padding: 80px 10% 120px;
  position: relative;
}

.hero-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-banner-content {
  flex: 1;
}

.hero-banner-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-banner-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-banner-content button {
  background: linear-gradient(to bottom left , #f0f0f0, #e090a6);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.hero-banner-image {
  flex: 1;
  text-align: center;
}

.hero-banner-image img {
  max-width: 100%;
  height: auto;
}

/* ====================== Responsive for Small Screens (≤768px) ====================== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px 40px;
    align-items: center;
    padding-top: 100px;
  }

  .hero-content-box {
    padding: 24px;
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-content-box h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-content-box p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-content-box button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-banner {
    padding: 60px 20px;
  }

  .hero-banner-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-banner-content, .hero-banner-image {
    width: 100%;
  }

  .hero-banner-image {
    margin-top: 30px;
  }

  .hero-banner-content h1 {
    font-size: 24px;
  }

  .hero-banner-content p {
    font-size: 14px;
  }

  .hero-banner-content button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-banner-image img {
    max-width: 90%;
  }
}

/* ====================== Extra Responsive (≤480px) ====================== */
@media (max-width: 480px) {
  .hero-content-box h1,
  .hero-banner-content h1 {
    font-size: 20px;
  }

  .hero-content-box p,
  .hero-banner-content p {
    font-size: 13px;
  }

  .hero-content-box button,
  .hero-banner-content button {
    font-size: 13px;
    padding: 8px 18px;
  }

  .hero-banner-image img {
    max-width: 100%;
  }
}


/* Container Section */
.container {
  padding-top: 150px;
}

.container > h2 {
  font-size: 36px !important;
  margin-bottom: 100px !important;
  font-weight: 700 !important;
  text-align: center;
}

.slick-slide{
  margin: 0 20px;
}
.slick-slide img{
  width: 100%;
}
.slick-slider{
  position: relative;
  display: block;
  box-sizing: border-box;
}
.slick-list{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-track{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img{
  display: block;
}
.slick-initialized .slick-slide{
  display: block;
}
.copy{
  padding-top: 250px;
}

.container img {
  background-color: pink;
}

/* CTA Section */
.cta {
  margin: 70px auto;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('image/image2.webp');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  text-align: center;
  padding: 100px 0;
}

.cta .info h3 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta .info .infoBox div span {
  min-width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border-radius: 50%;
  margin-right: 15px;
}

.cta .info .infoBox div ion-icon {
  color: var(--color);
  text-decoration: none;
  font-size: 1.5em;
  vertical-align: top;
}

.cta .info .infoBox div pre {
  color: var(--white);
  font-size: 1.1em;
}

.cta .info .infoBox div a {
  color: var(--white);
  font-size: 1.1em;
}
/* ========== Responsive CTA ========== */
@media (max-width: 768px) {
  .cta {
    padding: 20px 12px;
    border-radius: 6px;
    text-align: center;
  }

  .cta .info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cta .info .infoBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px; /* Smaller gap between items */
  }

  .cta .info .infoBox div {
    display: flex;
    align-items: center;
    gap: 6px; /* Tight space between icon and text */
    background-color: transparent;
    border-radius: 0;
    padding: 0; /* Remove padding */
  }

  .cta .info .infoBox div span {
    font-size: 1em;
    min-width: 24px;
    height: 24px;
  }

  .cta .info .infoBox div pre,
  .cta .info .infoBox div a {
    font-size: 13px;
    line-height: 1.2;
    margin: 0; /* Remove default spacing */
  }
}

/* Footer Section */


/* General improvements */
.container img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.container img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
.custom-footer {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  color: white;
  padding: 60px 20px;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
}

.footer-grid {
  display: grid;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-block h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.footer-block a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 28px;
  margin-top: 15px;
}

.social-icons a {
  transition: color 0.3s ease;
}

.social-icons a.facebook { color: #3b82f6; }
.social-icons a.linkedin { color: #60a5fa; }
.social-icons a.meta     { color: #ffffff; }
.social-icons a.instagram { color: #f472b6; }

.social-icons a:hover {
  color: #ffffff;
}
