
body{
    margin: 0;
    overflow-x: hidden ;
}
.hero {
  position: relative;
  color: white;
  padding: 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  width: 100%;
  z-index: 2;
  position: relative;
  padding: 5vh 5vw;
}

.hero-text {
  z-index: 2;
  max-width: 90%;
  width: 100%;
}

.hero-text-container {
  background-color: rgba(255, 255, 255, 0.25); /* light blur */
  border-radius: 20px;
  padding: 30px;
  /*backdrop-filter: blur(0px);*/
  max-width: 800px;
}

.hero-text h1 {
  font-size: 5vw;
  font-weight: 700;
  margin-bottom: 1vh;
}

.hero-text h2 {
  font-size: 3.5vw;
  margin-bottom: 2vh;
}

.hero-text p {
  font-size: 1.1vw;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 3vh;
}
.hero-text strong{
    font-weight: bold;
}
.hero-buttons {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn-orange,
.hero-buttons .btn-white {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1vw;
  background-color: #fff;
  color: black;
  transition: all 0.3s ease;
}

.btn-orange:hover,
.btn-white:hover {
  background-color: #f46706;
  color: white;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
/* ✅ Remove default text completely */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: ''; /* Hide Swiper's default text */
}

/* ✅ Custom arrows */
.swiper-button-next::before,
.swiper-button-prev::before {
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-family: 'Arial', sans-serif;
  position: absolute;
}

/* Show custom right arrow */
.swiper-button-next::before {
  content: '›'; /* or '\203A' */
}

/* Show custom left arrow */
.swiper-button-prev::before {
  content: '‹'; /* or '\2039' */
}

/* ✅ Button styling */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  position: absolute;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev {
  left: 15px;
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 4.5vw;
    margin-top: 40px;
  }

  .hero-text h2 {
    font-size: 3.5vw;
  }

  .hero-text p {
    font-size: 1.5vw;
  }

  .hero-buttons .btn-orange,
  .hero-buttons .btn-white {
    font-size: 1.8vw;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 5vh 3vw;
  }

  .hero-text-container {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 8vw;
    margin-top: 160px;

  }

  .hero-text h2 {
    font-size: 6vw;
  }

  .hero-text p {
    font-size: 3.5vw;
  }

  .hero-buttons .btn-orange,
  .hero-buttons .btn-white {
    font-size: 3.5vw;
  }
}




/* Section Title */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.section-title .highlight {
  color: #2196f3;
  font-weight: bold;
}

/* ✅ Medium Screens (Tablets) */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
    margin-top: 35px;
  }
}

/* ✅ Small Screens (Mobiles) */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 25px;
  }
}

/* Portfolio Cards Grid */
/* Slide-in animation keyframes */


/* Portfolio Cards Grid */
.portfolio-grid {

  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Portfolio Card with animation */
.portfolio-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 30px #1976D2;
  transition: transform 0.3s ease;
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  /* Full width inside container */
  text-align: center;
  display: flex;
  flex-direction: column;
  z-index: 1;
  opacity: 1;
  transform: translateX(100px);
  animation: slideInRightToLeft 0.8s ease forwards;
}

/* Staggered animation delays */
.portfolio-card:nth-child(1) {
  animation-delay: 0.3s;
}

.portfolio-card:nth-child(2) {
  animation-delay: 0.6s;
}

.portfolio-card:nth-child(3) {
  animation-delay: 0.9s;
}

/* Slide-in animation keyframes */
@keyframes slideInRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
    z-index: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
  }
}

/* Hover effect on image */
.portfolio-card img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.portfolio-card img:hover {
  filter: brightness(80%);
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-content h3 span {
  display: block;
  font-size: 14px;
  color: #777;
}

.card-content p {
    line-height: normal;
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.btn-card {
  display: inline-block;
  padding: 8px 16px;
  background-color: #121c44;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  font-weight: bold;
}

.btn-card:hover {
  background-color: #f46706;
  color: white;
  transition: background-color 0.3s, color 0.3s;
}

/* Responsive adjustments */

/* Medium screens: 2 cards per row */
@media (max-width: 900px) {
  .portfolio-card {
    max-width: 45%;
  }
}

/* Small screens: 1 card per row with smaller cards and reduced gaps */
@media (max-width: 600px) {
  .portfolio-grid {
    gap: 10px;
    /* Reduce gap between cards */
    padding: 10px;
    /* Optional: padding around grid */
  }

  .portfolio-card {
    max-width: 180px;
    max-height: 350px;
    /* smaller max-width */
    width: 100%;
    /* full width */
    margin: 0 auto;
    /* center cards */
  }

  .card-content {
    padding: 15px;
    /* reduce padding inside card */
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 12px;
  }

  .btn-card {
    font-size: 13px;
    padding: 7px 14px;
  }
}


/* ------------------------------
   Expertise Section - Responsive
--------------------------------*/
.expertise-section {
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ------------------------------
   GRID LAYOUT
--------------------------------*/
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  padding: 20px 0;
  justify-items: center;
}
.exp-title {
    font-size: clamp(12px, 1vw, 10px);  /* Responsive font size */
    font-weight: 600;
    /* line-height: 1.3; */
    /* text-align: center;                 Optional: remove if not needed */
    /* padding: 0 8px;                     Prevent text from touching edges on small screens */
}

/* ------------------------------
   DESCRIPTION TEXT
--------------------------------*/
.para-description {
  margin-top: 4px;
  font-size: clamp(7px, 1.6vw, 9px);
  /* text-align: center; */
  color: black;
  line-height: 1.4;
  max-width: 168px;
  width: 100%;
  /* padding: 0 8px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

.para-description strong {
  font-weight: bold;
}

/* ------------------------------
   FLIP CARD
--------------------------------*/
.expertise-item {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 200px;
  perspective: 1000px;
  border: none;
  background: none;
}

.expertise-item::before,
.expertise-item:hover::before,
.expertise-item:hover img {
  display: none !important;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.expertise-item:hover .flip-card-inner,
.expertise-item:active .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Front */
.flip-card-front {
  background: #fff;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back */
.flip-card-back {
  background: #f7f7f7;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 12px;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #000;
}

.flip-card-back strong {
  font-weight: bold;
}

/* ------------------------------
   TITLES & BUTTON
--------------------------------*/
/* .exp-title {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 600;
  text-align: center;
} */

.know-more {
  padding: 5px 10px;
  background-color: #1976D2;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  width: fit-content;
  margin: 12px auto 10px;
  color: white;
  display: inline-block;
  transition: 0.3s ease;
}

.know-more:hover {
  background-color: #f46706;
}

.hover-text {
  position: absolute;
  bottom: 10px;
  text-align: center;
  margin-left: 100px;
  width: 179px;
  transform: translateX(-50%);
  background-color: rgba(25, 118, 210, 0.8);
  color: #fff;
  padding: 6px 6px;
  border-radius: 6px;
  font-size: 0.9rem;
  z-index: 2;
}

/* ------------------------------
   RESPONSIVE BREAKPOINTS
--------------------------------*/

/* 💻 Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .expertise-item {
    max-width: 180px;
    height: 180px;
  }
}

/* 📱 Tablets / Large Phones (768px - 991px) */
@media (max-width: 899px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .expertise-item {
    max-width: 160px;
    height: 160px;
  }

  .flip-card-back {
    font-size: 10px;
  }

  .know-more {
    font-size: 10px;
    padding: 4px 8px;
  }

  .hover-text {
    font-size: 10px;
    padding: 4px 5px;
  }
}

/* 📱 Mobile (up to 600px) */
@media (max-width: 599px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 0;
  }

  .expertise-item {
    max-width: 130px;
    height: 130px;
  }

  .flip-card-back {
    font-size: 9px;
  }

  .know-more {
    font-size: 9px;
    padding: 3px 6px;
    min-width: 65px;
  }

  .hover-text {
    font-size: 9px;
  }
}

/* Art Gallery Carousel Styles */
.art-gallery-section {
  padding: 0px 0;
  text-align: center;
  overflow: hidden;
}

.gallery-subtitle {
  font-style: italic;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 15s linear infinite;
}

.carousel-track img {
  width: 120px;
  height: 120px;
  /*border-radius: 10px;*/
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

/* Infinite Scroll Keyframes */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .carousel-track img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 16px;
    animation-duration: 15s;
  }

  .carousel-track img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    gap: 12px;
    animation-duration: 20s;
  }

  /* .carousel-track img {
    width: 90px;
  } */

  .gallery-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
  }
}