/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'times new roman', sans-serif;
}

body {
  background: #f5f5f5;
  color: #000;
}


/* ===== Navbar ===== */
.custom-navbar {
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    height:80px;

    
}

/* Navbar Logo */
.navbar-brand img{
  height:35px;        /* control pannra main value */
  width:auto;         /* stretch aagadhu */
  object-fit:contain;/* full logo visible */
   max-width:100px;    /* romba perusa pogama */

}
 


.custom-navbar .nav-link {
    color: #1F2933;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
    color: #BF092F;
}
/* Dropdown – Modern Style */
.custom-navbar .dropdown-menu{
  border-radius:12px;
  padding:8px 0;
  border:none;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  background:#ffffff;
}

/* Dropdown item */
.custom-navbar .dropdown-item{
  color:#1F2933;
  font-weight:500;
  padding:10px 20px;          /* better spacing */
  transition:background 0.25s ease, 
             color 0.25s ease,
             padding-left 0.25s ease;
}

/* Hover effect */
.custom-navbar .dropdown-item:hover{
  background:#BF092F;
  color:#ffffff;
  padding-left:26px;          /* 🔥 subtle slide effect */
}

/* Active item */
.custom-navbar .dropdown-item.active{
  background:#BF092F;
  color:#ffffff;
}


/* Buttons */
.btn-custom {
    background-color: #BF092F;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover{
  background-color:#fff;
  color:#BF092F;
  transform:translateY(-2px);
  border:2px solid #BF092F;
}


/* ===== Active Nav Link ===== */
.custom-navbar .nav-link.active{
    color:#BF092F !important;
    font-weight:700;
    position:relative;
}

/* underline effect for active link */
.custom-navbar .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:3px;
    background:#BF092F;
    border-radius:3px;
}

/* Active Dropdown Item */
.custom-navbar .dropdown-item.active{
    background:#BF092F;
    color:#fff;
    font-weight:600;
}
/* ===== Mobile / Tablet Navbar FULL WIDTH FIX ===== */
@media (max-width: 991px) {

  html, body{
    width:100%;
    overflow-x:hidden;
  }
.navbar-brand{
    padding-left:50px; 
    width:150px;  /* 👈 left thalli */
     /* 👈 right thalli */
  }
  /* Navbar full width bar */
  .custom-navbar{
    width:100vw;
    margin:0;
    padding:15px;
    background:#ffffff;
  }
  
  /* Remove container limitation */
  .custom-navbar .container,
  .custom-navbar .container-fluid{
    max-width:100%;
    width:100%;
    padding-left:0;
    padding-right:0;
  }

  /* FULL WIDTH dropdown menu */
  .custom-navbar .navbar-collapse{
    position:absolute;
    top:100%;
    left:0;
    width:100vw;              /* 🔥 IMPORTANT */
    background:#ffffff;
    padding:20px;
    border-radius:0;          /* 🔥 remove rounded */
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
  }

}



/* --- Footer ----- */
.stackly-footer {
  background: #FFFFFF; /* dark black */
  color: #ffffff;
  padding: 80px 20px 30px;
  
  
}

.sf-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr; /* logo wider, others uniform */
  gap: 30px; /* reduced spacing */
}

/* Columns */
.sf-col h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #BF092F;
  font-weight: 600;
}

.sf-col p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #000000;
  line-height: 1.5;
  display: flex;           /* align icon + text */
  align-items: center;     /* vertical center */
  gap: 8px;                /* space between icon and text */
}

.sf-col ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
}

.sf-col ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.sf-col ul li a {
  color: #000000;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.sf-col ul li a:hover {
  color: #b91c1c;
  padding-left: 5px;
}

/* Newsletter Form */
.sf-form {
  display: flex;
  gap: 6px;
  margin: 12px 0;
}

.sf-form input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  color: #000000;
}

.sf-form button {
  padding: 8px 12px;
  background: #000000;
  color: #BF092F;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-form button:hover {
  background: #fff;
  
}

.sf-form button i {
  font-size: 16px;
  
}

/* Social Icons */
.sf-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #BF092F;
  transition: 0.3s;
}

.sf-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Icons */
.sf-col p i {
  color: #b91c1c;
  transform: none !important; /* fix flipped icons */
  direction: ltr !important;  /* ensure LTR */
  font-size: 16px;            /* uniform icon size */
}

/* Footer bottom */
.sf-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Logo */
.sf-logo{
  width:190px;
  object-fit:contain;
  margin-left:-10px;
  margin-bottom:20px;
  transform:none; /* 🔥 scale remove */
}
/* Tablet */
@media (max-width: 991px) {
  .sf-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
   .sf-logo{
    margin-left:-20px;  
    width:190px;
    /* left side thalli */
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sf-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sf-logo{
    margin-left:-12px;   /* mobile-ku perfect spacing */
    width:200px;         /* small screens-la balance */
  }
  .sf-form {
    flex-direction: column;
  }
  .sf-form input,
  .sf-form button {
    width: 100%;
  }
}
.phone-icon{
  width:16px;
  height:16px;
  fill:#b91c1c;      /* white icon */
  margin-right:8px;
  vertical-align:middle;
}

/* Home page */
/* HERO SECTION */
.hero{
  height:100vh;
  background:url("../images/black-man-barbershop-cute-makes-600nw-1937720416.webp") center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

/* WRAPPER */
.hero-wrapper{
  position:relative;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 70px;
}

/* LEFT CONTENT */
.hero-content{
  color:#fff;
  width:600px;
}

.hero-content h1{
  font-size:60px;
  margin-bottom:15px;
}

.hero-content p{
  font-size:17px;
  margin-bottom:25px;
  color:#eee;
}

/* RIGHT FORM */
.hero-form{
  background:#ffffff;
  width:350px;
  padding:30px;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.hero-form h3{
  margin-bottom:20px;
  color:#BF092F;
  text-align:center;
}

.hero-form form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.hero-form input{
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:14px;
}

.hero-form button{
  background:#BF092F;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  font-size:15px;
  font-weight: 600;
  cursor:pointer;
}

.hero-form button:hover{
  background:#9f0728;
}
/* MOBILE VIEW ONLY */
@media (max-width: 576px){

  .hero{
    height:auto;
    padding:70px 0;
  }

  .hero-wrapper{
    flex-direction:column;   /* vertical */
    align-items:center;
    gap:35px;
    padding:0 20px;

  }

  .hero-content{
    width:100%;
    margin-top: 40px;
  }

  .hero-content h1{
    font-size:32px;
    align-items: start;
  }

  .hero-content p{
    font-size:15px;
  }

  .hero-form{
    width:100%;
    max-width:300px;   /* 👈 kuttiya form */
    margin:0 auto;     /* 👈 center */
  }
}

/* contact page */

/* ================= GLOBAL SIDE GAP ================= */
.contact-banner,
.section-header,
.two-col,
.contact-info,
.contact-form{
  padding-left:20px;
  padding-right:20px;
}

/* ================= BANNER ================= */


/* ================= SECTION HEADER ================= */
.section-header{
  margin:80px auto 40px;
  text-align:center;
}

.section-header h2{
  font-size:36px;
  margin-bottom:10px;
  color: #BF092F;
}

.section-header p{
  color:#000;
  font-size:17px;
  max-width:700px;
  margin:auto;
}

/* ================= TWO COLUMN ================= */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:center;
  padding-top:40px;
  padding-bottom:20px;
}

.two-col.reverse{
  direction:rtl;
}

.two-col.reverse > *{
  direction:ltr;
}

.two-col img{
  width:100%;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* ================= WHY SECTION ================= */
.why-content h3{
  font-size:28px;
  margin-bottom:12px;
}

.why-content p{
  margin-bottom:17px;
  color:#000;
}

.why-content ul{
  list-style:none;
}

.why-content ul li{
  margin-bottom:10px;
  font-size:17px;
  position:relative;
  padding-left:20px;
}

.why-content ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#b91c1c;
}


/* Smart Living */

/* ===============================
   BARBER IMAGE STACK SECTION
================================ */

.img-stack{
  width:100%;
  min-height:50vh;        /* IMPORTANT */
  padding:10px 20px;
  background-color:#000000 !important; /* force apply */
  position:relative;
}


.is-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  
}

/* ===== IMAGE STACK ===== */
.is-images{
  position:relative;
}

.main-img{
  width:100%;
  border-radius:20px;
  box-shadow:0 25px 50px rgba(0,0,0,0.35);
  animation:fadeZoom 1.2s ease forwards;
}

.small-img{
  position:absolute;
  width:45%;
  bottom:-30px;
  right:-30px;
  border-radius:16px;
  border:6px solid #ffffff;
  box-shadow:0 18px 40px rgba(0,0,0,0.4);
  animation:floatSmall 5s ease-in-out infinite;
}

/* ===== CONTENT ===== */
.is-content{
  animation:fadeSlide 1.2s ease forwards;
}

.is-tag{
  font-size:13px;
  font-weight:600;
  color:#000000; /* gold accent */
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:12px;
  text-transform:uppercase;
}

.is-content h2{
  font-size:38px;
  color:#ffffff;
  margin-bottom:18px;
  line-height:1.3;
}

.is-content p{
  font-size:17px;
  color:#cbd5f5;
  line-height:1.8;
  max-width:480px;
}

/* ===== ANIMATIONS ===== */
@keyframes floatSmall{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-18px); }
  100%{ transform:translateY(0); }
}

@keyframes fadeZoom{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

@keyframes fadeSlide{
  from{
    opacity:0;
    transform:translateX(40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media(max-width:991px){
  .is-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .small-img{
    right:20px;
  }

  .is-content p{
    margin:auto;
  }
}

/* Mobile */
@media(max-width:600px){
  .img-stack{
    padding:70px 15px;
  }

  .is-content h2{
    font-size:28px;
  }

  .is-content p{
    font-size:14px;
  }

  .small-img{
    width:55%;
    bottom:-20px;
    right:10px;
  }
}




/* ================= CONTACT INFO ================= */
.contact-info{
  padding-top:70px;
  padding-bottom:70px;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.info-box{
  background:#fff;
  padding:30px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.info-box i{
  font-size:28px;
  margin-bottom:12px;
  color:#b91c1c;
}

.info-box h4{
  margin-bottom:6px;
  font-size:16px;
}

.info-box p{
  font-size:14px;
  color:#555;
}

/* ================= CONTACT FORM ================= */
.contact-form{
  padding-top:80px;
  padding-bottom:80px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.form-content h2{
  margin-bottom:10px;
  font-size:28px;
}

.form-content p{
  margin-bottom:20px;
  color:#555;
}

.form-content input,
.form-content textarea{
  width:100%;
  padding:14px;
  margin-bottom:14px;
  border-radius:8px;
  border:1px solid #cbd5e1;
  font-size:14px;
}

.form-content textarea{
  resize:none;
  height:120px;
}

.form-content button{
  padding:14px 30px;
  background:#b91c1c;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.form-content button:hover{
  background:#991b1b;
}

.map-content iframe{
  width:100%;
  height:100%;
  min-height:360px;
  border-radius:16px;
  border:none;
}

/* testimonial section */
.ts-section{
  padding:80px 20px;
  background:#fff;
}

.ts-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.ts-heading{
  font-size:34px;
  color:#BF092F;
  margin-bottom:8px;
}

.ts-subheading{
  font-size:17px;
  color:#000000;
  max-width:600px;
  margin:0 auto 50px;
}

.ts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.ts-card{
  background:#000000;
  padding:30px 25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.4s ease;
}

.ts-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

.ts-img{
  width:70px;
  height:70px;
  border-radius:50%;
  object-fit:cover;
  margin:0 auto 12px;   /* center */
  display:block;        /* important */
}


.ts-stars{
  color:#fbbf24;
  font-size:18px;
  margin-bottom:12px;
}

.ts-text{
  font-size:16px;
  color:#fff;
  line-height:1.7;
  margin-bottom:18px;
}

.ts-name{
  font-size:16px;
  font-weight:600;
  color:#fff;
}

.ts-place{
  font-size:14px;
  color:#cbd5f5;
}

/* Tablet */
@media(max-width:991px){
  .ts-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .ts-grid{
    grid-template-columns:1fr;
  }
}


/* ================= VISIT SECTION ================= */
.visit-content h3{
  font-size:28px;
  margin-bottom:12px;
}

.visit-content p{
  margin-bottom:17px;
  color:#000;
}

.visit-points p{
  margin-bottom:8px;
  font-size:17px;
}
/* ===== IMAGE FIX ONLY ===== */
.visit-image{
  width:100%;
  height:auto;          /* ❌ 10% remove */
  overflow:hidden;
}

.visit-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .info-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .form-grid{
    grid-template-columns:1fr;
  }
 .visit-image{
  height: 300px;
  object-fit: cover;
}
  .two-col{
    grid-template-columns:1fr;
  }
}
/* ===== DESKTOP IMAGE HEIGHT FIX ONLY ===== */
@media(min-width:993px){
  .visit-image{
    max-height:380px;     /* adjust 320 / 360 / 380 if needed */
  }

  .visit-image img{
    height:100%;
    width: 100%;
    object-fit:cover;
  }
}

@media(max-width:576px){
  .faq-banner h1{
    font-size:30px;
  }

  .section-header h2{
    font-size:28px;
  }

  .info-grid{
    grid-template-columns:1fr;
  }
}

/* about page */



img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* ================= GLOBAL SIDE GAP ================= */
.faq-banner,
.about-section,
.why-modern,
.img-stack,
.team-section{
  padding-left:20px;
  padding-right:20px;
}

/* ================= COMMON ANIMATION ================= */
@keyframes fadeUp{
  0%{
    opacity:0;
    transform:translateY(30px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= BANNER ================= */
.faq-banner{
  background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),
  url("../images/barber-banner.jpg") center/cover no-repeat;
  padding:100px 0;
  color:#fff;
}

.faq-banner-content{
  text-align:center;
  animation:fadeUp 1s ease forwards;
}

.faq-banner h1{
  font-size:44px;
  margin-bottom:10px;
}

.faq-banner p{
  font-size:14px;
  opacity:0.85;
}

/* ================= ABOUT SECTION ================= */

.about-banner{
  background:#000000;
  padding-top:180px;
  padding-bottom:150px;

  color:#fff;
}

.about-banner-content{
  text-align:center;
}

.about-banner h1{
  font-size:42px;
  margin-bottom:10px;
}

.about-banner p{
  font-size:17px;
  opacity:0.85;
}
.about-section{
  padding:90px 0;
}

.about-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:50px;
  align-items:center;
}
/* ABOUT LEFT CONTENT ALIGNMENT */

/* Heading */
.about-heading{
  text-align:left;
  
}

.about-left{
  text-align:left !important;
}

/* Small tag / subheading */
.about-tag{
  font-size:14px;
  color:#b91c1c;
  display:block;
  font-weight: 600;        /* IMPORTANT */
  text-align:left;
}

/* Paragraph – JUSTIFY */
.about-text{
  font-size:17px;
  color:#000000;
  margin-bottom:16px;
  text-align:justify;      /* 🔥 JUSTIFY */
  line-height:1.7;
}

/* ABOUT POINTS – LEFT ALIGN FIX */
.about-points{
  list-style:none;
  margin:25px 0;
  padding:0;
  text-align:left;          /* LEFT */
}

.about-points li{
  margin-bottom:10px;
  font-size:17px;
  padding-left:22px;
  position:relative;
  text-align:left;          /* LEFT */
}

.about-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  
  top:0;
  color:#b91c1c;
}

/* BUTTON – CENTER ALIGN FIX */
.about-btn{
  display:inline-block;
  padding:12px 28px;
  background:#b91c1c;
  color:#fff;
  border-radius:6px;
  font-weight:600;
  transition:0.4s;
}

/* Button wrapper (important) */
.about-left{
  text-align:center;        /* CENTER BUTTON ONLY */
}

/* Right stats */
.about-right{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  animation:fadeUp 1.2s ease forwards;
}

.about-box{
  background:#fff;
  padding:30px 20px;
  border-radius:16px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
}

.about-box:hover{
  transform:translateY(-8px);
}

.about-box h3{
  font-size:34px;
  color:#b91c1c;
}

.about-box p{
  font-size:14px;
}
/* ===============================
   RESPONSIVE – TABLET & MOBILE
================================ */

/* Tablet view */
@media (max-width: 992px){

  /* Banner */
  .about-banner{
    padding-top:150px;
    padding-bottom:120px;
  }

  .about-banner h1{
    font-size:34px;
  }

  .about-banner p{
    font-size:14px;
  }

  /* Section spacing */
  .about-section{
    padding:70px 0;
  }

  /* Container */
  .about-container{
    grid-template-columns:1fr;
    gap:40px;
    padding:0 15px;   /* 🔥 left & right margin */
  }

  .about-heading{
    font-size:32px;
  }

  .about-text{
    font-size:15px;
  }

  /* Right stats */
  .about-right{
    grid-template-columns:1fr 1fr;
  }
}

/* Mobile view */
@media (max-width: 576px){

  /* Banner */
  .about-banner{
    padding-top:130px;
    padding-bottom:100px;
  }

  .about-banner-content{
    padding:0 15px;   /* 🔥 left & right margin */
  }

  .about-banner h1{
    font-size:26px;
  }

  .about-banner p{
    font-size:13px;
  }

  /* Section */
  .about-section{
    padding:60px 0;
  }

  /* Container */
  .about-container{
    padding:0 15px;   /* 🔥 left & right margin */
    gap:30px;
  }

  .about-heading{
    font-size:26px;
  }

  .about-text{
    font-size:14px;
  }

  .about-points li{
    font-size:14px;
  }

  /* Stats boxes */
  .about-right{
    grid-template-columns:1fr;
  }

  .about-box h3{
    font-size:28px;
  }

  .about-box p{
    font-size:13px;
  }
}
/* ================= WHY MODERN ================= */
.why-modern{
  padding:90px 0;
  background:#ffffff;
}

.wm-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px 20px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  align-items:center;

}

/* LEFT CONTENT */
.wm-left{
  animation:fadeUp 1s ease forwards;
}

.wm-tag{
  font-size:14px;
  font-weight:600;
  color:#b91c1c;
  letter-spacing:1px;
}

.wm-left h2{
  font-size:34px;
  margin:12px 0;
  line-height:1.3;
}

.wm-left p{
  color:#555;
  font-size:17px;
  line-height:1.7;
}

/* IMAGE (Desktop + Tablet SAME) */
.wm-image{
  animation:fadeUp 1.2s ease forwards;
  display:flex;
  justify-content:center;
}

.wm-image img{
  width:100%;
  max-width:320px;
  
  height:auto;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* RIGHT CONTENT */
.wm-right{
  animation:fadeUp 1.4s ease forwards;
}

.wm-item{
  display:flex;
  gap:14px;
  margin-bottom:20px;
}

.wm-icon{
  color:#b91c1c;
  font-size:18px;
  margin-top:4px;
}

.wm-item h4{
  font-size:16px;
  margin-bottom:6px;
}

.wm-item p{
  font-size:17px;
  color:#555;
  line-height:1.6;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= MOBILE VIEW ONLY ================= */
@media (max-width:600px){

  .why-modern{
    padding:60px 0;
  }

  .wm-container{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
    gap:30px;
  }

  .wm-left h2{
    font-size:26px;
  }

  /* CENTER ALIGN RIGHT ITEMS */
  .wm-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .wm-icon{
    font-size:20px;
  }

  /* IMAGE SIZE FOR MOBILE */
  .wm-image img{
    max-width:260px;
  }
}
/* ================= TABLET VIEW ONLY ================= */
@media (min-width:601px) and (max-width:1024px){

  .wm-image img{
    max-width:420px;   /* increase image width */
    height:350px;
    object-fit: cover;
  }

  .wm-left h2{
    font-size:32px;    /* optional – tablet la konjam bold look */
  }

}


/* ================= IMAGE STACK ================= */
.img-stack{
  padding:90px 0;
  background:#f8fafc;
}

.is-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.is-images{
  position:relative;
  animation:fadeUp 1s ease forwards;
}

.main-img{
  border-radius:18px;
}

.small-img{
  position:absolute;
  width:45%;
  bottom:-30px;
  right:-20px;
  border-radius:16px;
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.is-content{
  animation:fadeUp 1.2s ease forwards;
}

.is-tag{
  font-size:14px;
  font-weight:600;
  color:#b91c1c;
}

.is-content h2{
  font-size:34px;
  margin:12px 0;
}
@media (max-width:992px){

  .img-stack{
    padding:70px 15px;
  }

  .is-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .is-images{
    justify-self:center;
  }

  .main-img{
    max-width:100%;
  }

  .small-img{
    width:40%;
    bottom:-25px;
    right:-10px;
  }

  .is-content{
    text-align:center;
  }

  .is-content h2{
    font-size:30px;
  }
}

/* ================= TEAM SECTION ================= */
/* ================= TEAM SECTION ================= */
.team-section{
  padding:90px 0;
  background:#ffffff;
}

.team-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.team-heading{
  font-size:36px;
  margin-bottom:10px;
  color:#BF092F;
}

.team-subheading{
  color:#000000;
  font-size: 17px;
}

/* ================= GRID ================= */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr); /* Desktop = 4 cards */
  gap:30px;
  margin-top:40px;
}

/* ================= CARD ================= */
.team-card{
  background:#f8fafc;
  padding:20px;
  border-radius:16px;
  transition:0.4s;
  animation:fadeUp 1.3s ease forwards;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */
.team-img img{
  width:100%;
  height:250px; /* Desktop height */
  object-fit:cover;
  border-radius:14px;
  margin-bottom:15px;
}

/* ================= CARD TEXT ================= */
.team-card h4{
  font-size:18px;
  margin-bottom:5px;
}

.team-card span{
  font-size:16px;
  color:#555;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= TABLET FIX ================= */
@media (max-width:991px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .team-card{
    display:flex;
    flex-direction:column-reverse; /* text top, image bottom */
    align-items:center;
  }

  .team-img img{
    height:350px; /* reduce image height */
    width:300px; /* slightly smaller to fit nicely */
    margin-top:15px; /* spacing between text and image */
  }

  .team-card h4,
  .team-card span{
    text-align:center;
  }
}

/* ================= MOBILE ================= */
@media (max-width:600px){
  .team-grid{
    grid-template-columns:repeat(2,1fr); /* Mobile = 2 cards */
    gap:20px;
  }

  .team-img img{
    height:180px; /* Mobile image height */
  }

  .team-heading{
    font-size:28px;
  }

  .team-subheading{
    font-size:14px;
  }

  .team-card{
    text-align:center;
  }

  .team-card:hover{
    transform:none; /* no hover lift on mobile */
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
  }
}
/* ================= ABOUT / STORY SECTION ================= *//* ================= ABOUT STORY ================= */
.about-story{
  padding:80px 20px;
}

.story-grid{
  display:grid;
  grid-template-columns:1fr 1fr; /* Desktop: 2 columns */
  gap:40px;
  align-items:center;
}

/* IMAGE */
.story-img img{
  width:100%;
  height:500px; /* Desktop height */
  border-radius:16px;
  box-shadow:0 12px 25px rgba(0,0,0,0.15);
  object-fit:cover;
}

/* CONTENT */
.story-content h2{
  font-size:32px;
  margin-bottom:12px;
}

.story-content p{
  color:#555;
  margin-bottom:12px;
  line-height:1.7;
}

/* ================= TABLET ================= */
@media(max-width:992px){
  .story-grid{
    grid-template-columns:1fr; /* single column for tablet */
    gap:30px;
  }

  .story-img img{
    height:550px; /* reduce height for tablet */
    object-fit: cover;
    width:900px;
  }

  .story-content h2{
    font-size:28px;
  }

  .story-content p{
    font-size:15px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .about-story{
    padding:60px 15px;
  }

  .story-img img{
    height:250px; /* reduce height for mobile */
  }

  .story-content h2{
    font-size:24px;
    margin-bottom:10px;
  }

  .story-content p{
    font-size:14px;
    line-height:1.6;
  }
}

/* ====================== ABOUT / GALLERY SECTION ====================== */
.gallery-section {
  padding: 60px 20px;
  background: #f8f8f8;
}

.gallery-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  
}

.gallery-section p {
  text-align: center;
  color: #000000;
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== GALLERY GRID ===== */
/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;   /* 🔥 THIS IS THE FIX */
  gap: 20px;
}

/* ===== IMAGE ===== */
.gallery-grid img {
  width: 100%;
  height: 100%;            /* NOW IT WILL WORK */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1),
              box-shadow 0.6s ease,
              filter 0.6s ease;
  cursor: pointer;
  display: block;
}

/* ===== HOVER ANIMATION ===== */
.gallery-grid img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== TABLET RESPONSIVE (always 3 columns per row) ===== */
@media (max-width: 992px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* fixed 3 columns */
    gap: 20px; /* space between items */
    justify-items: center; /* center items inside column */
  }

  .gallery-grid .gallery-item{
    width:100%; /* each item fills its column */
  }
}



/* ===== DESKTOP RESPONSIVE (already 4 columns) ===== */
@media (min-width: 993px) {
  .gallery-grid {
    
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== BARBER TIPS SECTION ===== */
.barber-tips-section{
  padding:80px 20px;
  background:#f8f8f8;
}

.barber-tips-container{
  display:grid;
  grid-template-columns:1.3fr 0.7fr; /* left content bigger */
  gap:40px;
  align-items:center;
  max-width:1200px;
  margin:auto;
}

/* LEFT CONTENT */
.barber-tag{
  color:#BF092F;
  font-weight:600;
  letter-spacing:1px;
  display:inline-block;
  margin-bottom:12px;
}

.barber-heading{
  font-size:38px;
  margin-bottom:20px;
  color:#111;
}

.barber-text{
  font-size:17px;
  line-height:1.8;
  color:#333;
  margin-bottom:20px;
}

.barber-points{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.barber-points li{
  position:relative;
  padding-left:25px;
  margin-bottom:12px;
  font-size:17px;
  color:#333;
}

.barber-points li::before{
  content:"✔"; /* tick mark */
  position:absolute;
  left:0;
  color:#BF092F;
  font-weight:bold;
}

/* BUTTON */
.barber-btn{
  padding:10px 24px;
  background:#BF092F;
  color:#fff;
  font-weight:600;
  border-radius:5px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.barber-btn:hover{
  background:#fff;
  color:#BF092F;
  border:2px solid #BF092F;
}

/* RIGHT IMAGE */
.barber-tips-right{
  display:flex;
  justify-content:flex-end;
}

.barber-tips-right img{
  width:100%;
  max-width:380px; /* fixed width */
  height:auto;
  border-radius:16px;
  object-fit:cover;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:991px){
  .barber-tips-container{
    grid-template-columns:1fr;
    gap:30px;
  }
  .barber-tips-right{
    justify-content:center;
  }
  .barber-tips-right img{
    max-width:90%;
    width: 50%;
  }
}

/* Mobile */
@media(max-width:600px){
  .barber-tips-right img{
    max-width:100%;
  }
  .barber-heading{
    font-size:28px;
  }
  .barber-text, .barber-points li{
    font-size:14px;
  }
}


/* ====================== SERVICES PAGE ====================== */
.services-banner {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("../images/barber-banner.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.services-banner h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.services-banner .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
}

/* ================= SECTION HEADER ================= */
.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: 50px;
  color: #991b1b;
}

.section-subheading {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ================= SERVICES GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0 20px 60px;
}

/* ================= SERVICE CARD ================= */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
}

.service-icon img {
  width: 100%;
  height: 100%;
 
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-banner h1 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-subheading {
    font-size: 14px;
  }
  
    
  
}

/* services page */
/* ================== GLOBAL ================== */
body {
  font-family: 'Montserrat', sans-serif;
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ================== SECTION HEADINGS ================== */
.section-heading {
  font-size:36px;
  color:#BF092F;
  font-weight:600;
  text-align:center;
}

.section-subheading {
  font-size:16px;
  text-align:center;
  margin-top:10px;
  opacity:0.9;
}

/* ================= PRICING SECTION ================= */
.pricing-section{
  padding:90px 20px;
  background:#fff;
}

.pricing-container{
  max-width:1200px;
  margin:auto;
  text-align: left;
  
}

.pricing-heading{
  font-size:36px;
  color:#BF092F;
  margin-bottom:10px;
  text-align: center;
  
}

.pricing-subheading{
  font-size:17px;
  color:#000000;
  max-width:600px;
  margin:0 auto 60px;
  text-align:center;
}

/* ================= GRID ================= */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr); /* Desktop = 3 cards */
  gap:30px;
}

/* ================= CARD ================= */
.pricing-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 5px 5px rgba(0,0,0,0.4);
  position:relative;
  transition:all 0.4s ease;
}



/* POPULAR CARD */
.pricing-card.popular{
  border:2px solid #b91c1c;
}

/* BADGE */
.badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#b91c1c;
  color:#fff;
  font-size:13px;
  padding:6px 14px;
  border-radius:20px;
  font-weight:600;
}

/* ================= CONTENT ================= */
.package-title{
  font-size:22px;
  color:#000000;
  margin-bottom:12px;
}
/* ================= CONTENT ================= */
.package-features{
  list-style:none;
  padding:0;
  margin-bottom:30px;
  text-align:center;              /* FIX: left align */
}

.package-features li{
  font-size:17px;
  color:#000000;
  margin-bottom:12px;
  display:flex;                 /* FIX: same order */
  align-items:center;
  gap:8px;
}


.package-features li{
  font-size:17px;
  color:#000000;
  margin-bottom:12px;
}

/* ================= PRICE BUTTON ================= */
.price-btn{
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  background: #BF092F;
  border: 2px solid #BF092F;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* slide background */
.price-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 0;
}

/* text */
.price-btn span{
  position: relative;
  z-index: 2;
  color: #ffffff;
  transition: color 0.4s ease;
}

/* hover effect */
.price-btn:hover::before{
  transform: scaleY(1);
}

.price-btn:hover span{
  color: #BF092F;
}

/* ================= TABLET ================= */
@media(max-width:991px){
  .pricing-grid{
    grid-template-columns:repeat(3,1fr); /* Tablet = 2 cards */
    gap:25px;
  }

  .package-title{
    font-size:20px;
  }

  .package-price{
    font-size:28px;
  }

  .package-features li{
    font-size:14px;
  }

  .price-btn{
    padding:10px 28px;
    font-size:14px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:600px){
  .pricing-grid{
    grid-template-columns:1fr; /* Mobile = 1 card */
    gap:20px;
  }

  .package-title{
    font-size:18px;
  }

  .package-price{
    font-size:24px;
  }

  .package-features li{
    font-size:13px;
  }

  .price-btn{
    width:100%; /* Full width button */
    padding:12px 0;
    font-size:15px;
  }
}


/* special offers page */

.services-section{
  padding:80px 0;
  background:#f8fafc;
}

.services-wrapper{
  width:90%;
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.services-title{
  font-size:36px;
  color:#BF092F;
  font-weight:700;
  margin-bottom:10px;
}

.services-subtitle{
  color:#000;
  margin-bottom:50px;
  font-size:17px;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:30px;
}

/* CARD */
.service-card{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:12px;
  overflow:hidden;
}

.service-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */
.service-name{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
}

.service-desc{
  font-size:17px;
  color:#6b7280;
  line-height:1.6;
}

/* ================== GALLERY SECTION ================== */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  grid-auto-rows: 200px; /* Each row height fixed */
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05) rotate(0.5deg);
  filter: brightness(1.1);
}

/* ================== RESPONSIVE ================== */
@media(max-width: 992px){ /* Tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-auto-rows: 180px; /* slightly smaller row height */
  }
}

@media(max-width: 576px){ /* Mobile */
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column */
    grid-auto-rows: 200px; /* row height */
  }
}
/* ================== OFFERS SECTION ================== */
.offers-section {
  padding:80px 20px;
  background:#f8fafc;
}

.offers-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr); /* Desktop: 3 columns */
  gap:25px;
  margin-top:40px;
}

.offer-card {
  position:relative;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor:pointer;
}

.offer-card img{
  width:100%;
  height:320px;   /* Desktop height */
  display:block;
  object-fit:cover;
  transition:transform 0.5s ease;
}

.offer-card h3{
  font-size:20px;
  margin:15px 15px 8px;
  color:#020617;
}

.offer-card p{
  font-size:17px;
  color:#555;
  margin:0 15px 20px;
}

.offer-card:hover {
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

.offer-card:hover img {
  transform:scale(1.05);
}

/* ================== TABLET ================== */
@media(max-width:992px){
  .offers-grid{
    grid-template-columns:repeat(3,1fr); /* Tablet: 2 columns */
    gap:20px;
  }

  .offer-card img{
    height:280px; /* smaller image for tablet */
  }

  .offer-card h3{
    font-size:18px;
  }

  .offer-card p{
    font-size:13px;
  }
}

/* ================== MOBILE ================== */
@media(max-width:600px){
  .offers-grid{
    grid-template-columns:1fr; /* Mobile: 1 column */
    gap:15px;
  }

  .offer-card img{
    height:220px; /* smaller image for mobile */
  }

  .offer-card h3{
    font-size:16px;
  }

  .offer-card p{
    font-size:12px;
  }
}


/* ================== TIPS SECTION ================== */
.tips-section {
  padding: 80px 20px;
  
}

.tips-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
}

.section-subheading {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0.9;
}

/* GRID */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 20px;
  margin-top: 40px;
}


/* user dashboard page */

:root {
  --primary: #BF092F; /* hover/active color */
  --sidebar-bg: #2563EB;
  --light-bg: #f1f5f9;
  --card-bg: #fff;
  --panel-bg: #fff;
  --gray: #6b7280;
  --radius: 12px;
  --text-white: #fff;
}

/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--light-bg); overflow-x:hidden; }

/* LAYOUT */
.user-layout { display:flex; min-height:100vh; }

/* SIDEBAR */
.user-sidebar {
  width:220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display:flex;
  flex-direction:column;
  padding:15px 10px;
  transition: transform 0.3s ease;
  flex-shrink:0;
  position:relative;
}
.user-sidebar .navbar-brand { display:flex; justify-content:center; margin-bottom:12px; }
.user-sidebar .user-menu { list-style:none; padding:0; margin-top:0; }
.user-sidebar .user-menu li { 
  padding:10px 8px; display:flex; align-items:center; gap:10px; cursor:pointer; border-radius: var(--radius); margin-bottom:6px; font-size:14px; transition:0.3s;
}
/* HOVER & ACTIVE */
.user-sidebar .user-menu li:hover,
.user-sidebar .user-menu li.active { background: var(--primary); color:#fff; }
/* LOGOUT */
.user-sidebar .user-menu li.logout { margin-top:auto; }
.user-sidebar .user-menu li.logout a { color:#fff; text-decoration:none; display:flex; align-items:center; gap:10px; }
.user-sidebar .user-menu li.logout a:hover { background: var(--primary); border-radius: var(--radius); padding:10px 8px; }

/* CLOSE BUTTON */
.user-sidebar .user-close-btn { 
  display:none; position:absolute; top:15px; right:15px; font-size:24px; color:#fff; background:none; border:none; cursor:pointer; z-index:1100;
}

/* LOGOUT BUTTON */
.user-sidebar .user-menu li.logout a { 
    /* background color */
  color: #000;           /* text color black */
 
 
}



/* MAIN CONTENT */
.user-main { flex:1; padding:20px; transition: margin-left 0.3s ease; overflow-x:hidden; }

/* TOPBAR */
.user-topbar { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.user-topbar h1 { font-size:24px; color: var(--primary); }
.user-topbar img { width:35px; height:35px; border-radius:50%; }
.user-hamburger { display:none; background:none; border:none; font-size:24px; cursor:pointer; color: var(--gray); margin-right:10px; }

/* CARDS */
.user-stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:15px; margin-bottom:20px; }
.user-card { background: var(--card-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); text-align:center; }
.user-card h3 { margin-top:5px; }
.user-card .confirmed { color:green; font-weight:bold; }

/* PANELS */
.user-panel { background: var(--panel-bg); padding:20px; border-radius: var(--radius); box-shadow:0 2px 6px rgba(0,0,0,0.1); margin-bottom:20px; }
.user-panel h2 { margin-bottom:15px; color: var(--primary); }

/* TABLES */
.user-table { width:100%; border-collapse:collapse; }
.user-table th, .user-table td { padding:10px; text-align:left; border-bottom:1px solid #ddd; }
.user-table th { background:#f4f6f8; }
.user-table td.confirmed { color:green; font-weight:bold; }
.user-table td.completed { color:gray; font-weight:bold; }

/* BOOKING FORM */
.user-booking-form { display:flex; gap:10px; flex-wrap:wrap; }
.user-booking-form select, .user-booking-form input { padding:10px; border-radius: var(--radius); border:1px solid #ccc; }
.user-booking-form button { padding:10px 20px; border:none; border-radius: var(--radius); background: var(--primary); color:#fff; cursor:pointer; }

/* RESPONSIVE */
@media(max-width:1024px){
  .user-sidebar{ width:180px; position:fixed; top:0; left:0; bottom:0; transform:translateX(-100%); z-index:1000; }
  .user-sidebar.open{ transform:translateX(0); }
  .user-sidebar .user-close-btn{ display:block; }
  .user-main{ margin-left:0; }
  .user-hamburger { display:block; }
  .navbar-branding{
    margin-left:29px;   /* 👈 left gap */
  }

  .navbar-branding img{
    width:35px;
    transform:scale(1.6);
    margin-bottom:15px;
    margin-top: 10px;
  }
  
}

@media(max-width:768px){
  .user-stats{ grid-template-columns:1fr; }
  .user-booking-form{ flex-direction:column; }
    .navbar-branding{
    margin-left:30px;   /* 👈 left gap */
  }

  .navbar-branding img{
    width:55px;
    transform:scale(1.4);
    margin-bottom:10px;
  }
  
}
@media(max-width:480px){
  .user-booking-form button{ width:100%; }
  .navbar-branding img{
    width:50px;
    transform:scale(1.25);
  }
  
  .navbar-branding{
    margin-left:28px;   /* 👈 small gap */
  }

  .navbar-branding img{
    width:50px;
    transform:scale(1.25);
  }
}
    /* TAB & MOBILE – CLOSE ICON FORCE BLACK */
@media (max-width:1024px){
  .user-close-btn,
  .user-close-btn i,
  .user-close-btn svg {
    color: #000 !important;
    fill: #000 !important;
  }
}

@media (max-width:768px){
  .user-close-btn,
  .user-close-btn i,
  .user-close-btn svg {
    color: #000 !important;
    fill: #000 !important;
  }
}


/* admin-dashboard page */

:root {
  --primary: #BF092F;
  --light-bg: #f1f5f9;
  --sidebar-bg: #FFFFFF;
  --card-bg: #ffffff;
  --panel-bg: #ffffff;
  --gray: #6b7280;
  --radius: 12px;
  --text-white: #000000;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {  background: var(--light-bg); overflow-x: hidden; }

/* Layout */
.dashboard-layout { display: flex; min-height: 100vh; }

/* SIDEBAR */
.user-sidebar {
  width: 220px;
  background: var(--sidebar-bg);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* prevent shrinking */
}

/* LOGO */
.user-sidebar .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.user-sidebar .navbar-brand img {
  width: 80px;
  display: block;
  object-fit: contain;
}

/* Menu */
.user-menu { list-style: none; padding: 0; margin-top: 0; }
.user-menu li { 
  padding: 10px 8px;
  cursor: pointer; 
  border-radius: var(--radius); 
  margin-bottom: 6px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 17px;
}
.user-menu li.active, .user-menu li:hover {  background: #BF092F;  /* your hover color */
  color: #ffffff;  }
.user-menu li.logout { margin-top: auto; }
.user-menu li.logout a { color: var(--text-white); text-decoration: none; display: flex; align-items: center; gap: 10px; }

/* Close button */
.user-sidebar .close-btn { 
  display: none; 
  background: none; border: none; color: var(--text-white); font-size: 24px; 
  cursor: pointer; position: absolute; top: 15px; right: 15px;
}

/* MAIN CONTENT */
.main-content { flex: 1; padding: 20px; transition: margin-left 0.3s ease; overflow-x: hidden; }

/* TOPBAR */
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.topbar h1 { color: var(--primary); font-size: 24px; }
.admin-profile { display: flex; align-items: center; gap: 10px; }
.admin-profile img { width: 35px; height: 35px; border-radius: 50%; }

/* QUICK ACTIONS */
.quick-actions { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.quick-actions .btn { padding: 10px 20px; border: none; border-radius: var(--radius); background: var(--primary); color: #fff; cursor: pointer; }

/* STATS GRID */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 15px; margin-bottom: 20px; }
.stat-card { background: var(--card-bg); padding: 20px; border-radius: var(--radius); text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.stat-card h2 { font-size: 22px; margin: 5px 0; }
.stat-card p { color: var(--gray); }

/* PANELS */
.dashboard-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.panel { background: var(--panel-bg); padding: 20px; border-radius: var(--radius); box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.panel h3 { margin-bottom: 10px; color: var(--primary); }
.panel ul.list { list-style: none; padding-left: 0; }
.panel ul.list li { padding: 8px 0; border-bottom: 1px solid #eee; }
.panel .amount { font-weight: bold; margin-bottom: 8px; }
.progress-bar { background: #eee; height: 10px; border-radius: 10px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 72%; background: var(--primary); }

/* BOOKINGS TABLE */
.booking-table { width: 100%; border-collapse: collapse; }
.booking-table th, .booking-table td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
.booking-table th { background: #f4f6f8; }
.booking-table td.success { color: green; font-weight: bold; }
.booking-table td.pending { color: orange; font-weight: bold; }

/* HAMBURGER */
.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray); margin-right: 10px; }

/* RESPONSIVE TABLET / MOBILE */
@media (max-width: 1024px) {
  .user-sidebar { 
    width: 180px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    z-index: 1000;
  }
  .user-sidebar.open { transform: translateX(0); }
  .user-sidebar .close-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1100;  /* make sure it's on top */
}

  .hamburger { display: block; }
  .dashboard-sections { grid-template-columns: 1fr; }
  .user-sidebar .navbar-brand img { width: 60px; margin-bottom: 8px; }
  .main-content { margin-left: 0; }
}

/* SMALL SCREENS */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .quick-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .quick-actions .btn { width: 100%; }
}



/* login page */
:root{
  --primary:#BF092F;
  --secondary:#111827;
  --accent:#000000;
  --white:#fff;
  --gray:#888;
}



/* Login Container */
.login-container{
  display:flex;
  margin-top: 200px ;
  margin-bottom: 190px;
  margin-left: 155px;
  width:90%;
  max-width:1000px;
   min-height:60vh;
  background:var(--white);
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  animation:fadeIn 1s ease;
}

.login-left{
  flex:1;
  background:linear-gradient(45deg,#BF092F,#f43f5e);
  color:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:40px;
  text-align:center;
}

.login-left h1 span{
  color:var(--accent);
}

.login-left p{
  margin-top:20px;
  font-size:16px;
  line-height:1.5;
}

.login-right{
  flex:1;
  padding:40px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-form{
  width:100%;
  max-width:300px;
  display:flex;
  flex-direction:column;
}

.login-form h2{
  margin-bottom:30px;
  color:var(--primary);
  text-align:center;
}

.input-group{
  position:relative;
  margin-bottom:20px;
}

.input-group i{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gray);
}

.input-group input{
  width:100%;
  padding:12px 12px 12px 35px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
  transition:0.3s;
}

.input-group input:focus{
  border-color:var(--primary);
  outline:none;
}

.form-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
  font-size:14px;
}

.form-options a{
  color:var(--primary);
  text-decoration:none;
}

.form-options a:hover{
  text-decoration:underline;
}

.btn-login{
  background:var(--primary);
  color:var(--white);
  border:none;
  padding:12px;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  transition:0.3s;
}

.btn-login:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}

.register-text{
  margin-top:20px;
  text-align:center;
  font-size:14px;
}

.register-text a{
  color:var(--primary);
  text-decoration:none;
  font-weight:600;
}

.register-text a:hover{
  text-decoration:underline;
}

/* Responsive */
/* ================== RESPONSIVE ================== */

/* ================== TABLET FULL WIDTH FIX ================== */
@media(max-width:992px){

  body{
    display:block;   /* flex irundha remove */
  }

  .login-container{
    flex-direction:column;
    width:100%;          /* 🔥 FULL WIDTH */
    max-width:100%;      /* 🔥 NO LIMIT */
    margin:120px 0;      /* 🔥 LEFT/RIGHT ZERO */
    border-radius:0;     /* optional – edge to edge look */
  }

  .login-left,
  .login-right{
    width:100%;
    max-width:100%;
  }
}


/* Mobile phones */
@media(max-width:600px){
  .login-container{
    flex-direction:column;

    align-items:center;
    margin:0px 17px 50px;
    margin-top: 150px;
  }

  .login-left, .login-right{
    width:100%;
    padding:20px;
  }

  .login-left h1{
    font-size:24px;
  }

  .login-left p{
    font-size:14px;
  }

  .login-right{
    justify-content:center !important; /* center form */
    align-items:center !important;
  }

  .login-form h2{
    font-size:20px;
    margin-bottom:20px;
  }

  .input-group input{
    padding:10px 10px 10px 35px;
    font-size:13px;
  }

  .btn-login{
    font-size:14px;
    padding:10px;
  }

  .register-text{
    font-size:13px;
  }
}


/* Animation */
@keyframes fadeIn{
  0%{opacity:0; transform:translateY(-20px);}
  100%{opacity:1; transform:translateY(0);}
}


/* price details page */

:root{
  --primary:#BF092F;
  --secondary:#000000;
  --white:#fff;
  --gray:#6b7280;
}




/* Hero */



/* 2-Column Layout */
.booking-container{
  display:flex;
  gap:20px;
  max-width:1200px;
  margin:40px auto;
  padding:0 20px;
}

.left-column, .right-column{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* Package Details & Order Summary */
.package-details, .order-summary{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.package-details h2, .order-summary h2{
  color:var(--primary);
  margin-bottom:10px;
}

.package-price{
  font-size:24px;
  font-weight:600;
  margin-bottom:5px;
}

.package-duration{
  color:var(--gray);
  margin-bottom:15px;
}

.package-features{
  list-style:none;
  padding-left:0;
}

.package-features li{
  margin-bottom:8px;
}

/* Booking Form */
.booking-form{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:15px;
}

.booking-form h2{
  color:var(--primary);
  margin-bottom:15px;
  text-align:center;
}

.form-group input,
.form-group textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
}

textarea{
  resize:none;
}

.booking-form button{
  background:var(--primary);
  color:#fff;
  border:none;
  border-radius:8px;
  padding:12px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.booking-form button:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}



/* Responsive */
@media(max-width:992px){
  .booking-container{
    flex-direction:column;
  }

/* Terms & Conditions */
.terms-section{
  background:#fff;
  padding:15px 20px;
  border-radius:12px;
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

.terms-section label{
  font-size:14px;
  color:#333;
}

.terms-section a{
  color:var(--primary);
  text-decoration:underline;
}

/* Booking Form Button */
.booking-form .btn-book{
  width:100%;
  background:var(--primary);
  color:#fff;
  padding:14px;
  border:none;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.booking-form .btn-book:hover{
  background:#fff;
  color:var(--primary);
  border:1px solid var(--primary);
}
}

/* FAQ Page */

 
.faq-banner{
  min-height:450px;
  background-color: #000000;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#ffffff;
}

.faq-banner-content h1{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.breadcrumb{
  font-size:16px;
  color:#fff;
}

.breadcrumb a{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
}

.breadcrumb a:hover{
  text-decoration:underline;
}

/* Responsive */
@media(max-width:768px){
  .faq-banner{
    min-height:420px;
  }
  .faq-banner-content h1{
    font-size:34px;
  }
}

/* FAQ Page */

.faq-box-section{
  padding:80px 20px;
  background:#f8fafc;
  font-family:"Segoe UI", sans-serif;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section-title{
  font-size:32px;
  margin:50px 0 30px;
  color:#BF092F;
  text-align:left;
}

.section-title.mt{
  margin-top:70px;
}

/* GRID */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* BOX */
.faq-box{
  background:#ffffff;
  padding:25px;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.faq-box:hover{
  transform:translateY(-6px);
}

.faq-box h4{
  font-size:18px;
  margin-bottom:12px;
  color:#000000;
}

.faq-box p{
  font-size:15px;
  line-height:1.6;
  color:#4b5563;
  margin-bottom:15px;
}

.faq-date{
  font-size:13px;
  color:#6b7280;
}

/* TABLET */
@media(max-width:991px){
  .faq-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:576px){
  .faq-grid{
    grid-template-columns:1fr;
  }
  .section-title{
    font-size:26px;
  }
}

/* FAQ Secion - 2 */

/* ================= MORE QUESTIONS SECTION ================= */

.more-questions-section{
  padding:90px 20px;
  background:#000000; /* dark professional */
  color:#ffffff;
  font-family:"Segoe UI", sans-serif;
}

.more-box{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.more-box h2{
  font-size:36px;
  margin-bottom:20px;
}

.more-box p{
  font-size:16px;
  line-height:1.7;
  color:#d1d5db;
  margin-bottom:40px;
}

/* ================= BUTTON WRAPPER ================= */
.question-actions{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap; /* desktop & tab – side by side */
}

/* ================= BUTTON STYLE ================= */
.btn-login{
  background:#BF092F;
  color:#ffffff;
  padding:14px 26px;
  border-radius:6px;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all 0.3s ease;
}

.btn-login:hover{
  background:#ffffff;
  color:#BF092F;
}

/* ================= MOBILE VIEW ONLY ================= */
@media(max-width:600px){

  .more-box h2{
    font-size:28px;
  }

  .question-actions{
    flex-direction:column;   /* 🔥 one by one */
    align-items:stretch;
    gap:15px;
  }

  .btn-login{
    width:100%;              /* 🔥 full width */
  }
}

/* 404 page */

.error-wrapper{
  margin-top: 100px;
  text-align:center;
}

.error-wrapper h1{
  font-size:120px;
  color:#BF092F;
}

.error-wrapper h2{
  margin-bottom:10px;
}

.error-wrapper p{
  color:#000000;
  margin-bottom:25px;
}

.btn-back{
  text-decoration:none;
  background:#BF092F;
  color:#fff;
  padding:12px 25px;
  border-radius:8px;
  transition:0.3s;
}

.btn-back:hover{
  background:#fff;
  color:#BF092F;
}

/* Maintenance */*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  
}


.maintenance{
  position:relative;
  width:100%;
  text-align:center;
}

.circle{
  width:380px;
  height:380px;
  background:#eef7ff;
  border-radius:50%;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.circle h1{
  color:#0b3c7a;
  font-size:26px;
  margin-bottom:10px;
}

.circle p{
  color:#4d6fa5;
  font-size:14px;
}

/* Plug area */
.plug-wrap{
  position:relative;
  margin-top:-40px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.wire{
  width:260px;
  height:4px;
  background:#0b3c7a;
}

/* Plug design */
.plug{
  width:50px;
  
  height:26px;
  border:3px solid #0b3c7a;
  border-radius:6px;
  position:relative;
}

.plug.left{
  margin-right:-6px;
}

.plug.right{
  margin-left:-6px;
}

.plug span{
  width:4px;
  height:10px;
  background:#0b3c7a;
  position:absolute;
  top:-10px;
}

.plug span:first-child{
  left:14px;
}

.plug span:last-child{
  right:14px;
}
/* HERO SECTION WITH BACKGROUND IMAGE */
.h2-hero-bg{
    position: relative;
    min-height: 100vh;
    background: url("../images/pexels-natasha-filippovskaya-2203043-4730937.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 60px;
    color: #fff;
}

/* DARK OVERLAY */
.h2-hero-bg .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45); /* dark layer for text visibility */
    z-index: 1;
}

/* HERO CONTENT */
/* HERO SECTION WITH BACKGROUND IMAGE */
.h2-hero-bg{
    position: relative;
    min-height: 100vh;
    background: url("../images/pexels-natasha-filippovskaya-2203043-4730937.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left aligned */
    padding-left: 60px;
    color: #fff;
}

/* DARK OVERLAY */
.h2-hero-bg .overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* HERO CONTENT */
.h2-hero-bg .hero-content{
    position: relative;
    z-index: 2;
    max-width: 550px;
}

/* HERO TEXT */
.h2-hero-bg .hero-content h1{
    font-size: 52px;
    margin-bottom: 20px;
   
    line-height: 1.1;
}

.h2-hero-bg .hero-content p{
    font-size: 17px;
    margin-bottom: 20px;
    color: #f2f2f2;
}
/* ================= RIGHT SIDE ADD-ON BOX ================= */
.hero-right-box{
  background: rgba(48, 48, 48, 0.65);          /* 🔥 dark – text clear */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px 36px;
  border-radius: 20px;
  color: #ffffff;
  width: 440px;
  margin-left: auto;
  position: relative;
    z-index: 2;                     /* right side push */
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* HEADING */
.hero-right-box h3{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.3;
  color: #ffffff;
}

/* LIST */
.hero-right-box ul{
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.hero-right-box ul li{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 1px;
  color: #f3f3f3;                        /* 🔥 brighter text */
}

/* ================= TABLET ================= */
@media (max-width: 992px){
  .hero-right-box{
    width: 100%;
    max-width: 480px;
    margin: 40px auto 0;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px){
  .hero-right-box{
    padding: 28px 22px;
     margin-bottom:50px;
    border-radius: 16px;
  }

  .hero-right-box h3{
    font-size: 21px;
    
  }

  .hero-right-box ul li{
    font-size: 15px;
  }

  
}

    
/* =================== RESPONSIVE =================== */

/* Tablet / Mobile ≤900px */
@media(max-width:900px){
    .h2-hero-bg{
        justify-content: flex-start; /* left aligned */
        padding-left: 25px; /* reduce padding */
        padding-right: 20px;
        min-height: 100vh;
        text-align: left;
        
    }

    .h2-hero-bg .hero-content{
        max-width: 100%;
        margin: 0; /* keep left aligned */
    }

    .h2-hero-bg .hero-content h1{
        font-size: 36px;
         margin-top: 120px;  
        line-height: 1.2;
    }

    .h2-hero-bg .hero-content p{
        font-size: 17px;
        margin-bottom: 20px;
    }

    .h2-hero-bg .cta-btn{
        width: auto; /* button not full width */
        padding: 14px 28px;
        font-size: 15px;
        display: inline-block;
        margin: 0; /* left aligned */
    }
}

/* Extra small mobile ≤480px */
@media(max-width:480px){
    .h2-hero-bg{
        padding-left: 20px;
        padding-right: 15px;
        min-height: 100vh;
    }

    .h2-hero-bg .hero-content h1{
        font-size: 33px;
    }

    .h2-hero-bg .hero-content p{
        font-size: 17px;
    }

    .h2-hero-bg .cta-btn{
        padding: 12px 24px;
        font-size: 14px;
        margin: 0; /* keep left aligned */
    }
}




/* Homw 2 Dark */
.offers-sectionn{
  background-color: #000000;
  padding: 50px 50px  ;
}
.gallery-sectionn{
  background-color: #000000;
  padding: 50px 90px ;

}.section-subtitlee{
    font-size: 17px;
  }
@media (max-width: 576px){
  .offers-sectionn{
    padding: 30px 15px;
  }
  
  .gallery-sectionn{
    padding: 30px 15px;
  }
}


.section-subtitlee{
  color:#fff;
}/* ================= ABOUT + COUNTER DESIGN ================= */
.about-counter{
  padding:90px 20px;
  background:#000000;
}

.about-counter-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-counter-left{
  animation:fadeUp 1s ease forwards;
}

.about-counter-tag{
  font-size:14px;
  font-weight:600;
  color:#BF092F;
}

.about-counter-heading{
  font-size:36px;
  margin:15px 0 20px;
  color:#fff;
}

.about-counter-text{
  font-size:17px;
  color:#FFFFFF;
  margin-bottom:16px;
}
.team-sectionn{
  background-color: #000000;
  padding: 50px 50px;
  
}
.team-subheadingg{
  color:#fff;}

/* IMAGE RIGHT */
.about-counter-right img{
  width:100%;
  border-radius:20px;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
  animation:fadeUp 1.2s ease forwards;
}

/* COUNTER SECTION */
.counter-section{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1200px;
  margin:50px auto 0;
  text-align:center;
}

.counter-box{
  background:#fff;
  padding:25px 15px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.4s;
}

.counter-box:hover{
  transform:translateY(-6px);
}

.counter-box h3{
  font-size:32px;
  color:#BF092F;
  margin-bottom:8px;
}

.counter-box p{
  font-size:15px;
  color:#000;
}

/* ANIMATION */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:991px){
  .about-counter-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
  }

  .about-counter-right img{
    max-width:100%;
  }

  .counter-section{
    grid-template-columns:1fr 1fr;
  }

/* Mobile */
@media(max-width:576px){
}
  .about-counter-heading{
    font-size:28px;
  }

  .about-counter-text{
    font-size:14px;
  }

  .counter-section{
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
}

:root{
  --primary:#BF092F;
  --white:#fff;
  --gray:#888;
  --bg:#f8f9fa;
}

/* BODY */
body{
  margin:0;
 
  background:var(--bg);
}

/* LOGIN / SIGNUP CONTAINER */

.login-container{
  display:flex;
  max-width:1000px;
  width:90%;
  margin:100px auto;
  background:var(--white);
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  animation:fadeIn 1s ease;
}

/* LEFT INFO */
.login-left{
  flex:1;
  background:linear-gradient(45deg,#BF092F,#f43f5e);
  color:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:40px;
  text-align:center;
}

.login-left span{
  color:#fff;
}

.login-left p{
  margin-top:20px;
  font-size:16px;
  line-height:1.5;
}

/* RIGHT FORM */
.login-right{
  flex:1;
  padding:40px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-form{
  width:100%;
  max-width:300px;
  display:flex;
  flex-direction:column;
}

.login-form h2{
  margin-bottom:30px;
  color:var(--primary);
  text-align:center;
}

/* INPUT GROUP */
.input-group{
  position:relative;
  margin-bottom:20px;
}

.input-group i{
  position:absolute;
  left:10px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gray);
}

.input-group input{
  width:100%;
  padding:12px 12px 12px 35px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
  transition:0.3s;
}

.input-group input:focus{
  border-color:var(--primary);
  outline:none;
}

/* BUTTON */
/* Back button inside login */
.back-btn{
  display:block;
  margin-top:12px;
  text-align:center;
  background:#fff;
  border:2px solid #BF092F;
}

.back-btn span{
  color:#BF092F;
}

.back-btn:hover{
  background:#BF092F;
}

.back-btn:hover span{
  color:#fff;
}

.back-btn i{
  margin-right:6px;
}


/* REGISTER TEXT */
.register-text{
  margin-top:20px;
  text-align:center;
  font-size:14px;
}

.register-text a{
  color:var(--primary);
  font-weight:600;
  text-decoration:none;
}

.register-text a:hover{
  text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:992px){

  .login-container{
    display:flex;
    flex-direction:column;

    width:100vw;          /* 🔥 FORCE full screen width */
    max-width:100vw;      /* 🔥 no limit */
    margin:120px 0;       /* 🔥 left & right ZERO */
    
    border-radius:0;      /* optional – edge to edge */
  }

  .login-left,
  .login-right{
    width:100%;
    max-width:100%;
    margin:0;
  }
}


@media(max-width:600px){
  .login-left h1{
    font-size:24px;
  }
  .login-left p{
    font-size:14px;
  }
  .login-form h2{
    font-size:20px;
    margin-bottom:20px;
  }
  .input-group input{
    padding:10px 10px 10px 35px;
    font-size:13px;
  }
  .btn-login{
    font-size:14px;
    padding:10px;
  }
  .register-text{
    font-size:13px;
  }
}

/* ANIMATION */
@keyframes fadeIn{
  0%{opacity:0; transform:translateY(-20px);}
  100%{opacity:1; transform:translateY(0);}
}

/* service detailspage */

.page-title{
  padding:70px 20px;
  text-align:center;
}

.page-title h1{
  font-size:42px;
}

.page-title p{
  color:#bbb;
}

.service-detail{
  max-width:1100px;
  margin:auto;
  padding:60px 20px;
  display:flex;
  gap:40px;
  align-items:center;
}

.service-detail img{
  width:50%;
  height: 20%;
  object-fit: cover;
  border-radius:18px;
}

.service-content h2{
  font-size:32px;
}

.service-content p{
  color:#000000;
  margin:15px 0;
}

.service-content ul{
  padding-left:18px;
}

.service-content li{
  margin-bottom:6px;
}

.service-time{
  margin-top:12px;
  color:#000000;
}
.price-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 32px;
  border:2px solid #BF092F;
  color:#fff;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  border-radius:6px;
  font-weight:600;
  transition: all 0.3s ease;
}

/* inner text */
.price-btn span{
  position:relative;
  z-index:2;
}

/* hover background effect */
.price-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:#fff;
  transform:scaleY(0);
  transform-origin:bottom;
  transition:0.4s;
  z-index:1;
}

.price-btn:hover::before{
  transform:scaleY(1);
}

.price-btn:hover span{
  color:#BF092F;
}

/* =================== RESPONSIVE =================== */

/* Tablet / Mobile ≤768px */
@media(max-width:768px){
  .price-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:14px 0;
    font-size:16px;
    margin-top:15px;
  }
}

/* MAP */
.map{
  padding:60px 20px;
}

.map iframe{
  width:100%;
  height:380px;
  border:none;
  border-radius:15px;
}

/* Responsive */
@media(max-width:768px){
  .service-detail{
    flex-direction:column;
  }
  .service-detail img{
    width:100%;
  }
}

@media(max-width:992px)
{
  .service-detail img{
    height: 350px;
  }
}
