@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Poppins', sans-serif; */
  font-family: "Signika Negative", serif;
  color: #333;
  background: #f8f9fa;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.h1tag{
  font-family: "Signika Negative", serif;
}

.h3tag{
  font-family: "Signika Negative", serif;
}

#h2tag{
  font-family: "Signika Negative", serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
} */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background: linear-gradient(
    to right,
    rgba(15, 15, 20, 0.75),
    rgba(25, 25, 35, 0.75)
  );

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  transition: all 0.4s ease;
}


/* .navbar.scrolled {
  padding: 0.8rem 6%;
  background: rgba(15, 15, 20, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
} */

.navbar.scrolled {
  background: linear-gradient(
    to right,
    rgba(10,10,15,0.95),
    rgba(20,20,30,0.95)
  );
  padding: 0.75rem 6%;
  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.logo-image {
  display: flex;
  align-items: center;
}

/* FORCE large visual size */
.logo-image img {
  height: 90px;              /* 👈 clearly bigger */
  width: auto;

  transform: scale(1.15);    /* 👈 extra visual boost */
  transform-origin: left center;

  object-fit: contain;
  display: block;

  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

/* On scroll – slightly reduced but still big */
.navbar.scrolled .logo-image img {
  height: 78px;
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-image img {
    height: 70px;
    transform: scale(1.05);
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo .brand {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #000;
}

.logo .roof {
  position: relative;
  color: #e63946;          /* red roof color */
  font-size: 2.6rem;
  margin-right: 6px;
  top: -4px;
}

.logo{
  color: #000;
}

.text{
  color: #fcf8f8;
}

.logo .home {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.nav-links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #e63946;
  transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e63946;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Hero Section */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* #hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  z-index: 1;
} */

#hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );

  z-index: 1;
}

#hero video {
  filter: 
    brightness(1.05)
    contrast(1.08)
    saturate(1.2);
}

#hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 6rem;
  margin-bottom: 1rem;
  text-shadow: 0 6px 30px rgba(0,0,0,0.8);
  letter-spacing: -1px;
}

.hero-content h1 {
  text-shadow:
    0 10px 40px rgba(0,0,0,0.85),
    0 0 30px rgba(230,57,70,0.15);
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-content .sub {
  font-size: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.9;
}


.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}



/* Sections */
section {
  padding: 90px 6% 60px;
}

h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 3rem;
  color: #222;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card video,
.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 1.8rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.card-content p {
  color: #666;
  font-size: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(to top, #0b0b0f, #14141c);
  color: #ccc;
  padding: 3rem 6% 2rem;   /* ⬅ reduced height */
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer .brand {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px rgba(230,57,70,0.25);
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

footer a {
  color: #aaa;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e63946;
}

footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 6% 2rem; /* short & sweet */
}

/* Footer background video */
.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.80;   /* 👈 VERY subtle */
  filter: brightness(1.05) contrast(1.05) saturate(1.1);

  z-index: 0;
}

/* Dark overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,15,0.9),
    rgba(20,20,30,0.7)
  );
  z-index: 1;
}

/* Footer content above video */
.footer-content {
  position: relative;
  z-index: 2;
}

.social-icons {
  margin: 1.2rem 0;
}


.social-icons a {
  background: rgba(255,255,255,0.05);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #e63946;
  color: #fff;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-contact a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: white !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
}

.instagram-btn {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.floating-contact a:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 4.2rem;
  }

  .hero-content p {
    font-size: 1.4rem;
  }

  .hero-content .sub {
    font-size: 1.1rem;
  }

  section {
    padding: 80px 5% 40px;
  }

  h2 {
    font-size: 2.6rem;
  }
}

/* About Us Section CSS */

/* ABOUT HERO */
.about-hero {
  position: relative;
  height: 70vh;
  background: url('../images/about-bg-texture.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.6)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* STORY */
.about-story {
  background: #fff;
}

.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* VALUES */
.about-values {
  background: #f8f9fa;
  margin-top: -50px !important;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* WHY US */
.why-us {
  background: #fff;
  text-align: center;
}

.why-card i {
  font-size: 2.4rem;
  color: #e63946;
  margin-bottom: 1rem;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, #e63946, #b5172b);
  color: #fff;
  text-align: center;
  padding: 4rem 6%;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 14px 36px;
  background: #fff;
  color: #e63946;
  font-weight: 600;
  border-radius: 30px;
}


/* M & D Section */

/* M & D INTRO */
.md-intro {
  background: #fff;
}

.md-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.md-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* HISTORY */
.md-history {
  background: #f8f9fa;
  text-align: center;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid #e63946;
  margin-bottom: 1.5rem;
  text-align: left;
}

.timeline-item span {
  font-weight: 700;
  color: #e63946;
}

/* PHILOSOPHY */
.md-philosophy {
  background: #fff;
  text-align: center;
}

.md-card i {
  font-size: 2.2rem;
  color: #e63946;
  margin-bottom: 1rem;
}

/* VIDEO */
.md-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/*.md-video video {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/

/* Newly Added CSS Block */

/* ========================= */
/* FULL FRAME VIDEO FIX */
/* ========================= */

.md-video {
  position: relative;
  width: 100%;
  height: 100vh;        /* full screen */
  padding: 0 !important; /* override global section padding */
  margin: 0 !important;
  overflow: hidden;
}

.md-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

/*.md-video-text {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  color: #fff;*/
/*  text-align: center;*/
/*}*/


/* Newly Added CSS */
.md-video-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.milanion_video_text{
  color: #d84a4a;
}
/* GALLERY */
.md-gallery {
  background: #fff;
}

.md-gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.md-gallery-grid img {
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.md-gallery-grid img:hover {
  transform: scale(1.05);
}

/* PARTNERSHIP */
.md-partnership {
  background: linear-gradient(135deg, #111, #1b1b25);
  color: #fff;
  text-align: center;
  padding: 4rem 6%;
}


/* Gallery Section */

/* GALLERY SECTION */
.gallery-section {
  background: #fff;
  padding: 80px 6%;
}

/* FILTERS */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

/* GRID */
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item.video:hover .play-icon {
  opacity: 1;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  background: #000;   /* fallback */
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.play-icon {
  pointer-events: none;  /* lets clicks reach video */
}

.play-icon {
  opacity: 1;
  background: rgba(0,0,0,0.35);
}

.gallery-item:hover .play-icon {
  opacity: 0;
}


/* Contact US CSS */
/* CONTACT INFO */
.contact-info {
  background: #fff;
}

.contact-card {
  background: #fff;
  padding: 2.5rem;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-card i {
  font-size: 2.4rem;
  color: #e63946;
  margin-bottom: 1rem;
}

/* CONTACT MAIN */
.contact-main {
  background: #f8f9fa;
}

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-form button {
  background: #e63946;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: 18px;
}

/* CTA */
.contact-cta {
  background: linear-gradient(135deg, #bfad96, #e2d3c1);
  color: #fff;
  text-align: center;
  padding: 4rem 6%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.success-message {
  background: #e6fff1;
  color: #0f5132;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE FIX */
/* ========================= */

@media (max-width: 768px) {

  /* GLOBAL */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 80px 5% 50px;
  }

  /* NAVBAR */
  .navbar {
    padding: 0.8rem 5%;
  }

  .logo-image img {
    height: 58px !important;
    transform: none;
  }

  .logo .brand {
    font-size: 1.6rem;
  }

  .logo .roof {
    font-size: 2rem;
    top: -2px;
  }

  /* HERO SECTION */
  #hero {
    height: 90vh;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-content .sub {
    font-size: 1rem;
  }

  .scroll-indicator {
    display: none;
  }

  /* ABOUT HERO */
  .about-hero {
    height: 55vh;
    padding: 0 5%;
  }

  .about-hero-content h1 {
    font-size: 2.6rem;
  }

  /* GRIDS → STACK */
  .grid-3,
  .grid-2,
  .about-grid,
  .md-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* CARD FIX */
  .card img,
  .card video {
    height: 200px;
  }

  /* M & D VIDEO */
  .md-video {
    height: 100vh;
  }

  .md-video-text h2 {
    font-size: 2rem;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    aspect-ratio: 16 / 9;
  }

  /* CONTACT */
  .contact-form {
    padding: 2rem;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  /* FOOTER */
  footer {
    padding: 2rem 5% 1.5rem;
  }

  footer .brand {
    font-size: 1.6rem;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
  }

  /* FLOATING ICONS */
  .floating-contact {
    bottom: 16px;
    right: 16px;
  }

  .floating-contact a {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ========================= */
/* 📱 NAVBAR MOBILE FIX */
/* ========================= */

@media (max-width: 850px) {

  .navbar {
    position: fixed;
    z-index: 2000;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 70px; /* below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: linear-gradient(
      to bottom,
      rgba(10,10,15,0.98),
      rgba(20,20,30,0.98)
    );

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    transform: translateY(-120%);
    transition: transform 0.45s ease;
    z-index: 1500;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li a {
    font-size: 1.3rem;
  }

  .hamburger {
    display: flex;
    z-index: 3000;
  }
  .hamburger {
    cursor: pointer;
    pointer-events: auto;
  }

  .hamburger span {
    pointer-events: none;
  }
  .hamburger {
      position: relative;
      z-index: 5000;
    }
    
    .logo {
      pointer-events: none;
    }
    
    .hamburger,
    .hamburger * {
      pointer-events: auto;
    }
    
    .logo-img {
        height: 65px;   /* increase size for mobile */
      }

}
/* Brand Into Section */
.brand-intro-section {
  padding: 6rem 8%;
  background: #fafafa;
  /*background: #FF0000;*/
}

.brand-intro-section .container {
  max-width: 1000px;
  margin: auto;
  /*background: #fff;*/
  background: #F09E9E;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.07);
  text-align: center;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}

/* What we do CSS */
.what-we-do {
  padding: 5rem 8%;
  background: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.work-card {
  background: #fafafa;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* Global Partners CSS */
.global-partners {
  padding: 5.5rem 8%;
  background: linear-gradient(180deg, #fafafa, #f2f2f2);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 950px;
  margin: 3.5rem auto 0;
}

.partner-card {
  position: relative;
  background: #ffffff;
  padding: 3.2rem 3rem;
  border-radius: 18px;
  border-left: 6px solid #e63946;

  /* Premium layered shadow */
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.08),
    0 45px 90px rgba(0, 0, 0, 0.06);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Soft glow layer */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(230,57,70,0.15),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

/* Hover effect */
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 55px rgba(0, 0, 0, 0.12),
    0 70px 140px rgba(0, 0, 0, 0.10);
}

.partner-card:hover::before {
  opacity: 1;
}

/* Typography polish */
.partner-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.partner-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}


/* Experince Philospy Section */
.experience-philosophy {
  padding: 5rem 8%;
  background: #fff;
}

.ep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
}

.ep-card {
  background: #fafafa;
  padding: 3rem;
  border-radius: 18px;
}

.ep-card.highlight {
  background: linear-gradient(135deg, #fff, #f7f7f7);
  border-left: 5px solid #e63946;
}

.ep-heading {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: #222;
}
.hero-partners {
  margin-top: 1.2rem;
  font-size: 1.15rem;          /* Bigger, readable */
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(12px);
  animation: heroPartnersFade 1.2s ease forwards;
  animation-delay: 1.2s;       /* Comes after hero text */
}

.hero-partners .dot {
  margin: 0 0.8rem;
  opacity: 0.6;
}

/* Smooth luxury reveal */
@keyframes heroPartnersFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-partners {
    flex-direction: column;        /* Stack vertically */
    font-size: 1rem;               /* Slightly smaller */
    letter-spacing: 0.8px;
    margin-top: 1rem;
    text-align: center;
  }

  .hero-partners .dot {
    display: none;                 /* Remove dot on mobile */
  }

  .hero-partners span {
    margin: 0.25rem 0;
  }
  .hero-partners img {
      height: 22px;
  }
}
/* Luxury glow layer */
.hero-partners {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(255, 255, 255, 0.18);
}

/* Gentle breathing glow animation */
.hero-partners {
  animation:
    heroPartnersFade 1.2s ease forwards,
    heroGlow 4s ease-in-out infinite;
}

/* Slow cinematic glow pulse */
@keyframes heroGlow {
  0% {
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.45),
      0 0 10px rgba(255, 255, 255, 0.12);
  }
  50% {
    text-shadow:
      0 4px 10px rgba(0, 0, 0, 0.6),
      0 0 18px rgba(255, 255, 255, 0.28);
  }
  100% {
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.45),
      0 0 10px rgba(255, 255, 255, 0.12);
  }
}
.hero-partners span {
  position: relative;
}

.hero-partners .partner span::after {
/*.hero-partners span::after {*/
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  opacity: 0.4;
}

/* ========================= */
/* ADD LOGO SUPPORT */
/* ========================= */

.hero-partners .partner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/*.hero-partners img {*/
/*  height: 28px;*/
/*  width: auto;*/
/*  object-fit: contain;*/
/*  transition: transform 0.4s ease, opacity 0.4s ease;*/
/*}*/

.hero-partners img {
  height: 28px;
  width: auto;
  object-fit: contain;

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.35));
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;

  animation: logoGlow 3.5s ease-in-out infinite;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.25));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.65));
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.25));
  }
}

.hero-partners .partner:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.9));
}



.logo2 {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;        /* adjust as needed */
  width: auto;
  object-fit: contain;
  border-radius: 5px;
}

.logo3 {
  display: flex;
  align-items: center;
  justify-content: center;   /* horizontal center */
}

