/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header Section */
.header {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 80px;
  height: auto;
}

.logo span {
  color: orangered;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: orangered;
}

.nav .btn {
  background: #1b98f5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background: url('./assets/bg2.jpg') no-repeat center center/cover;
  text-align: center;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
 padding: 5%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.hero-text p {
  background: #ffffff48;
  color: #222;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: large;
}

.social-icon a {
  font-size: 1.5rem;
  color: #222;
  background-color: #ffffff6b;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  text-align: center;
  transition: color 0.3s;
  padding: 1% 2%;
}

.social-icon a:hover {
  color: #1b98f5;
}

/* Video Section */
.video-section {
  background: #fefefe;
  padding: 4rem 0;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-box iframe {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.more-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #1b98f5;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.more-btn:hover {
  background-color: #157ed3;
}

/* Services Section */
.services {
  background: rgba(135, 207, 235, 0.308);
  padding: 4rem 0;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fdfdfd;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-5px);
}

.gallery-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 2rem auto;
}

.image-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}

.image-gallery img {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

.scroll-btn {
  background: rgba(255, 255, 255, 0.185);
  color: #1b98f5;
  border: none;
  font-weight: 900;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 0.7rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: #ffffff48;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.scroll-btn.left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-btn.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Contact Section */
.contact {
  background: #fff;
  padding: 4rem 0;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

form input,
form textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
}

form button {
  padding: 0.8rem;
  background: orangered;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.social-icons a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1b98f5;
}

.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}
