* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 3rem;
  border-bottom: 3px solid #ccc;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo svg {
  width: 50px;
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #B8860B;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 2rem;
  width: 80%;
  margin: 0 auto;
  background-color: #ccc;

}

.slider-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  transition: transform 0.8s ease-in-out;

}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-controls button {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background: rgba(255, 255, 255, 1);
}

/* Social Icons */
.social-icons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.social-icons a img:hover {
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .slide {
    height: 50%;
  }

  .hero-slider {
    height: 50vh;
    /* margin-top: 2rem; */
    background-color: #fff;
  }

  .slider-container {
    size: 70%;
  }

  .slider-controls button {
    padding: 8px 15px;
    font-size: 1.2rem;
  }

  .social-icons {
    left: 10px;
    top: 370px;
    transform: none;
    /* flex-direction: ; */
    gap: 10px;
  }

  .social-icons a img {
    width: 25px;
    height: 25px;
  }
}

/* About us  */
/* Main Content Styles */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Stats Section */
.stats-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-left: 40px;
  margin-right: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-line {
  width: 0.25rem;
  height: 3rem;
  background-color: black;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-category {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
}



/* Image Section */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.image-container:hover img {
  filter: grayscale(0%);
}

/* Text Section */
.text-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.75;
}

.about-text strong {
  font-weight: 700;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid #f97316;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

.loading-text {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #6b7280;
  opacity: 0;
  animation: fadeIn 0.5s 1s forwards;
}

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slideInUp 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
}

.scroll-reveal.visible {
  animation: slideInUp 0.6s ease-out forwards;
}

/* Fade in animation for loading content */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-container {
    padding: 2rem 1rem;
  }

  .stat-item {
    gap: 0.75rem;
  }

  .stat-line {
    height: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }
}



/* ================================== Projects ===================================== */
.projects-container {
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 300px;
}

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

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.05);
}

.project-info {
  padding: 15px;
  text-align: center;
}

.project-title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
}

.project-location {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.logo-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.project-card:hover .logo-overlay {
  opacity: 1;
}

.logo-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #000, #333);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.gallery-modal.active {
  display: flex;
}

.gallery-content {
  background: white;
  border-radius: 15px;
  max-width: 90%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}

.gallery-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #000;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.loading-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 3%;
  }

  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .projects-container {
    padding: 30px 3%;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .project-card {
    height: 250px;
  }

  .project-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 10px;
    font-size: 12px;
  }

  .projects-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-card {
    height: 200px;
  }

  .project-image {
    height: 120px;
  }

  .project-title {
    font-size: 14px;
  }

  .gallery-content {
    max-width: 100%;
    max-height: 95vh;
  }
}


/* ===========main loader============ */

#container {
  position: relative;
  transform: scale(0.725);
}

.divider {
  position: absolute;
  z-index: 2;
  top: 65px;
  left: 200px;
  width: 50px;
  height: 15px;
  background: #fff;
}

.loading-text {
  position: relative;
  font-size: 3.75rem;
  font-weight: 300;
  margin: 0;
  white-space: nowrap;
}

.loading-text::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 40px;
  left: 115px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  -webkit-animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
  animation: dotMove 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.loading-text .letter {
  display: inline-block;
  position: relative;
  color: #000;
  letter-spacing: 8px;
}

.loading-text .letter:nth-child(1) {
  transform-origin: 100% 70%;
  transform: scale(1, 1.275);
}

.loading-text .letter:nth-child(1)::before {
  position: absolute;
  content: "";
  top: 22px;
  left: 0;
  width: 14px;
  height: 36px;
  background: #fff;
  transform-origin: 100% 0;
  -webkit-animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
  animation: lineStretch 1800ms cubic-bezier(0.25, 0.25, 0.75, 0.75) infinite;
}

.loading-text .letter:nth-child(5) {
  transform-origin: 100% 70%;
  -webkit-animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
  animation: letterStretch 1800ms cubic-bezier(0.25, 0.23, 0.73, 0.75) infinite;
}

.loading-text .letter:nth-child(5)::before {
  position: absolute;
  content: "";
  top: 15px;
  left: 2px;
  width: 9px;
  height: 15px;
  background: #fff;
}

@-webkit-keyframes dotMove {

  0%,
  100% {
    transform: rotate(180deg) translate(-110px, -10px) rotate(-180deg);
  }

  50% {
    transform: rotate(0deg) translate(-111px, 10px) rotate(0deg);
  }
}

@keyframes dotMove {

  0%,
  100% {
    transform: rotate(180deg) translate(-110px, -10px) rotate(-180deg);
  }

  50% {
    transform: rotate(0deg) translate(-111px, 10px) rotate(0deg);
  }
}

@-webkit-keyframes letterStretch {

  0%,
  100% {
    transform: scale(1, 0.35);
    transform-origin: 100% 75%;
  }

  8%,
  28% {
    transform: scale(1, 2.125);
    transform-origin: 100% 67%;
  }

  37% {
    transform: scale(1, 0.875);
    transform-origin: 100% 75%;
  }

  46% {
    transform: scale(1, 1.03);
    transform-origin: 100% 75%;
  }

  50%,
  97% {
    transform: scale(1);
    transform-origin: 100% 75%;
  }
}

@keyframes letterStretch {

  0%,
  100% {
    transform: scale(1, 0.35);
    transform-origin: 100% 75%;
  }

  8%,
  28% {
    transform: scale(1, 2.125);
    transform-origin: 100% 67%;
  }

  37% {
    transform: scale(1, 0.875);
    transform-origin: 100% 75%;
  }

  46% {
    transform: scale(1, 1.03);
    transform-origin: 100% 75%;
  }

  50%,
  97% {
    transform: scale(1);
    transform-origin: 100% 75%;
  }
}

@-webkit-keyframes lineStretch {

  0%,
  45%,
  70%,
  100% {
    transform: scaleY(0.125);
  }

  49% {
    transform: scaleY(0.75);
  }

  50% {
    transform: scaleY(0.875);
  }

  53% {
    transform: scaleY(0.5);
  }

  60% {
    transform: scaleY(0);
  }

  68% {
    transform: scaleY(0.18);
  }
}

@keyframes lineStretch {

  0%,
  45%,
  70%,
  100% {
    transform: scaleY(0.125);
  }

  49% {
    transform: scaleY(0.75);
  }

  50% {
    transform: scaleY(0.875);
  }

  53% {
    transform: scaleY(0.5);
  }

  60% {
    transform: scaleY(0);
  }

  68% {
    transform: scaleY(0.18);
  }
}

@media (min-width: 48rem) {
  #container {
    transform: scale(0.725rem);
  }
}

@media (min-width: 62rem) {
  #container {
    transform: scale(0.85);
  }
}


/* ================= Image gallery =========================== */
.gallery-container {
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 250px;
}

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

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .image-caption {
  transform: translateY(0);
}

.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.fullscreen-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fullscreen-content {
  max-width: 95%;
  max-height: 95vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-image {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.fullscreen-image:hover {
  transform: scale(1.02);
}

.fullscreen-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.fullscreen-close-btn:hover {
  background: rgba(255, 255, 255, 1);
  animation: none;
}

.loading-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2000;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #eee;
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.social-icons {
  position: fixed;
  left: 20px;
  top: 85%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #000;
  transform: scale(1.1);
}

.social-icon i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 3%;
  }

  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .gallery-container {
    padding: 30px 3%;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
  }

  .social-icons {
    left: 10px;
  }

  .fullscreen-image {
    max-width: 90%;
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 10px;
    font-size: 12px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-item {
    height: 180px;
  }

  .image-caption {
    font-size: 12px;
  }

  .fullscreen-image {
    max-width: 95%;
    max-height: 95vh;
  }
}


/* =================== Videos =========================== */
.videos-section {
  padding: 60px 5% 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.video-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-info {
  padding: 15px;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.video-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.video-card:hover .play-icon {
  opacity: 1;
}

.play-icon svg {
  width: 24px;
  height: 24px;
  fill: #ff0000;
}

.testimonials-section {
  padding: 0 5% 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #f8f9fa;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #000, #333);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.author-role {
  font-size: 14px;
  color: #666;
}

.rating {
  color: #ffc107;
  margin-top: 5px;
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 3%;
  }

  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .videos-section,
  .testimonials-section {
    padding: 40px 3% 30px;
  }

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

  .videos-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .social-icons {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 10px;
    font-size: 12px;
  }

  .videos-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .video-thumbnail {
    height: 150px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* =========================== Contact us ============================ */
.contact-section {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #000;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #000;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #333;
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #333, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

.map-placeholder i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #000, #333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.info-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.info-text {
  color: #666;
  line-height: 1.6;
}

.info-text a {
  color: #000;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 3%;
  }

  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }

  .contact-section {
    padding: 40px 3% 30px;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-form {
    padding: 30px;
  }

  .map-container {
    height: 300px;
  }

  .social-icons {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 10px;
    font-size: 12px;
  }

  .contact-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }

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

  .map-container {
    height: 250px;
  }

  .info-card {
    padding: 20px;
  }
}