* { margin:0; padding:0; box-sizing:border-box; font-family:'Montserrat', sans-serif; }
body { scroll-behavior:smooth; background:#f9f9f9; }

.container { max-width:1200px; margin:0 auto; padding:0 20px; }

/* Header */
header { position:sticky; top:0; width:100%; background:rgba(0,0,0,0.95); color:#fff; z-index:1000; padding:15px 0; }
header .container { display:flex; justify-content:space-between; align-items:center; }
/* ===============================
   LOGO (IMAGE + TEXT)
================================ */

.logo {
  display: flex;
  align-items: center;
}

/* Clickable area */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Logo image */
.logo-wrap img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}

/* Logo text */
.logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff; /* change for light header */
  white-space: nowrap;
  line-height: 1;
}

/* Hover effect (subtle & modern) */
.logo-wrap:hover .logo-text {
  opacity: 0.85;
}

.logo-wrap:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .logo-wrap img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

/* ===============================
   OPTIONAL: DARK HEADER SUPPORT
   (remove if not needed)
================================ */

header.dark .logo-text {
  color: #ffffff;
}

header.light .logo-text {
  color: #000000;
}


nav ul { display:flex; list-style:none; gap:20px; align-items:center; }
nav ul li a { color:#fff; text-decoration:none; font-weight:600; transition:0.3s; }
nav ul li a:hover { color:#ff5c5c; }
nav ul li.book-now a { background:#ff5c5c; padding:10px 20px; border-radius:5px; }
nav ul li.book-now a:hover { background:#ff1f1f; }
nav .hamburger { display:none; font-size:28px; cursor:pointer; }
@media(max-width:768px){
  nav ul { display:none; flex-direction:column; background:rgba(0,0,0,0.95); position:absolute; top:60px; right:20px; width:200px; padding:20px; border-radius:5px; }
  nav ul.show { display:flex; }
  nav .hamburger { display:block; }
  nav ul li.book-now a { display:block; text-align:center; }
}

/* Hero Slider */
#banner { height:90vh; position:relative; overflow:hidden; }
.swiper { width:100%; height:100%; }
.swiper-slide { position:relative; width:100%; height:100%; display:flex; justify-content:center; align-items:center; }
.swiper-slide .video-wrapper { position:absolute; top:0; left:0; width:100%; height:100%; overflow:hidden; }
.swiper-slide iframe { position:absolute; top:50%; left:50%; width:120%; height:120%; transform:translate(-50%, -50%); pointer-events:none; }

/* Banner overlay content */
.banner-content { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); text-align:center; color:#fff; z-index:10; }
.banner-content h1 { font-size:48px; margin-bottom:20px; text-shadow: 0 0 20px rgba(0,0,0,0.7); }
.banner-content p {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;

  /* modern multi-layer shadow for depth */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.35),
    0 6px 12px rgba(0, 0, 0, 0.25);

     /* Text stroke for strong outline */
  -webkit-text-stroke: 1px rgb(255 92 92);
  -moz-text-stroke: 1px rgb(255 92 92); 
  text-stroke: 1px rgb(255 92 92);

      /* subtle fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.3s;
}
/* Keyframes for fade-in from below */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .banner-content p {
    font-size: 18px;
  }
}

.banner-content a { text-decoration:none; background:#ff5c5c; color:#fff; padding:15px 30px; border-radius:5px; font-weight:bold; transition:0.3s; }
.banner-content a:hover { background:#ff1f1f; }

/* Portfolio */
#portfolio { padding:60px 0; background:#f5f5f5; text-align:center; }
#portfolio h2 { font-size:36px; margin-bottom:40px; }
.videos { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:20px; justify-items:center; }
.video-box { position:relative; width:100%; max-width:350px; cursor:pointer; border-radius:10px; overflow:hidden; }
.video-box img { width:100%; display:block; border-radius:10px; transition:0.3s; }
.video-box img:hover { transform:scale(1.05); }
.video-box .play-btn { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:50px; color:#fff; text-shadow:0 0 10px rgba(0,0,0,0.7); pointer-events:none; }

/* Services */
#services { padding:60px 0; text-align:center; }
#services h2 { font-size:36px; margin-bottom:40px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}
.service-item {
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.3s;
  text-align:center;
  width:100%;
  max-width:250px;
}
.service-item i { font-size:40px; color:#ff5c5c; margin-bottom:15px; }
.service-item h3 { font-size:22px; margin-bottom:10px; }
.service-item p { font-size:16px; color:#555; margin-top:10px; }

.service-item:hover {
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}
.service-item:hover i {
  transform:rotate(10deg);
}

/* ===== MODERN CONTACT SECTION ===== */
#contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
}

.contact-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.contact-tag {
  display: inline-block;
  background: rgba(255,92,92,0.15);
  color: #ff5c5c;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 18px;
  color: #ccc;
  max-width: 500px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn i {
  font-size: 22px;
}

.contact-btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-btn.whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.contact-btn.email {
  background: transparent;
  border: 2px solid #ff5c5c;
  color: #ff5c5c;
}

.contact-btn.email:hover {
  background: #ff5c5c;
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile */
@media(max-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 32px;
  }

  .contact-text p {
    margin: 0 auto;
  }
}


/* Social */
#social { padding:40px 0; text-align:center; }
#social a { margin:0 10px; font-size:28px; color:#333; transition:0.3s; }
#social a:hover { color:#ff5c5c; }

/* Footer */
footer {
  background: #222;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-top:1px solid #444;
}

footer .footer-logo {
  margin-bottom: 15px;
}

footer .footer-logo img {
  width: 60px;  /* Desktop size */
  height: 60px;
  object-fit: contain;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

footer .footer-logo img:hover {
  transform: scale(1.05);
}

footer p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  footer .footer-logo img {
    width: 50px;  /* smaller on mobile */
    height: 50px;
  }

  footer p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  footer .footer-logo img {
    width: 40px;  /* extra small screens */
    height: 40px;
  }

  footer p {
    font-size: 12px;
  }
}


/* ===== MOBILE OPTIMIZATIONS ===== */
@media(max-width:768px){
  #banner { height:50vh; }
  .swiper-slide iframe {
    width:100% !important;
    height:100% !important;
    top:0 !important;
    left:0 !important;
    transform:none !important;
  }
  .service-list { grid-template-columns: 1fr; gap: 15px; }
  .service-item { width:100%; max-width:100%; padding:20px; }
  
  .about-wrapper { grid-template-columns:1fr; text-align:center; gap:40px; }
  .contact-card { grid-template-columns:1fr; padding:40px 25px; text-align:center; }
  footer .footer-logo img { width:50px; height:50px; }
  
}

@media(max-width:480px){
  footer .footer-logo img { width:40px; height:40px; }
  footer p { font-size:12px; }
  .whatsapp-float { width:52px; height:52px; font-size:26px; bottom:18px; right:18px; }
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  background: #fff;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.pagination a:hover {
  background: #ff5c5c;
  color: #fff;
}

.pagination a.active {
  background: #ff5c5c;
  color: #fff;
}


/* ===== MODERN ABOUT US ===== */
#about {
  padding: 90px 0;
  background: #fff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-tag {
  display: inline-block;
  background: rgba(255,92,92,0.12);
  color: #ff5c5c;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.stat h3 {
  font-size: 32px;
  color: #ff5c5c;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

.about-btn {
  display: inline-block;
  background: #ff5c5c;
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ff1f1f;
  transform: translateY(-3px);
}

/* Mobile */
@media(max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-content p {
    margin: 0 auto 30px;
  }
}


/* ===============================
   WHATSAPP FLOAT BUTTON
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 18px;
    right: 18px;
  }
}