/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: color 0.3s ease;
}
.nav-links a.active,
.nav-links a:hover {
    color: #0056D2; /* Blue from logo */
}
.logo img {
    height: 60px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Glowing Text */
.glow-text {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px #ff0055, 0 0 30px #ff0055, 0 0 60px #ff0055;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 15px #ff0055, 0 0 30px #ff0055;
  }
  100% {
    text-shadow: 0 0 25px #00c3ff, 0 0 60px #00c3ff, 0 0 100px #00c3ff;
  }
}

/* Premium Buttons */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.premium-btn {
  background: linear-gradient(135deg, #ff0055, #ff6600);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 85, 0.7);
}

.outline-btn {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .glow-text {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}


/* ===== Buttons ===== */
.btn-primary {
    background: #0056D2; /* Blue */
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #D32F2F; /* Red on hover */
    transform: translateY(-2px);
}
.btn-secondary {
    background: #D32F2F; /* Red */
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #0056D2; /* Blue on hover */
    transform: translateY(-2px);
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    text-align: center;
}
.about h2 {
    color: #0056D2;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.about p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-preview, .services {
    padding: 80px 0;
    text-align: center;
}
.services-preview h2, .services h2 {
    color: #D32F2F;
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card i {
    font-size: 3rem;
    color: #D32F2F;
    margin-bottom: 20px;
}
.service-card h3 {
    color: #0056D2;
    margin-bottom: 15px;
}
.service-card p {
    color: #444;
}

/* ===== Call To Action ===== */
.cta {
    padding: 80px 0;
    text-align: center;
}
.cta h2 {
    color: #0056D2;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* ===== Gallery ===== */
.gallery {
    padding: 80px 0;
    text-align: center;
}
.gallery h2 {
    color: #D32F2F;
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.gallery-grid {
  column-count: 3; /* number of columns */
  column-gap: 20px; /* space between columns */
}

.gallery-grid a {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px; /* space between images vertically */
}

.gallery-grid a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    text-align: center;
}
.contact h2 {
    color: #0056D2;
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
}
.contact-info i {
    color: #D32F2F;
    margin-right: 10px;
}
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    margin-top: 30px;
}

/* ===== Footer ===== */
footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer-left p {
    margin-top: 10px;
}
.footer-right p {
    margin: 5px 0;
}
.footer-right i {
    margin-right: 10px;
    color: #D32F2F;
}
.footer-logo {
    height: 50px;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: transform 0.2s;
}
.whatsapp-float img {
    width: 50px;
    height: 50px;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 2; /* fewer columns on smaller screens */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1; /* stack all on mobile */
  }
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}
.testimonials h2 {
    color: #0056D2;
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease-in-out;
}
.testimonial-slide.active {
    display: block;
}
.testimonial-slide p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    font-style: italic;
}
.testimonial-slide h4 {
    color: #D32F2F;
    font-weight: 600;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== Hero Slideshow ===== */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
}

.hero-slide.active {
    display: flex; /* change from block to flex */
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    animation: fadeSlide 1s ease-in-out;
}

.hero-slide .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    text-align: center; /* horizontal centering for text */
    color: #fff;
}

.hero-slide h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-slide .hero-buttons a {
    margin: 0 10px;
}

/* Fade animation for slides */
@keyframes fadeSlide {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-slide h1 { font-size: 2.5rem; }
    .hero-slide p { font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero-slide h1 { font-size: 2rem; }
    .hero-slide p { font-size: 0.95rem; }
}
/* ===== Contact Page ===== */
.contact-page {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.contact-page h2 {
    color: #0056D2; /* Blue from logo */
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-page .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-page .contact-info p {
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page .contact-info i {
    color: #D32F2F; /* Red from logo */
    font-size: 1.3rem;
}

/* Google Map */
.map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #0056D2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer tweaks (to match page style) */
footer {
    padding: 40px 0;
    background: #111;
    color: #fff;
}
footer a {
    color: #D32F2F;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float img {
    width: 60px;
    height: 60px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1024px) {
    .contact-page .contact-info {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page h2 {
        font-size: 2rem;
    }
    .contact-page .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    .contact-page .contact-info p {
        font-size: 1rem;
    }
    .map-container {
        max-width: 100%;
        height: 350px;
    }
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .contact-page h2 {
        font-size: 1.7rem;
    }
    .contact-page .contact-info p {
        font-size: 0.95rem;
    }
    .whatsapp-float img {
        width: 45px;
        height: 45px;
    }
}
/* ===== Contact Page - Vertical Icons ===== */
.contact-page .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-page .contact-info p {
    font-size: 1.1rem;
    color: #333;
    display: flex;
    flex-direction: column; /* stack icon above text */
    align-items: center;    /* center horizontally */
    gap: 10px;
}

.contact-page .contact-info i {
    color: #D32F2F; /* red from logo */
    font-size: 2rem; /* larger icon on top */
}
.contact-page .contact-info p {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-page .contact-info i {
    color: #D32F2F; /* red from logo */
    font-size: 2rem;
}
/* ===== FIXED HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

/* Container: Logo Left | Links Right */
.header-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 30px !important;
  width: 100% !important;
}

/* Logo */
.logo {
  flex: 0 0 auto !important;
}
.logo img {
  height: 60px !important;
  width: auto !important;
  display: block !important;
}

/* Nav links on the right */
.nav-links {
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
}

.nav-links ul {
  list-style: none !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-links ul li {
  display: inline-block !important;
}

.nav-links ul li a {
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: color 0.3s ease !important;
}

.nav-links ul li a:hover {
  color: #D32F2F !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .nav-links {
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .nav-links ul {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 10px !important;
  }
}
