*{margin:0;padding:0;box-sizing:border-box;font-family:'Montserrat',sans-serif;}
/* body{background:#000;color:#fff;} */

.hero { position: relative; width: 100%; padding-top: 50%; overflow: hidden; font-family: 'Arial', sans-serif; display: flex; align-items: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.2); transition: opacity 1.5s ease; animation: zoomOut 8s linear infinite; }
.slide:nth-child(1) { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/her 1.jpg") center/cover; }
.slide:nth-child(2) { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/hero 2.jpg") center/cover; }
.slide:nth-child(3) { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/hero3.jpg") center/cover; }
.slide.active { opacity: 1; z-index: 1; }

@keyframes zoomOut { 0% { transform: scale(1.2); } 100% { transform: scale(1); } }

.hero-content { position: absolute; left: 100px; top: 50%; transform: translateY(-50%); z-index: 2; opacity: 0; animation: fadeUp 1.2s ease forwards; animation-delay: .6s; max-width: 600px; }
.estd { font-size: 13px; letter-spacing: 6px; opacity: .7; }
.hero-content h1 { font-size: 68px; font-weight: 600; letter-spacing: 3px; margin: 20px 0; }
.designation { font-size: 14px; letter-spacing: 5px; opacity: .7; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.corner { width: 40px; height: 40px; position: absolute; }
.tl { border-top: 2px solid #a25a5a; border-left: 2px solid #a25a5a; top: -30px; left: -40px; }
.br { border-bottom: 2px solid #a25a5a; border-right: 2px solid #a25a5a; bottom: -30px; right: -40px; }

.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0; animation: fadeUp 1s ease forwards; animation-delay: 1.5s; }
.scroll-down span { display: block; width: 18px; height: 18px; border-bottom: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(45deg); animation: scroll 1.5s infinite; }

@keyframes scroll { 0% { opacity: 0; transform: rotate(45deg) translate(-5px,-5px); } 50% { opacity: 1; } 100% { opacity: 0; transform: rotate(45deg) translate(5px,5px); } }

/* ================= TABLET 768 ================= */
@media(max-width:768px) {
  .hero { padding-top: 70%; }
  .hero-content { left: 50px; max-width: 80%; }
  .hero-content h1 { font-size: 48px; }
  .estd { font-size: 12px; }
  .designation { font-size: 13px; }
  .corner { width: 30px; height: 30px; }
  .tl { top: -20px; left: -30px; }
  .br { bottom: -20px; right: -30px; }
}

/* ================= MOBILE 360 ================= */
@media(max-width:360px) {
  .hero { padding-top: 55vh; }
  .hero-content { left: 20px; max-width: 100%; }
  .hero-content h1 { font-size: 36px; letter-spacing: 2px; }
  .estd { font-size: 11px; letter-spacing: 4px; }
  .designation { font-size: 12px; letter-spacing: 3px; }
  .corner { display: none; }
  .scroll-down { bottom: 20px; }
}

/* ================= ABOUT SECTION ================= */
.about-section{background:#fff;padding:80px 0 20px;}
.about-container{width:100%;padding-left:5em;padding-right:5em;}
.about-tag{display:inline-block;font-size:13px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.about-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#000;}
.about-container p{font-size:18px;line-height:1.9;color:#7a7a7a;margin-bottom:28px;}

/* ================= AWARDS ================= */
.awards-slider{width:100%;overflow:hidden;padding:2em 0;}
.awards-track{display:flex;width:max-content;animation:infiniteScroll 25s linear infinite;}
.awards-slider:hover .awards-track{animation-play-state:paused;}
.award{flex:0 0 150px;margin-right:30px;transition:transform .3s;}
.award img{width:100%;filter:grayscale(100%);transition:filter .3s ease,transform .3s ease;}
.award:hover img{filter:grayscale(0%);transform:scale(1.05);}

@keyframes infiniteScroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* ================= ABOUT AWARDS SECTION ================= */
.about-section-awards{background:#fff;}
.about-container-awards{width:100%;padding-left:5em;padding-right:5em;padding-bottom:1em;}
.about-tag-awards{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}

/* ================= SERVICES ================= */
.services-section{padding:80px 0;background:#000;font-family:'Poppins',sans-serif;overflow:hidden;}
.services-header{text-align:left;padding:0 80px 40px;}
.small-title{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.services-header h2{font-size:48px;margin-top:10px;margin-left:-10px;}
.services-slider{overflow:hidden;margin-right:5em;margin-left:5em;}
.services-track{display:flex;width:max-content;margin-right:5em;margin-left:5em;animation:serviceScroll 30s linear infinite;}
.services-slider:hover .services-track{animation-play-state:paused;}
.service-card{position:relative;width:340px;height:480px;margin-right:30px;overflow:hidden;transition:transform .4s ease;}
.service-card img{width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transition:filter .5s ease,transform .5s ease;}
.service-card:hover img{filter:grayscale(0%);transform:scale(.92);}
.service-text{position:absolute;bottom:30px;left:30px;color:#fff;}
.service-text span{color:#a03b3b;font-size:12px;letter-spacing:4px;}
.service-text h3{font-size:22px;margin-top:6px;}

@keyframes serviceScroll{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* ================= TABLET 768 ================= */
@media(max-width:768px){
.about-container,.about-container-awards{padding-left:2.5em;padding-right:2.5em;}
.about-title{font-size:38px;}
.about-container p{font-size:16px;}
.award{flex:0 0 120px;margin-right:20px;}
.services-header{padding:0 40px 30px;}
.services-header h2{font-size:38px;}
.services-slider,.services-track{margin-left:2em;margin-right:2em;}
.service-card{width:280px;height:400px;}
.service-text h3{font-size:20px;}
}

/* ================= MOBILE 360 ================= */
@media(max-width:360px){
.about-section{padding:60px 0 10px;}
.about-container,.about-container-awards{padding-left:1.2em;padding-right:1.2em;}
.about-tag,.about-tag-awards{font-size:11px;letter-spacing:4px;}
.about-title{font-size:28px;}
.about-container p{font-size:15px;line-height:1.7;}
.award{flex:0 0 100px;margin-right:15px;}
.services-section{padding:60px 0;}
.services-header{padding:0 20px 25px;}
.services-header h2{font-size:28px;margin-left:0;}
.small-title{font-size:11px;letter-spacing:4px;}
.services-slider,.services-track{margin-left:1em;margin-right:1em;}
.service-card{width:240px;height:340px;}
.service-text{bottom:20px;left:20px;}
.service-text h3{font-size:18px;}
}
/* ================= PORTFOLIO ================= */
.portfolio-section{padding:80px 5em 60px;font-family:'Poppins',sans-serif;background:#fff;}
.portfolio-header{margin-bottom:40px;}
.small-title{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.portfolio-header h2{font-size:48px;margin-top:10px;margin-left:-10px;color:#000;}
.portfolio-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.portfolio-card{position:relative;overflow:hidden;}
.portfolio-card img{width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transition:filter .5s ease,transform .5s ease;}
.portfolio-card:hover img{filter:grayscale(0%);transform:scale(.92);}
.portfolio-card .label{position:absolute;bottom:20px;left:20px;background:#fff;color:#000;padding:8px 14px;font-size:14px;opacity:0;transition:opacity .3s ease;}
.portfolio-card:hover .label{opacity:1;}

/* ================= NEWS ================= */
.latest-news{background:#000;padding:80px 5em 70px;}
.container{width:1200px;max-width:100%;}
.section-head{margin-bottom:50px;}
.section-head .tag{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.section-head h2{font-size:48px;margin-top:10px;margin-left:-10px;color:#fff;}
.news-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:35px;}
.news-card{position:relative;background:#fff;padding:40px 30px;min-height:400px;min-width:283px;transition:.5s;overflow:hidden;border-radius:10px;border:2px solid #a25a5a;}
.news-card::before{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),var(--bg) center/cover no-repeat;opacity:0;transition:.5s;}
.news-card *{position:relative;z-index:2;}
.news-card .meta{display:flex;gap:20px;font-size:13px;color:#888;margin-bottom:20px;}
.news-card h3{font-size:26px;font-weight:500;margin-bottom:20px;color:#000;}
.news-card p{color:#777;line-height:1.7;font-size:15px;margin-bottom:30px;}
.news-card a{text-decoration:none;color:#555;font-size:15px;border-bottom:1px solid #ff6a2c;padding-bottom:4px;}
.news-card:hover{transform:scale(.92);border-color:transparent;}
.news-card:hover::before{opacity:1;}
.news-card:hover h3,.news-card:hover p,.news-card:hover a,.news-card:hover .meta{color:#fff;}
.news-card:hover a{border-color:#fff;}

/* ================= TABLET (≤768px) ================= */
@media(max-width:768px){
.latest-news{padding:70px 3em 60px;}
.section-head h2{font-size:36px;margin-left:0;}
.news-grid{grid-template-columns:repeat(2,1fr);gap:30px;}
.news-card{min-width:100%;padding:35px 25px;}
.news-card h3{font-size:22px;}
.news-card p{font-size:14px;}
}

/* ================= MOBILE (≤360px) ================= */
@media(max-width:360px){
.latest-news{padding:60px 1.5em 50px;}
.section-head h2{font-size:28px;}
.section-head .tag{font-size:11px;letter-spacing:4px;}
.news-grid{grid-template-columns:1fr;gap:25px;}
.news-card{padding:30px 22px;min-height:auto;}
.news-card h3{font-size:20px;}
.news-card p{font-size:13px;}
.news-card .meta{font-size:12px;gap:14px;}
}

/* ================= TEAM ================= */
.team-section{padding:80px;background:#fafafa;}
.team-section h5{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.team-section h2{font-size:48px;margin:10px 0 30px -10px;color:#000;}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;}
.team-card{position:relative;overflow:hidden;color:#000;}
.img-box{height:350px;overflow:hidden;}
.img-box img{width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transition:.5s;}
.team-card:hover img{transform:scale(.85);filter:grayscale(0);}
.info,.hover-info{height:80px;display:flex;flex-direction:column;justify-content:center;align-items:center;transition:.4s;}
.info h3{font-size:20px;padding-bottom:10px;}
.info span{font-size:14px;color:gray;}
.hover-info{position:absolute;bottom:0;width:100%;opacity:0;z-index:1;}
.social i{color:#a25a5a;margin:0 8px;padding-bottom:10px;font-size:16px;cursor:pointer;}
.hover-info p{font-size:13px;color:#333;}
.team-card:hover .info{opacity:0;transform:translateY(20px);}
.team-card:hover .hover-info{opacity:1;}

/* ================= TESTIMONIAL ================= */
.testimonial-section{background:url(../img/test-bg.jpg) center/cover no-repeat;padding:100px 0;position:relative;}
.testimonial-section::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.55);}
.testimonial-container{width:1100px;margin:auto;position:relative;z-index:2;overflow:hidden;}
.testimonial-track{display:flex;transition:transform .6s ease;}
.testimonial-card{min-width:33.333%;background:rgba(255,255,255,.92);padding:50px 45px;position:relative;border-bottom:2px solid #a25a5a;border-radius:25px;transform:scale(.85);opacity:.6;transition:.45s;}
.testimonial-card.active{transform:scale(1);opacity:1;background:rgba(255,255,255,.98);}
.testimonial-card p{font-size:15px;line-height:28px;color:#777;margin-bottom:40px;}
.client{display:flex;align-items:center;gap:15px;}
.client img{width:55px;height:55px;border-radius:50%;}
.client h4{font-size:15px;color:#222;}
.client span{font-size:13px;color:#999;}
.quote{position:absolute;bottom:30px;right:40px;font-size:120px;color:rgba(0,0,0,.06);font-family:serif;pointer-events:none;}
/* ================= TABLET RESPONSIVE (768px) ================= */
@media(max-width:768px){
.testimonial-section{padding:80px 0;}
.testimonial-container{width:90%;}
.testimonial-card{min-width:50%;padding:40px 35px;}
.testimonial-card p{font-size:14px;line-height:26px;}
.client img{width:50px;height:50px;}
.quote{font-size:90px;right:25px;bottom:25px;}
}

/* ================= MOBILE RESPONSIVE (360px) ================= */
@media(max-width:360px){
.testimonial-section{padding:60px 0;}
.testimonial-container{width:92%;}
.testimonial-track{gap:0;}
.testimonial-card{min-width:100%;padding:30px 25px;transform:scale(1);opacity:1;}
.testimonial-card p{font-size:14px;line-height:24px;margin-bottom:25px;}
.client{gap:10px;}
.client img{width:45px;height:45px;}
.client h4{font-size:14px;}
.client span{font-size:12px;}
.quote{font-size:70px;right:15px;bottom:15px;}
}

/* ================= PAGINATION ================= */
.pagination{display:flex;justify-content:center;gap:14px;margin-top:40px;}
.pagination span{width:14px;height:14px;border:1.5px solid #aaa;border-radius:50%;cursor:pointer;opacity:.6;transition:.3s;position:relative;}
.pagination span::after{content:"";width:4px;height:4px;background:transparent;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);}
.pagination span.active{border-color:#a25a5a;opacity:1;}
.pagination span.active::after{background:#a25a5a;}

/* ================= TABLET 768 ================= */
@media(max-width:768px){
.portfolio-section,.latest-news{padding:70px 3em;}
.portfolio-grid{grid-template-columns:repeat(2,1fr);}
.news-grid,.team-grid{grid-template-columns:repeat(2,1fr);}
.portfolio-header h2,.section-head h2,.team-section h2{font-size:38px;}
.testimonial-container{width:90%;}
}

/* ================= MOBILE 360 ================= */
@media(max-width:360px){
.portfolio-section,.latest-news,.team-section{padding:60px 1.2em;}
.portfolio-grid,.news-grid,.team-grid{grid-template-columns:1fr;}
.small-title,.section-head .tag,.team-section h5{font-size:11px;letter-spacing:4px;}
.portfolio-header h2,.section-head h2,.team-section h2{font-size:28px;margin-left:0;}
.testimonial-card{min-width:100%;padding:35px 25px;}
.quote{font-size:80px;right:20px;}
}
/* ================= HEADER ================= */
header { position: fixed; top: 0; left: 0; width: 100%; background: transparent; padding: 3px 25px 0px; z-index: 9999; transition: background 0.4s ease, box-shadow 0.4s ease; }
header::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: rgba(255,255,255,0.35); transition: background 0.4s ease; }
header.scrolled::after { background: rgba(255,255,255,0.15); }
header.scrolled { background-color: #1F2933; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

/* ================= HEADER INNER ================= */
.header-inner { max-width: 1300px; margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 70px; }
/* ================= NAV ================= */
nav { display: flex; justify-content: center; margin-left: 23em; margin-top: -10px; }
nav ul { list-style: none; display: flex; align-items: center; gap: 20px; }
nav ul li { position: relative; }
nav ul li a { color: #ffffff; text-decoration: none; font-weight: 500; font-family: 'Poppins', sans-serif; padding-bottom: 6px; transition: color 0.3s ease; }
nav ul li a:hover, nav ul li a.active { color: #a25a5a; }
nav ul li a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0%; height: 2px; background-color: #a25a5a; border-radius: 2px; transition: width 0.3s ease; }
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }
/* ================= LOGO ================= */
.logo img { height: 70px; width: 9em; }
/* ================= DROPDOWN ================= */
.dropdown-menu { display: none; position: absolute; top: 35px; left: 0; min-width: 170px; background-color: #1f2937; border-radius: 6px; overflow: hidden; z-index: 9999; }
.dropdown-menu li a { display: block; padding: 12px 15px; color: #ffffff; font-size: 14px; }
.dropdown-menu li a:hover { background-color: #ffffff; color: #1f2937; }
.dropdown.active .dropdown-menu { display: block; }
/* ================= CART ================= */
.cart { font-size: 18px; }
/* ================= LOGIN BUTTON ================= */
.login-btn { padding: 8px 22px; background-color: transparent; border: 1px solid #ffffff; border-radius: 0; color: #ffffff !important; font-weight: 500; text-decoration: none; transition: all 0.3s ease; }
.login-btn::after, .login-btn:hover::after, .login-btn.active::after { display: none !important; }
.login-btn:hover { background-color: #ffffff; color: #1F2933 !important; }
/* ================= HAMBURGER ================= */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; }
.menu-toggle span { width: 26px; height: 3px; background: #ffffff; margin: 4px 0; }
/* ================= TABLET ================= */
@media (max-width: 768px) { .header-inner { grid-template-columns: auto auto;} 
nav { margin-left: 0; display: none; position: absolute; top: 100%; left: 0; 
width: 100%; background: #1F2933; } 
nav.active { 
display: block; } 
nav ul { flex-direction: column; padding: 25px 0; gap: 22px; align-items: center;} 
/* login button default hide */
.login-btn { display: none; } 
/* menu open aana login button show */
nav.active .login-btn { display: inline-block; margin-top: 15px; } 
.menu-toggle { display: flex; align-items: end; } }
@media (max-width: 360px) { 
  header { padding: 14px 18px; } 
  nav ul { gap: 18px; } }

/* ================= 1024 RESPONSIVE ================= */
@media (max-width: 1024px) {
  /* HEADER */
  header {padding: 8px 20px;}
  .header-inner {grid-template-columns: auto 1fr auto;min-height: 65px;}
  /* LOGO */
  .logo img {height: 60px;width: auto;}
  /* NAV */
  nav {margin-left: 0;margin-top: 0;}
  nav ul {gap: 14px;}
  nav ul li a {font-size: 14px;}
  /* DROPDOWN */
  .dropdown-menu {top: 30px;min-width: 150px;}
  .dropdown-menu li a {padding: 10px 14px;font-size: 13px;}
  /* LOGIN BUTTON */
  .login-btn {padding: 7px 18px;font-size: 14px;}
  /* CART */
  .cart {font-size: 16px;}
}

/* ===== FOOTER BASE ===== */
.solar-footer { background:#000; color:#cbd5e1; padding:30px 0 0; font-family:"Segoe UI", sans-serif; }
/* ===== CONTAINER ===== */
.footer-container { width:90%; max-width:1200px; margin:auto; }
/* ===== GRID ===== */
.footer-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:40px; align-items:flex-start; }
/* ===== FOOTER COLUMN ===== */
.footer-col { display:flex; flex-direction:column; }
.footer-col p { font-size:15px; line-height:1.8; color:#94a3b8; margin-bottom:7px; }
/* ===== SOCIAL ICONS ===== */
.footer-social { display:flex; }
.footer-social a { width:38px; height:38px; display:flex; align-items:center; justify-content:center; text-align:center; background:#1e293b; border-radius:50%; color:#15a3a3; margin-right:10px; transition:0.3s; }
.footer-social a:hover { background:#15a3a3; color:#fff; transform:translateY(-4px); }
/* ===== TITLES ===== */
.footer-col h4 { font-size:18px; padding-top:1em; color:#fff; margin-bottom:22px; position:relative; }
.footer-col h4::after { content:""; width:40px; height:3px; background:#a25a5a; position:absolute; left:0; bottom:-8px; }
/* ===== LINKS ===== */
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:15px; margin-top:10px; }
.footer-col ul li a { color:#94a3b8; text-decoration:none; transition:0.3s; }
.footer-col ul li a:hover { color:#a25a5a; padding-left:6px; }
/* ===== ICON ALIGN ===== */
.footer-col i { color:#fff; margin-right:10px; min-width:18px; }
/* ===== CONTACT EXTRA ===== */
.footer-contact-extra { list-style:none; margin:7px 0; }
.footer-contact-extra li { font-size:14px; margin-bottom:8px; }
/* ===== BUTTON ===== */
.footer-btn {display: inline-block;padding: 8px 18px;background: #a25a5a;color: #ffffff;text-decoration: none;border-radius: 4px;font-size: 14px;width: max-content;

  /* Center the button */
  margin: 0 auto;       /* horizontal center */
  display: block;       /* allows margin auto to work */
  text-align: center;   /* ensures text inside button is centered */
}
.footer-btn:hover { background:#ffffff; color:#000; }
/* ===== FOOTER BOTTOM ===== */
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); margin-top:30px; padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; }
.footer-bottom p { font-size:14px; color:#94a3b8; }
.footer-links a { margin-left:18px; color:#94a3b8; text-decoration:none; font-size:14px; }
.footer-links a:hover { color:#15a3a3; }
/* ===== RESPONSIVE ===== */
@media(max-width:992px) { .footer-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 768px) {
/* Footer grid with 2 columns per row */
.footer-grid {display: grid;grid-template-columns: repeat(2, 1fr);gap: 20px; /* optional spacing between columns */text-align: center;}

/* Center logos, social icons, links inside each column */
.footer-social,
.footer-logo,
.footer-links {justify-content: center;}
/* Footer column underline centered */
.footer-col h4::after {left: 50%;transform: translateX(-50%);}
/* Footer bottom stacked vertically */
.footer-bottom {flex-direction: column;gap: 10px;}
/* Center last item if it’s alone in a row */
.footer-grid > *:nth-child(odd):last-child {grid-column: 1 / -1; /* span full row */justify-self: center; /* center horizontally */}
}
@media(max-width:360px) { .footer-grid { grid-template-columns:1fr; text-align:center; } .footer-social, .footer-logo, .footer-links { justify-content:center; } .footer-col h4::after { left:50%; transform:translateX(-50%); } .footer-bottom { flex-direction:column; gap:8px; } }

/* ================= BANNER SECTION ================= */
.about-banner { position: relative; width: 100%; padding-top: 40%; background: url('../img/ab-banner.jpg') center center / cover no-repeat; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Arial', sans-serif; }
.about-banner .overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.774); }
.banner-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 1; width: 90%; max-width: 1000px; }
.welcome-text { display: inline-block; font-size: 15px; letter-spacing: 6px; padding-left: 10px; color: #a25a5a; margin-bottom: 20px; }
.banner-title { font-size: 48px; margin-top: 10px; margin-bottom: 20px; color: #ffffff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) { 
  .about-banner { padding-top: 45vh; } 
  .banner-title { font-size: 32px; line-height: 1.2; } 
  .welcome-text { font-size: 13px; letter-spacing: 3px; } 
}
@media (max-width: 360px) { 
  .about-banner { padding-top: 42vh; } 
  .banner-title { font-size: 24px; line-height: 1.1; } 
  .welcome-text { font-size: 12px; letter-spacing: 2px; } 
}


body {background: #000;}
/* ================= ABOUT SECTION ================= */
.cs-about-section {background-color: #121212;color: #ccc;font-family: 'Poppins', sans-serif;padding: 100px 5em;}
/* CONTAINER */
.cs-about-container {max-width: 1400px;margin: auto;display: flex;gap: 60px;position: relative;}
/* LEFT TEXT */
.cs-about-text {flex: 1;max-width: 600px;}
.cs-about-line {width: 50px;height: 2px;background-color: #a25a5a;margin-bottom: 30px;}
.cs-about-heading {color: #a25a5a;font-weight: 500;font-size: 24px;line-height: 1.6;letter-spacing: 1px;margin-bottom: 30px;}
.cs-about-para {font-size: 14px;line-height: 1.9;color: #bdbdbd;margin-bottom: 22px;}
/* SIGNATURE */
.cs-about-signature {margin-top: 20px;}
.cs-about-signature img {width: 100px;display: block;}
/* DOTTED VERTICAL LINE */
.cs-about-divider {width: 2px;background-image: radial-gradient(#444 1px, transparent 1px);background-size: 2px 12px;}
/* RIGHT IMAGE */
.cs-about-image {flex: 1;display: flex;justify-content: center;overflow: hidden;}
.cs-about-image-wrapper {position: relative;width: 420px;}
.cs-about-image img {width: 100%;display: block;position: relative;z-index: 2;transition: transform 0.5s ease;}
.cs-about-image:hover img {transform: scale(0.95)}

/* COLOR BLOCK */
.cs-about-color-block {position: absolute;bottom: -15px;left: -25px;width: 100%;height: 100%;background-color: #a25a5a;z-index: 1;}
@media (max-width: 360px) {.cs-about-section {padding: 60px 20px;}
.cs-about-container {flex-direction: column;gap: 40px;}
/* LEFT CONTENT */.cs-about-text {max-width: 100%;}
.cs-about-heading {font-size: 18px;line-height: 1.5;}
.cs-about-para {font-size: 13px;line-height: 1.8;}
.cs-about-signature img {width: 80px;}

  /* REMOVE VERTICAL DIVIDER */
  .cs-about-divider {display: none;}
/* IMAGE */
.cs-about-image-wrapper {width: 100%;max-width: 300px;}
.cs-about-color-block {bottom: -10px;left: -15px;}}
@media (max-width: 768px) {
.cs-about-section {padding: 80px 40px;}
.cs-about-container {flex-direction: column;gap: 50px;}
  /* TEXT */
  .cs-about-text {max-width: 100%;}
.cs-about-heading {font-size: 22px;}
.cs-about-para {font-size: 14px;}
/* DIVIDER */
  .cs-about-divider {display: none;}
  /* IMAGE */
  .cs-about-image-wrapper {width: 380px;}
  .cs-about-color-block {bottom: -12px;left: -20px;}}
/* ================= SECTION ================= */
.cs-service-showcase {background: #fff;padding: 70px 5em;}
/* HEADER */
.cs-service-header {text-align: left;margin-bottom: 80px;}
.cs-service-small-title {display: inline-block;font-size: 13px;letter-spacing: 6px;padding-left: 10px;color: #a25a5a;margin-bottom: 20px;}
.cs-service-title {font-size: 48px;margin-top: 10px;margin-bottom: 30px;margin-right: 2em;color: #000000;}
/* ================= ROW ================= */
.cs-service-row {display: grid;grid-template-columns: repeat(3, 320px);justify-content: center;column-gap: 80px;row-gap: 80px;}
/* ================= CARD ================= */
.cs-service-item {position: relative;width: 320px;height: 460px;cursor: pointer;transition: 0.5s ease;}
/* BACKGROUND BLOCK */
.cs-service-bg {position: absolute;inset: -15px;background: #f2f2f2;z-index: 0;transition: 0.5s ease;}
/* IMAGE */
.cs-service-item img {position: relative;width: 100%;height: 100%;object-fit: cover;z-index: 2;transition: 0.6s ease;}
/* VERTICAL TEXT */
.cs-service-text {position: absolute;right: -55px;top: 0;height: 100%;width: 46px;display: flex;align-items: center;justify-content: center;writing-mode: vertical-rl;text-orientation: mixed;font-size: 14px;letter-spacing: 2px;color: #777;z-index: 3;transition: color 0.4s ease;}
.cs-service-text::before {content: "";position: absolute;inset: 0;background: #a45555;z-index: -1;transform: scaleY(0);transform-origin: top;transition: 0.4s ease;}
/* HOVER EFFECT */
.cs-service-item:hover {transform: translateY(-25px);}
.cs-service-item:hover img {transform: scale(1.05);}
.cs-service-item:hover .cs-service-bg {background: #e2e2e2;}
.cs-service-item:hover .cs-service-text {color: #fff;}
.cs-service-item:hover .cs-service-text::before {transform: scaleY(1);}
/* 768px responsive */
@media (max-width: 768px) {
  .cs-service-showcase {
    padding: 40px 20px; /* section padding for mobile */
  }

  .cs-service-row {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    column-gap: 40px;  /* horizontal gap between cards */
    row-gap: 70px;     /* vertical gap between cards */
    margin: 0 10px;    /* left and right margin */
  }

  .cs-service-item {
    height: auto;      /* auto height to fit content */
  }
}
@media (max-width: 360px) {
.cs-service-showcase {padding: 50px 20px;}
.cs-service-title {font-size: 24px;}
.cs-service-row {grid-template-columns: 1fr;row-gap: 60px;}
.cs-service-item {width: 100%;height: 420px;}
.cs-service-text {right: 10px;writing-mode: horizontal-tb;height: auto;width: auto;background: rgba(0,0,0,0.6);color: #fff;padding: 8px 12px;bottom: 15px;top: auto;letter-spacing: 1px;}
.cs-service-text::before {display: none;}
}

.cs-stats-section{position:relative;background:url("../img/hero 1.jpg") center/cover no-repeat fixed;padding:100px 0;}
.cs-stats-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.65);z-index:1;}
.cs-stats-container{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,1fr);max-width:1200px;margin:auto;text-align:center;color:#fff;}
.cs-stats-box{padding:20px;}
.cs-stats-icon{font-size:38px;margin-bottom:15px;}
.cs-stats-number{font-size:48px;font-weight:700;margin-bottom:10px;}
.cs-stats-label{font-size:16px;letter-spacing:1px;opacity:.9;}
@media(max-width:768px){
.cs-stats-section{padding:100px 20px;}
.cs-stats-container{grid-template-columns:repeat(2,1fr);row-gap:50px;}
.cs-stats-number{font-size:42px;}
.cs-stats-label{font-size:15px;}
}
@media(max-width:360px){
.cs-stats-section{padding:80px 15px;background-attachment:scroll;}
.cs-stats-container{grid-template-columns:1fr;row-gap:40px;}
.cs-stats-icon{font-size:32px;}
.cs-stats-number{font-size:36px;}
.cs-stats-label{font-size:14px;letter-spacing:.5px;}
}

.cs-ts-section{min-height:80vh;display:flex;flex-direction:column;justify-content:center;align-items:center;background:#000;color:#fff;font-family:'Poppins',sans-serif;}
.cs-ts-heading{text-align:center;}
.cs-ts-title{font-size:48px;margin:10px 0 30px -10px;color:#fff;}
.cs-ts-small-title{display:inline-block;font-size:15px;letter-spacing:3px;color:#a25a5a;margin-bottom:20px;}
.cs-ts-slider{max-width:900px;width:100%;text-align:center;padding:0 20px;}
.cs-ts-slide{display:none;animation:cs-ts-fade 1s ease;}
.cs-ts-slide.active{display:block;}
@keyframes cs-ts-fade{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.cs-ts-avatar{width:90px;height:90px;border-radius:50%;object-fit:cover;margin:0 auto 20px;border:3px solid #fff;}
.cs-ts-name{letter-spacing:2px;margin-bottom:10px;font-size:18px;color:#a25a5a;}
.cs-ts-role{display:block;font-size:14px;margin-bottom:20px;opacity:.8;}
.cs-ts-text{max-width:720px;margin:0 auto;line-height:1.8;opacity:.85;}
.cs-ts-dots{margin-top:40px;display:flex;justify-content:center;}
.cs-ts-dot{width:8px;height:8px;background:#555;border-radius:50%;margin:0 6px;cursor:pointer;transition:.3s;}
.cs-ts-dot.active{background:#a25a5a;}
@media(max-width:768px){
.cs-ts-title{font-size:36px;margin-left:0;}
.cs-ts-text{font-size:14px;max-width:600px;}
.cs-ts-section{padding:40px 20px;}
}
@media(max-width:360px){
.cs-ts-title{font-size:28px;}
.cs-ts-small-title{font-size:13px;}
.cs-ts-avatar{width:75px;height:75px;}
.cs-ts-text{font-size:13px;line-height:1.7;}
.cs-ts-dots{margin-top:30px;}
}

.product-section{padding:80px 7em;background:#fff;}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.product-card{position:relative;overflow:hidden;background:#000;}
.grid-pagination{grid-column:1/-1;display:flex;justify-content:center;align-items:center;gap:10px;margin-top:30px;}
.product-card img{width:100%;display:block;transition:.5s ease;}
.price-tag{position:absolute;top:15px;right:15px;background:#a25a5a;color:#fff;font-size:13px;padding:6px 10px;font-weight:600;z-index:3;}
.product-info{position:absolute;bottom:15px;left:15px;z-index:3;}
.product-info h3{position:relative;color:#fff;font-size:18px;font-weight:600;transition:.4s ease;}
.product-info h3::after{content:"";position:absolute;left:0;bottom:-10px;width:10em;height:1px;background:#fff;opacity:0;transform:scaleX(0);transform-origin:left;transition:.4s ease;}
.product-overlay{position:absolute;inset:0;background:rgba(0,0,0,.55);display:flex;align-items:center;justify-content:center;opacity:0;transition:.4s ease;z-index:2;}
.product-actions{display:flex;gap:15px;transform:translateY(20px);transition:.4s ease;}
.product-actions span{width:44px;height:44px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#000;cursor:pointer;transition:.3s ease;}
.product-actions span:hover{background:#a25a5a;color:#fff;}
.product-card:hover img{transform:scale(1.08);}
.product-card:hover .product-overlay{opacity:1;}
.product-card:hover .product-actions{transform:translateY(0);}
.product-card:hover .product-info h3{transform:translateY(-6px);}
.product-card:hover .product-info h3::after{opacity:1;transform:scaleX(1);}
.pagination{display:flex;justify-content:center;align-items:center;gap:10px;width:100%;margin:0 auto;}
.page-btn{width:42px;height:42px;border:none;background:#f3f3f3;color:#000;font-size:15px;cursor:pointer;transition:.3s;}
.page-btn:hover{background:#a25a5a;color:#fff;}
.page-btn.active{background:#a25a5a;color:#fff;}
.page-btn.prev,.page-btn.next{font-size:20px;}
.img-popup{display:none;position:fixed;inset:0;background:rgba(0,0,0,.9);z-index:9999;justify-content:center;align-items:center;}
.img-popup img{max-width:90%;max-height:90%;border-radius:12px;animation:zoom .3s ease;}
.close-popup{position:absolute;top:20px;right:35px;font-size:38px;color:#fff;cursor:pointer;}
@keyframes zoom{from{transform:scale(.7);opacity:0}to{transform:scale(1);opacity:1}}
@media(max-width:768px){
.product-section{padding:70px 3em;}
.product-grid{grid-template-columns:repeat(2,1fr);gap:25px;}
.product-info h3{font-size:17px;}
}
@media(max-width:360px){
.product-section{padding:60px 1.5em;}
.product-grid{grid-template-columns:1fr;gap:25px;}
.price-tag{font-size:12px;padding:5px 8px;}
.product-info h3{font-size:16px;}
.product-actions span{width:42px;height:42px;}
}

.cart-section{padding-top:5em;padding-bottom:4em;max-width:1200px;margin:auto;font-family:Arial,sans-serif;}
.cart-table{width:100%;border-collapse:collapse;}
.cart-table th{background:#a25a5a;color:#fff;padding:15px;}
.cart-table td{padding:20px;text-align:center;border:1px solid #ddd;}
.cart-table img{width:80px;}
.remove{color:#a25a5a;font-size:22px;cursor:pointer;}
.qty-box{display:flex;justify-content:center;align-items:center;}
.qty-box button{background:#a25a5a;color:#fff;border:none;padding:8px 12px;cursor:pointer;}
.qty-box span{padding:0 15px;}
.cart-actions {display: flex;justify-content: flex-end;gap: 15px;padding: 10px 30px;margin: 20px 0;box-sizing: border-box;
}
.cart-actions input{padding:12px;width:250px;}
.btn{padding:12px 25px;border:none;cursor:pointer;}
.btn.orange{background:#a25a5a;border-radius:25px;color:#fff;}
.btn.light{background:#a25a5a;color:#fff;border-radius:25px;font-size:14px;padding-top:12px;text-decoration:none;}
.cart-totals{width:350px;margin-left:44em;padding-bottom: 5em;}
.cart-totals table{width:100%;border-collapse:collapse;margin-bottom:20px;margin-top: 15px;}
.cart-totals td{border:1px solid #ddd;padding:12px;}
.checkout{width:100%;background:#a25a5a;color:#fff;}
@media (max-width: 768px) {
/* ===== SECTION PADDING ===== */
.cart-section {padding: 4em 1em;}
/* ===== TABLE WRAPPER FOR HORIZONTAL SCROLL ===== */
.cart-table-wrap {width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch; /* smooth scroll on iOS */}
/* ===== TABLE STYLING ===== */
.cart-table {width: 100%;min-width: 600px; /* prevents table from shrinking too much */border-collapse: collapse;font-size: 13px;}
/* ===== TABLE CELLS SINGLE LINE ===== */
.cart-table th,
.cart-table td {padding: 10px;white-space: nowrap;      /* prevents wrapping */overflow: hidden;         /* hides overflow */text-overflow: ellipsis;  /* shows ... if content too long */
}
/* ===== CART ACTIONS ===== */
.cart-actions {flex-direction: column;gap: 15px;padding-left: 1em;padding-right: 1em;
}
.cart-actions input {width: 100%;
}
/* ===== CART TOTALS ===== */
.cart-totals {width: 100%;margin: 20px 0 4em 0; /* top spacing only, left/right space from section padding */padding: 0 1em;    /* add left/right padding */box-sizing: border-box; /* ensure padding doesn’t break width */
}}
@media(max-width:360px){
.cart-section{padding:3em 1em 0px 2em;}
.cart-table{font-size:13px;}
.cart-table img{width:60px;}
.cart-table th,.cart-table td{padding:12px;}
.qty-box button{padding:6px 10px;}
.qty-box span{padding:0 10px;}
.cart-actions{flex-direction:column;gap:15px;}
.cart-actions input{width:100%;}
.btn{width:100%;text-align:center;}
.cart-totals{width:100%;}
}

.pd-section{padding:90px 7em 60px;background:#fff;}
.pd-container{width:85%;max-width:1300px;margin:auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;}

/* LEFT */
.pd-gallery{}
.pd-main-img{width: 91%;height:70%;display:block;transition:.3s;}
.pd-thumbs-wrap{display:flex;gap:15px;margin-top:20px;}
.pd-thumb{width:90px;height:90px;object-fit:cover;opacity:.4;cursor:pointer;transition:.3s;}
.pd-thumb.active{opacity:1;border:2px solid #a25a5a;}

/* RIGHT */
.pd-info{}
.pd-title{font-size:32px;letter-spacing:3px;font-weight:400;color: #000;}
.pd-price{color:#a25a5a;margin:20px 0;}
.pd-divider{border:none;border-bottom:1px solid #eee;margin:25px 0;}
.pd-desc{font-size:19px;line-height:1.8;color:#777;margin-bottom:15px;}

.pd-cart-row{display:flex;gap:25px;margin-top:30px;}
.pd-qty{display:flex;align-items:center;}
.pd-qty-btn{width:40px;height:40px;background:#a25a5a;border:none;color:#fff;font-size:18px;cursor:pointer;}
.pd-qty-count{width:40px;text-align:center;color: #000;}

.pd-add-cart{background:#a25a5a;color:#fff;border:none;padding:12px 35px;letter-spacing:2px;cursor:pointer;}

.pd-meta{margin-top:25px;margin-bottom:14px;color:#777;line-height: 2em;}
@media (max-width: 768px){
.pd-section{padding:90px 3em;}
.pd-container{grid-template-columns:1fr;gap:50px;}
.pd-main-img{width:100%;}
.pd-thumbs-wrap{justify-content:flex-start;}
.pd-thumb{width:80px;height:80px;}
.pd-title{font-size:28px;}
.pd-desc{font-size:17px;}
.pd-cart-row{flex-wrap:wrap;gap:20px;}
.pd-add-cart{padding:12px 30px;}
}
@media (max-width: 360px){
.pd-section{padding:70px 1.2em;}
.pd-container{gap:40px;}
.pd-main-img{width:100%;}
.pd-thumbs-wrap{gap:10px;}
.pd-thumb{width:65px;height:65px;}
.pd-title{font-size:22px;letter-spacing:2px;}
.pd-price{font-size:20px;}
.pd-desc{font-size:15px;line-height:1.6;}
.pd-cart-row{flex-direction:column;align-items:flex-start;}
.pd-qty{width:100%;}
.pd-add-cart{width:100%;text-align:center;padding:14px 0;}
.pd-meta{font-size:13px;}
}

.pd-related-section{padding:70px 7em;background:#000000;}
.pd-related-header{text-align:left;font-family:'Poppins',sans-serif;padding:0 80px 40px;}
.pd-related-subtitle{display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.pd-related-title{font-size:48px;margin-top:10px;}

.pd-related-slider{width:85%;margin:auto;overflow:hidden;position:relative;}
.pd-related-track{display:flex;transition:transform .6s ease;}

.pd-related-card{flex:0 0 33.3333%;position:relative;overflow:hidden;}
.pd-related-card img{width:100%;display:block;transition:.4s;}
.pd-related-name{position:absolute;bottom:20px;left:20px;color:#fff;font-size:20px;}

.pd-related-price{position:absolute;top:70px;right:15px;background:#a25a5a;color:#fff;padding:8px 12px;font-size:13px;transform:rotate(90deg);transform-origin:top right;}

.pd-related-actions{position:absolute;inset:0;background:rgba(0,0,0,.6);display:flex;justify-content:center;align-items:center;gap:20px;opacity:0;transition:.4s;}
.pd-related-actions i{color:#fff;font-size:18px;background:#a25a5a;padding:12px;border-radius:50%;cursor:pointer;}

.pd-related-card:hover .pd-related-actions{opacity:1;}
.pd-related-card:hover img{transform:scale(1.05);}

.pd-related-nav{position:absolute;top:45%;background:#fff;border:none;font-size:30px;padding:8px 15px;cursor:pointer;z-index:10;}
.pd-related-prev{left:-10px;}
.pd-related-next{right:-10px;}

.pd-related-popup{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:9999;}
.pd-related-popup img{max-width:80%;max-height:80%;border-radius:10px;}
.pd-related-close{position:absolute;top:20px;right:30px;font-size:36px;color:#fff;cursor:pointer;}
@media(max-width:768px){
.pd-related-section{padding:60px 3em;}
.pd-related-header{padding:0 20px 30px;}
.pd-related-title{font-size:38px;}
.pd-related-card{flex:0 0 50%;}
}
@media(max-width:360px){
.pd-related-section{padding:50px 1.2em;}
.pd-related-header{padding:0 10px 25px;}
.pd-related-title{font-size:28px;}
.pd-related-card{flex:0 0 100%;}
.pd-related-name{font-size:18px;}
.pd-related-price{font-size:12px;padding:6px 10px;}
.pd-related-nav{font-size:24px;padding:6px 12px;}
}
.latest-blog{padding:120px 7em 40px;background:#fff;}
.blog-section{width:88%;max-width:1400px;margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);column-gap:80px;row-gap:20px;}
.blog-card{background:#f6f1ef;overflow:hidden;}
.blog-card img{width:100%;height:250px;object-fit:cover;display:block;transition:transform .8s ease;}
.blog-card:hover img{transform:scale(1.08);}
.blog-content{padding:20px 30px 20px;}
.blog-content .meta{font-size:13px;color:#bfa79c;letter-spacing:1.2px;display:block;margin-bottom:22px;}
.blog-content h2{font-size:19px;letter-spacing:3.5px;font-weight:300;color:#b56a54;margin-bottom:5px;text-transform:uppercase;}
.blog-content p{font-size:15px;line-height:1.9;color:#777;}
@media(max-width:768px){
.latest-blog{padding:100px 4em 30px;}
.blog-section{grid-template-columns:1fr;row-gap:60px;}
.blog-card img{height:300px;}
.blog-content{padding:35px;}
.blog-content h2{font: size 20px;}
.blog-content p{font-size:14px;}
}
@media(max-width:360px){
.latest-blog{padding:80px 1.2em 25px;}
.blog-section{width:100%;row-gap:40px;}
.blog-card img{height:220px;}
.blog-content{padding:25px;}
.blog-content .meta{font-size:12px;margin-bottom:15px;}
.blog-content h2{font-size:20px;letter-spacing:2px;}
.blog-content p{font-size:13px;line-height:1.7;}
}
/* ================= BLOG PAGINATION ================= */
.blog-pagination{margin:80px auto 0;text-align:center;}
.blog-pagination button{width:45px;height:45px;border:none;background:#f2f2f2;color:#666;margin:0 6px;cursor:pointer;font-size:15px;}
.blog-pagination .active{background:#9b5b4c;color:#fff;}
@media(max-width:768px){
.blog-pagination button{width:42px;height:42px;font-size:14px;}}
@media(max-width:360px){
.blog-pagination button{width:38px;height:38px;margin:0 4px;}}

.post-detail{width:100%;padding:80px 7em 20px;background:#fff;}
.post-image{width:90%;max-width:1400px;margin:0 auto;}
.post-image img{width:100%;height:auto;max-height:80vh;object-fit:cover;}
.post-content{width:100%;max-width:1200px;padding:2em 4em 0;}
.post-content p{font-size:16px;line-height:1.9;color:#9a9a9a;margin-bottom:10px;}

@media(max-width:768px){
.post-detail{padding:70px 3em 20px;}
.post-image{width:100%;}
.post-image img{max-height:180px;}
.post-content{padding:2em 2em 0;}
.post-content p{font-size:17px;}
}
@media(max-width:360px){
.post-detail{padding:60px 1.2em 15px;}
.post-image img{height: 20em;}
.post-content{padding:1.5em 1em 0;}
.post-content p{font-size:14px;line-height:1.7;}
}

.comment-section{padding:0 40px 60px;background:#fff;}
.comment-wrap{width:100%;max-width:1200px;padding:0 5em 0 7em;margin:auto;display:grid;grid-template-columns:1fr 1fr;column-gap:100px;}
.comment-author{display:flex;align-items:center;gap:20px;}
.comment-author img{width:70px;height:70px;border-radius:50%;object-fit:cover;}
.comment-author h4{font-size:14px;letter-spacing:2px;font-weight:400;color:#b56a54;}
.comment-author h4 span{font-size:12px;color:#aaa;margin-left:10px;}
.comment-box p{margin-top:20px;font-size:16px;line-height:1.8;color:#888;max-width:420px;}
.reply{display:inline-block;margin-top:15px;font-size:13px;color:#999;text-decoration:none;}
.comment-form h3{font-size:22px;letter-spacing:3px;color:#b56a54;font-weight:400;margin-bottom:30px;}
.comment-form textarea{width:100%;height:100px;border:none;border-bottom:1px solid #eee;font-size:16px;padding:10px 0;resize:none;outline:none;}
.form-row{display:flex;gap:40px;margin-top:30px;}
.form-row input{width:100%;border:none;border-bottom:1px solid #eee;padding:10px 0;font-size:16px;outline:none;}
.comment-form button{margin-top:40px;background:#9b5b4c;color:#fff;border:none;padding:14px 30px;cursor:pointer;font-size:13px;letter-spacing:1px;}
@media(max-width:768px){
.comment-section{padding:0 2em 50px;}
.comment-wrap{grid-template-columns:1fr;column-gap:0;row-gap:60px;padding:0 2em;}
.comment-box p{max-width:100%;font-size:16px;}
.form-row{flex-direction:column;gap:25px;}
}
@media(max-width:360px){
.comment-section{padding:0 15px 40px;}
.comment-wrap{padding:0;}
.comment-author img{width:55px;height:55px;}
.comment-author h4{font-size:13px;}
.comment-box p{font-size:15px;line-height:1.7;}
.comment-form h3{font-size:18px;letter-spacing:2px;}
.comment-form textarea{font-size:15px;}
.form-row input{font-size:15px;}
.comment-form button{padding:12px 22px;font-size:12px;}
}

.contact-section{padding:80px 7em 60px;background:#ffffff;}
.contact-wrap{width:85%;max-width:1400px;margin:auto;display:grid;grid-template-columns:1fr 1fr;column-gap:80px;}
/* LEFT */
.location{color:#a25a5a;letter-spacing:4px;font-size:13px;}
.contact-info h1{font-size:42px;margin:20px 0 30px;font-weight:400;margin-left:-8px;color: #000 ;}
.contact-info p{font-size:17px;color:#777;max-width:420px;line-height:1.8;}
.contact-info ul{margin-top:20px;list-style:none;padding:0;}
.contact-info li{margin-bottom:17px;font-size:18px;color:#666;}
.contact-info strong{color:#000;}
.contact-info a{color:#666;text-decoration:none;}
/* RIGHT */
.contact-form h3{font-size:20px;margin-bottom:30px;font-weight:400;margin-top: 10px; color: #a25a5a;}
.form-row{display:flex;gap:40px;margin-bottom:40px;}
.form-row input{width:100%;border:none;border-bottom:1px solid #ddd;padding:10px 0;outline:none;font-size:19px;}
.contact-form textarea{width:100%;height:140px;border:none;border-bottom:2px solid #a25a5a;padding:10px 0;outline:none;font-size:19px;resize:none;}
.contact-form button{margin-top:50px;background:#a25a5a;color:#fff;border:none;padding:14px 40px;font-size:13px;letter-spacing:2px;cursor:pointer;}
/* MAP */
.map-section{width:100%;}
.map-wrap{width:100%;height:450px;overflow:hidden;}
.map-wrap iframe{width:100%;height:100%;border:0;}

@media(max-width:768px){
.contact-section{padding:70px 3em 50px;}
.contact-wrap{grid-template-columns:1fr;row-gap:70px;}
.contact-info p{max-width:100%;}
.form-row{gap:25px;}
.map-wrap{height:380px;}
}
@media(max-width:360px){
.contact-section{padding:50px 1.2em 40px;}
.contact-wrap{width:100%;row-gap:50px;}
.contact-info h1{font-size:30px;margin-left:0;}
.contact-info p{font-size:15px;line-height:1.6;}
.contact-info li{font-size:15px;}
.form-row{flex-direction:column;gap:25px;}
.form-row input,.contact-form textarea{font-size:15px;}
.contact-form button{padding:12px 30px;}
.map-wrap{height:260px;}
}

:root{--dark:#0e0e0e;--dark-2:#161616;--accent:#a45555;--light:#fff;--muted:#9a9a9a;--border:#262626;}
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
html,body{width:100%;overflow-x:hidden;}
body{background:#0b0b0b;color:var(--light);min-height:100vh;}

/* SIDEBAR */
.sidebar{width:260px;min-height:100vh;background:var(--dark);border-right:1px solid var(--border);padding:30px 20px;position:fixed;top:0;left:0;overflow:hidden;}
.brand{font-size:22px;font-weight:600;margin-bottom:30px;color:var(--accent);}
.nav-list{list-style:none;}
.nav-list li{margin-bottom:16px;}
.nav-list a{text-decoration:none;color:var(--muted);font-size:14px;display:block;padding:10px 14px;border-radius:6px;transition:.3s;}
.nav-list a:hover,.nav-list a.active{background:var(--dark-2);color:var(--light);}

/* MAIN */
.main{margin-left:260px;width:calc(100% - 260px);padding:20px;overflow:hidden;}

/* TOPBAR */
.topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px;flex-wrap:wrap;gap:15px;}
.topbar h1{font-size:24px;font-weight:500;}
.user-box{display:flex;align-items:center;gap:12px;}
.user-box img{width:42px;height:42px;border-radius:50%;object-fit:cover;}

/* STATS */
.stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin-bottom:40px;}
.stat-card{background:var(--dark);padding:20px;border-radius:10px;border:1px solid var(--border);}
.stat-card span{font-size:13px;color:var(--muted);}
.stat-card h2{font-size:26px;margin-top:8px;color:var(--accent);}

/* CONTENT GRID */
.content-grid{display:grid;grid-template-columns:2fr 1fr;gap:30px;max-width:100%;}

/* BOX */
.box{background:var(--dark);padding:22px;border-radius:12px;border:1px solid var(--border);overflow:hidden;}
.box h3{font-size:18px;margin-bottom:18px;}

/* TABLE */
.table-wrap{width:100%;overflow-x:auto;}
table{width:100%;border-collapse:collapse;font-size:13px;min-width:600px;}
table th,table td{padding:12px 10px;border-bottom:1px solid var(--border);text-align:left;}
table th{color:var(--muted);font-weight:500;}
.status{padding:4px 10px;border-radius:20px;font-size:11px;white-space:nowrap;}
.confirmed{background:#1f6f3e;}
.pending{background:#8a6d1d;}
.completed{background:#3b5f8a;}

/* ACTIONS */
.actions{display:flex;flex-direction:column;gap:15px;}
.action-btn{padding:10px;background:var(--dark-2);border-radius:8px;color:var(--light);text-decoration:none;text-align:center;font-size:14px;transition:.3s;}
.action-btn:hover{background:var(--accent);}

/* PROFILE */
.profile-menu{position:relative;cursor:pointer;}
.profile-dropdown{position:absolute;top:55px;right:0;background:var(--dark);border:1px solid var(--border);border-radius:8px;width:180px;display:none;flex-direction:column;z-index:99;overflow:hidden;}
.profile-dropdown a{padding:12px 15px;font-size:14px;color:var(--light);text-decoration:none;border-bottom:1px solid var(--border);}
.profile-dropdown a:hover{background:var(--dark-2);}
.profile-dropdown a.logout{color:#ff6b6b;border-bottom:none;}
.profile-dropdown.show{display:flex;}

/* BACK BUTTON */
.back-btn{background:#fff;border:none;padding:10px 14px;border-radius:10px;cursor:pointer;display:inline-flex;align-items:center;gap:8px;font-size:14px;box-shadow:0 8px 20px rgba(0,0,0,.08);transition:.3s;}
.back-btn:hover{transform:translateY(-3px);background:#eef6ff;}

/* TABLET */
@media(max-width:768px){
.sidebar{position:relative;width:100%;min-height:auto;padding:15px;}
.nav-list{flex-wrap:wrap;gap:8px;}
.nav-list li{margin-bottom:0;}
.main{margin-left:0;width:100%;padding:15px;}
.stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.content-grid{grid-template-columns:1fr;}
.user-profile-form{grid-template-columns:1fr;}

}

/* MOBILE */
@media(max-width:360px){
.nav-list{flex-wrap:wrap;overflow-x:auto;}
.nav-list a{font-size:12px;padding:6px 10px;white-space:nowrap;}
.main{padding:12px;}
.stats-grid{grid-template-columns:1fr;}
table{display:block;width:100%;overflow-x:auto;}

}

.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:15px;}
.gallery-grid img{width:100%;border-radius:8px;display:block;}
.profile-form{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
@media(max-width:768px){.profile-form{grid-template-columns:1fr;}}

/* USER PROFILE FORM (UNIQUE) */
.user-profile-form{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.user-profile-form input{padding:12px;border-radius:6px;border:none;outline:none;}
.user-profile-form button{grid-column:span 2;}

:root{--dark:#0e0e0e;--dark-2:#161616;--accent:#a45555;--light:#ffffff;--muted:#9a9a9a;--border:#262626}

/* RESET */
html,body{width:100%;overflow-x:hidden}

/* BODY */
body{background:#0b0b0b;color:var(--light);font-family:Arial,Helvetica,sans-serif}

/* SIDEBAR */
.sidebar{position:fixed;top:0;left:0;width:220px;height:100vh;background:var(--dark);border-right:1px solid var(--border);padding:30px 20px;overflow-y:auto}
.brand{font-size:22px;font-weight:600;margin-bottom:40px;color:var(--accent)}
.nav-list{list-style:none}
.nav-list li{margin-bottom:16px}
.nav-list a{display:block;padding:10px 14px;font-size:14px;color:var(--muted);text-decoration:none;border-radius:6px;transition:.3s}
.nav-list a:hover,.nav-list a.active{background:var(--dark-2);color:var(--light)}

/* MAIN */
.main{margin-left:220px;padding:30px 20px;min-height:100vh}

/* TOPBAR */
.topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px}
.topbar h1{font-size:24px;font-weight:500}
.user-box{display:flex;align-items:center;gap:12px}
.user-box img{width:42px;height:42px;border-radius:50%;object-fit:cover;cursor:pointer}

/* STATS */
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:40px}
.stat-card{background:var(--dark);padding:20px;border-radius:10px;border:1px solid var(--border)}
.stat-card span{font-size:13px;color:var(--muted)}
.stat-card h2{font-size:28px;margin-top:10px;color:var(--accent)}

/* CONTENT GRID */
.content-grid{display:grid;grid-template-columns:2fr 1fr;gap:30px}

/* BOX */
.box{background:var(--dark);padding:25px;border-radius:12px;border:1px solid var(--border);margin-bottom:30px}
.box h3{font-size:18px;margin-bottom:20px}

/* TABLE */
.table-wrap{width:100%;overflow-x:auto}
table{width:100%;border-collapse:collapse;font-size:13px}
th,td{padding:12px 10px;border-bottom:1px solid var(--border);text-align:left;white-space:nowrap}
th{color:var(--muted);font-weight:500}

/* STATUS */
.status{padding:4px 10px;border-radius:20px;font-size:11px;color:#fff}
.confirmed{background:#1f6f3e}
.pending{background:#8a6d1d}
.completed{background:#3b5f8a}
.rejected{background:#8a1f1f}

/* ACTIONS */
.actions{display:flex;flex-direction:column;gap:14px}
.action-btn{padding:10px;background:var(--dark-2);border-radius:8px;color:var(--light);text-decoration:none;text-align:center;font-size:14px;transition:.3s}
.action-btn:hover{background:var(--accent)}

/* PROFILE DROPDOWN */
.profile-menu{position:relative}
.profile-dropdown{position:absolute;top:55px;right:0;width:180px;background:var(--dark);border:1px solid var(--border);border-radius:8px;display:none;flex-direction:column;overflow:hidden;z-index:99}
.profile-dropdown a{padding:12px 15px;font-size:14px;color:var(--light);text-decoration:none;border-bottom:1px solid var(--border)}
.profile-dropdown a:hover{background:var(--dark-2)}
.profile-dropdown a.logout{color:#ff6b6b;border-bottom:none}
.profile-dropdown.show{display:flex}

/* BUTTON */
.back-btn{background:#fff;border:none;padding:10px 14px;border-radius:10px;display:flex;align-items:center;gap:8px;font-size:14px;cursor:pointer;transition:.3s}
.back-btn:hover{transform:translateY(-3px);background:#eef6ff}

/* ================= TAB (≤768px) ================= */
@media(max-width:768px){

.nav-list{gap:10px}
.nav-list li{margin:0}
.main{margin-left:0;padding:25px 16px}
.stats-grid{grid-template-columns:repeat(2,1fr)}
.content-grid{grid-template-columns:1fr}
}

/* ================= MOBILE (≤360px) ================= */
@media(max-width:360px){
.stats-grid{grid-template-columns:1fr}
.topbar{flex-direction:column;align-items:flex-end;gap:15px}
}


/* ================= HERO ================= */
.hero-h {height: 100vh;width: 100%;position: relative;overflow: hidden;display: flex;align-items: center;padding-left: 100px;
}

/* ================= SLIDES ================= */
.hero-h-slides {position: absolute;inset: 0;z-index: 0;}
/* SINGLE SLIDE */
.slide-h {position: absolute;inset: 0;background-size: cover;background-position: center;opacity: 0;transform: scale(1.2);transition: opacity 1.5s ease;animation: zoomOut 8s linear infinite;
}
/* SLIDE IMAGES */
.slide-h:nth-child(1) {background:linear-gradient(to right, rgba(0, 0, 0, 0.767) 40%, rgba(0,0,0,0.3)),url("../img/h2-hero\ 1.jpg");background-size: cover;background-position: center;
}
.slide-h:nth-child(2) {background:linear-gradient(to right, rgba(0, 0, 0, 0.767) 40%, rgba(0,0,0,0.3)),url("../img/h2-hero2.jpg");background-size: cover;background-position: center;
}
.slide-h:nth-child(3) {
  background:linear-gradient(to right, rgba(0, 0, 0, 0.767) 40%, rgba(0,0,0,0.3)),url("../img/h2-hero3.jpg");background-size: cover;background-position: center;
}
/* ACTIVE SLIDE */
.slide-h.active {
  opacity: 1;
  z-index: 1;
}

/* ZOOM OUT EFFECT */
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ================= HERO TEXT ================= */
.hero-h-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

.estd-h {
  font-size: 13px;
  letter-spacing: 6px;
  opacity: 0.7;
}

.hero-h-content h1 {
  font-size: 68px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 20px 0;
}

.designation-h {
  font-size: 14px;
  letter-spacing: 5px;
  opacity: 0.7;
}

/* FADE IN ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CORNER LINES ================= */
.corner-h {
  width: 40px;
  height: 40px;
  position: absolute;
}

.tl-h {
  border-top: 2px solid #a25a5a;
  border-left: 2px solid #a25a5a;
  top: -30px;
  left: -40px;
}

.br-h {
  border-bottom: 2px solid #a25a5a;
  border-right: 2px solid #a25a5a;
  bottom: -30px;
  right: -40px;
}

/* ================= SCROLL ICON ================= */
.scroll-down-h {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.5s;
}

.scroll-down-h span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: scroll 1.5s infinite;
}

/* SCROLL ANIMATION */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Montserrat',sans-serif;}

/* ================= HOME 2 HERO ================= */
.hero-h2 { position: relative; width: 100%; padding-top: 50%; overflow: hidden; font-family: 'Arial', sans-serif; display: flex; align-items: center; }

/* SLIDES */
.hero-h2-slides { position: absolute; inset: 0; z-index: 0; }
.slide-h2 { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.2); transition: opacity 1.5s ease; animation: zoomOutH2 8s linear infinite; }
.slide-h2-1 { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/h2-hero\ 1.jpg") center/cover; }
.slide-h2-2 { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/h2-hero2.jpg") center/cover; }
.slide-h2-3 { background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3)), url("../img/h2-hero3.jpg") center/cover; }
.slide-h2.active { opacity: 1; z-index: 1; }

@keyframes zoomOutH2 { 0% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* HERO CONTENT */
.hero-h2-content { position: absolute; left: 100px; top: 50%; transform: translateY(-50%); z-index: 2; opacity: 0; animation: fadeUpH2 1.2s ease forwards; animation-delay: 0.6s; max-width: 600px; }
.estd-h2 { font-size: 13px; letter-spacing: 6px; opacity: 0.7; }
.hero-h2-content h1 { font-size: 68px; font-weight: 600; letter-spacing: 3px; margin: 20px 0; }
.designation-h2 { font-size: 14px; letter-spacing: 5px; opacity: 0.7; }

@keyframes fadeUpH2 { to { opacity: 1; transform: translateY(0); } }

/* CORNER LINES */
.corner-h2 { width: 40px; height: 40px; position: absolute; }
.tl-h2 { border-top: 2px solid #a25a5a; border-left: 2px solid #a25a5a; top: -30px; left: -40px; }
.br-h2 { border-bottom: 2px solid #a25a5a; border-right: 2px solid #a25a5a; bottom: -30px; right: -40px; }

/* SCROLL ICON */
.scroll-down-h2 { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0; animation: fadeUpH2 1s ease forwards; animation-delay: 1.5s; }
.scroll-down-h2 span { display: block; width: 18px; height: 18px; border-bottom: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(45deg); animation: scrollH2 1.5s infinite; }

@keyframes scrollH2 { 0% { opacity: 0; transform: rotate(45deg) translate(-5px,-5px); } 50% { opacity: 1; } 100% { opacity: 0; transform: rotate(45deg) translate(5px,5px); } }

/* ================= TABLET 768 ================= */
@media(max-width:768px){
  .hero-h2 { padding-top: 70%; }
  .hero-h2-content { left: 50px; max-width: 80%; }
  .hero-h2-content h1 { font-size: 48px; }
  .estd-h2 { font-size: 12px; }
  .designation-h2 { font-size: 13px; }
  .corner-h2 { width: 30px; height: 30px; }
  .tl-h2 { top: -20px; left: -30px; }
  .br-h2 { bottom: -20px; right: -30px; }
}

/* ================= MOBILE 360 ================= */
@media(max-width:360px){
  .hero-h2 { padding-top: 55vh; justify-content: center; }
  .hero-h2-content { left: 20px; max-width: 90%; }
  .hero-h2-content h1 { font-size: 36px; letter-spacing: 2px; }
  .estd-h2 { font-size: 11px; letter-spacing: 4px; }
  .designation-h2 { font-size: 12px; letter-spacing: 3px; }
  .corner-h2 { display: none; }
  .scroll-down-h2 { bottom: 20px; }
}

/* ================= ABOUT SECTION ================= */
.about-section-h2 {background-color:#121212;color:#ccc;font-family:'Poppins',sans-serif;padding:100px 5em;}
.about-container-h2 {max-width:1400px;margin:auto;display:flex;gap:60px;position:relative;}
.about-text-h2 {flex:1;max-width:600px;}
.line-h2 {width:50px;height:2px;background-color:#a25a5a;margin-bottom:30px;}
.about-text-h2 h2 {color:#a25a5a;font-weight:500;font-size:24px;line-height:1.6;letter-spacing:1px;margin-bottom:30px;}
.about-text-h2 p {font-size:14px;line-height:1.9;color:#bdbdbd;margin-bottom:22px;}
.signature-h2 {margin-top:20px;}
.signature-h2 img {width:100px;display:block;}
.divider-h2 {width:2px;background-image:radial-gradient(#444 1px,transparent 1px);background-size:2px 12px;}
.about-image-h2 {flex:1;display:flex;justify-content:center;overflow:hidden;}
.image-wrapper-h2 {position:relative;width:420px;}
.image-wrapper-h2 img {width:100%;display:block;position:relative;z-index:2;transition:transform 0.5s ease;}
.image-wrapper-h2:hover img {transform:scale(0.95);}
.color-block-h2 {position:absolute;bottom:-15px;left:-25px;width:100%;height:100%;background-color:#a25a5a;z-index:1;}

/* ================= RESPONSIVE ================= */
@media(max-width:360px){.about-section-h2 {padding:60px 20px;}.about-container-h2 {flex-direction:column;gap:40px;}.about-text-h2 {max-width:100%;}.about-text-h2 h2 {font-size:18px;line-height:1.5;}.about-text-h2 p {font-size:13px;line-height:1.8;}.signature-h2 img {width:80px;}.divider-h2 {display:none;}.image-wrapper-h2 {width:100%;max-width:300px;}.color-block-h2 {bottom:-10px;left:-15px;}}
@media(max-width:768px){.about-section-h2 {padding:80px 40px;}.about-container-h2 {flex-direction:column;gap:50px;}.about-text-h2 {max-width:100%;}.about-text-h2 h2 {font-size:22px;}.about-text-h2 p {font-size:14px;}.divider-h2 {display:none;}.image-wrapper-h2 {width:380px;}.color-block-h2 {bottom:-12px;left:-20px;}}

/* ================= SECTION ================= */
.pricing-section {padding:70px 6% 60px;background:#fff;}
.pricing-subtitle {display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.pricing-title {font-size:48px;margin-top:10px;margin-bottom:1em;margin-left:-10px;color:#000000;}

/* ================= GRID ================= */
.pricing-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:50px;}

/* ================= CARD ================= */
.price-card {position:relative;height:350px;overflow:hidden;cursor:pointer;background-size:cover;background-position:center;background-repeat:no-repeat;transform:scale(1);transition:transform 0.6s ease;}
.price-card::before {content:"";position:absolute;inset:0;background:rgba(0,0,0,0.39);z-index:1;transition:background 0.5s ease;}
.price-card:hover::before {background:rgba(0,0,0,0.418);}
.price-card:hover {transform:scale(0.93);}

/* ================= IMAGE ================= */
.price-card img {width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transform:scale(1.1);transition:0.6s ease;}
.price-card:hover img {transform:scale(1);filter:grayscale(0%);}

/* ================= CONTENT ================= */
.price-content {position:absolute;inset:0;padding:40px;color:#fff;z-index:2;background:linear-gradient(to bottom,rgba(0,0,0,0.85),rgba(0,0,0,0.25));}
.price-content h4 {display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.price-content h3 {font-size:42px;margin-bottom:25px;}
.price-content ul {list-style:none;padding:0;}
.price-content li {font-size:14px;margin-bottom:12px;opacity:0.9;}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){.pricing-grid {grid-template-columns:repeat(2,1fr);gap:30px;}.price-card {height:300px;}.price-content {padding:30px;}.price-content h3 {font-size:36px;}.price-content li {font-size:13px;}}
@media(max-width:360px){.pricing-grid {grid-template-columns:1fr;gap:20px;}.price-card {height:250px;}.price-content {padding:20px;}.price-content h3 {font-size:28px;}.price-content h4 {font-size:12px;letter-spacing:4px;}.price-content li {font-size:12px;}}

/* ================= SECTION ================= */
.home2-photo-showcase {padding:90px 5em;background:linear-gradient(to top,rgba(164,85,85,0.85),rgba(0,0,0,0.15));color:#fff;}

/* ================= HEADER ================= */
.home2-services-header {margin-bottom:60px;}
.home2-small-title {font-size:14px;letter-spacing:6px;color:#c88a8a;}
.home2-services-header h2 {font-size:46px;margin-top:15px;}

/* ================= GRID ================= */
.home2-photo-row {display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}

/* ================= CARD ================= */
.home2-photo-card {position:relative;height:420px;overflow:hidden;text-decoration:none;color:#fff;}
.home2-photo-card img {width:100%;height:100%;object-fit:cover;transition:0.8s ease;}
.home2-overlay {position:absolute;inset:0;background:linear-gradient(to top,rgba(163,101,101,0.85),rgba(0,0,0,0.15));display:flex;flex-direction:column;justify-content:flex-end;padding:30px;opacity:0;transition:0.6s ease;}
.home2-overlay h3 {font-size:26px;margin-bottom:8px;}
.home2-overlay p {font-size:14px;opacity:0.9;}

/* ================= HOVER ================= */
.home2-photo-card:hover img {transform:scale(1.1);}
.home2-photo-card:hover .home2-overlay {opacity:1;}

/* ================= FADE UP ================= */
.home2-fade-up {opacity:0;transform:translateY(40px);transition:0.8s ease;}
.home2-fade-up.show {opacity:1;transform:translateY(0);}

/* ================= VISIBILITY ================= */
.home2-mobile-only {display:none;}
.home2-desktop-only {display:grid;}

/* ================= TABLET ================= */
@media(max-width:768px){.home2-photo-row {grid-template-columns:repeat(1,1fr);}.home2-overlay {opacity:1;}}
/* ================= MOBILE ================= */
@media(max-width:360px){.home2-photo-showcase {padding:70px 1.5em;}.home2-services-header {text-align:center;}.home2-services-header h2 {font-size:30px;}.home2-desktop-only {display:none;}.home2-mobile-only {display:block;}.home2-photo-card {height:320px;}.home2-overlay {opacity:1;}}

/* ================= SECTION ================= */
.home2-awards-showcase {padding:70px 5em 40px;background:#ffffff;color:#000000;}
.home2-services-header-awards {margin-bottom:60px;}
.home2-small-title-awards {font-size:14px;letter-spacing:6px;color:#c88a8a;}
.home2-services-header-awards h2 {font-size:46px;margin-top:15px;}

/* ================= SLIDER ================= */
.home2-awards-slider {width:100%;overflow:hidden;margin-top:-10px;}
.home2-awards-track {display:flex;width:max-content;animation:home2InfiniteScroll 25s linear infinite;}
.home2-awards-slider:hover .home2-awards-track {animation-play-state:paused;}
.home2-award {flex:0 0 150px;margin-right:30px;transition:transform 0.3s;}
.home2-award img {width:100%;filter:grayscale(100%);transition:filter 0.3s ease,transform 0.3s ease;}
.home2-award:hover img {filter:grayscale(0%);transform:scale(1.05);}
@keyframes home2InfiniteScroll {0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

.home2-awards-logos {width:100%;padding:1em 0;}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){.home2-awards-track {animation-duration:20s;}.home2-award {flex:0 0 130px;margin-right:20px;}}
@media(max-width:360px){.home2-awards-showcase {padding: 40px 1em 20px; text-align: center;}
.home2-awards-track {animation-duration:15s;}.home2-award {flex:0 0 100px;margin-right:15px;}}

/* ================= SECTION ================= */
.home2-portfolio-section {padding:60px 5em 60px 5em;font-family:'Poppins',sans-serif;background:#000000;}
.home2-portfolio-header {margin-bottom:40px;}
.home2-small-title {display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.home2-portfolio-header h2 {font-size:48px;margin-top:10px;margin-left:-10px;color:#ffffff;}

/* ================= GRID ================= */
.home2-portfolio-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}

/* ================= CARD ================= */
.home2-portfolio-card {position:relative;overflow:hidden;}
.home2-portfolio-card img {width:100%;height:100%;object-fit:cover;filter:grayscale(100%);transition:filter 0.5s ease,transform 0.5s ease;}
.home2-portfolio-card:hover img {filter:grayscale(0%);transform:scale(0.92);}

/* LABEL */
.home2-portfolio-card .home2-label {position:absolute;bottom:20px;left:20px;background:#fff;color:#000;padding:8px 14px;font-size:14px;opacity:0;transition:opacity 0.3s ease;}
.home2-portfolio-card:hover .home2-label {opacity:1;}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){.home2-portfolio-grid {grid-template-columns:repeat(2,1fr);}.home2-portfolio-card img {transform:scale(1);}}
@media(max-width:360px){.home2-portfolio-section {padding: 40px 1em 40px 1em; text-align: center;}
                        .home2-portfolio-grid {grid-template-columns:1fr;}.home2-portfolio-card img {transform:scale(1);}}

.home2-latest-news {background:#ffffff;padding:80px 5em 70px 5em;}
.home2-news-container {width:1200px;max-width:100%;}
.home2-news-header {margin-bottom:50px;}
.home2-news-tag {display:inline-block;font-size:13px;letter-spacing:6px;color:#a25a5a;margin-bottom:20px;}
.home2-news-header h2 {font-size:48px;margin-top:10px;margin-left:-10px;color:#000000;}
.home2-news-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:35px;}
.home2-news-card {position:relative;background:#fff;padding:40px 30px;min-height:400px;min-width:283px;transition:all 0.5s ease;overflow:hidden;border:2px solid #a25a5a;}
.home2-news-card::before {content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),var(--bg) center/cover no-repeat;opacity:0;transition:0.5s ease;}
.home2-news-card * {position:relative;z-index:2;}
.home2-news-meta {display:flex;gap:20px;font-size:13px;color:#888;margin-bottom:20px;}
.home2-news-card h3 {font-size:26px;font-weight:500;margin-bottom:20px;color:#000;}
.home2-news-card p {color:#777;line-height:1.7;font-size:15px;margin-bottom:30px;}
.home2-news-card a {text-decoration:none;color:#555;font-size:15px;border-bottom:1px solid #a25a5a;padding-bottom:4px;}
.home2-news-card:hover {transform:scale(0.92);border:1px solid #ffffff;}
.home2-news-card:hover::before {opacity:1;}
.home2-news-card:hover h3,.home2-news-card:hover p,.home2-news-card:hover a,.home2-news-card:hover .home2-news-meta {color:#fff;}
.home2-news-card:hover a {border-color:#fff;}

/* RESPONSIVE */
@media(max-width:768px){.home2-news-grid {grid-template-columns:repeat(2,1fr);}.home2-news-card {min-height:350px;padding:30px;}}
@media (max-width: 360px) {
  .home2-news-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    justify-items: center;      /* center the cards horizontally */
    gap: 15px;                  /* optional spacing between cards */
  }
 .home2-latest-news {
    padding: 40px 1em 30px 1em; /* smaller padding for small screens */
  }
  .home2-news-card {
    width: 90%;                /* take most of the screen but leave margin */
    max-width: 320px;          /* optional: prevent it from being too wide */
    min-height: 300px;
    padding: 20px;
    box-sizing: border-box;    /* include padding in width */
  }
   .home2-news-header h2 { 
        font-size: 38px;       /* smaller font for mobile */
        margin-left: 0;        /* remove negative margin */
        text-align: center;    /* center the text */
    }
  .home2-news-tag { 
        display: block;       /* full width for centering */
        text-align: center;   /* center the tag */
        margin-bottom: 10px;  /* adjust spacing */
        letter-spacing: 2px;  /* reduce letter spacing for mobile */
    }
}

/* ================= CTA SECTION ================= */
.cta-section {position:relative;height:360px;background-image:url("../img/wed-news.jpg");background-size:cover;background-position:center;background-repeat:no-repeat;background-attachment:fixed;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;}
.cta-section::before {content:"";position:absolute;inset:0;background:rgba(0,0,0,0.74);z-index:1;}
.cta-content {position:relative;z-index:2;color:#fff;}
.cta-title {display:block;font-size:14px;letter-spacing:4px;color:#a66;margin-bottom:20px;}
.cta-phone {font-size:16px;opacity:0.85;margin-bottom:6px;}
.cta-email {font-size:15px;opacity:0.6;margin-bottom:30px;}
.cta-btn {display:inline-block;padding:14px 36px;background:#a45555;color:#fff;text-decoration:none;font-size:14px;letter-spacing:1px;transition:0.4s ease;}
.cta-btn:hover {background:#8e4444;}

/* ================= TABLET (≤768px) ================= */
@media(max-width:768px){.cta-section {height:320px;background-attachment:scroll;}.cta-title {font-size:13px;}.cta-phone {font-size:15px;}.cta-email {font-size:14px;}.cta-btn {padding:12px 30px;font-size:13px;}}
/* ================= MOBILE (≤360px) ================= */
@media(max-width:360px){.cta-section {height:280px;}.cta-title {font-size:12px;}.cta-phone {font-size:14px;}.cta-email {font-size:13px;}.cta-btn {padding:10px 25px;font-size:12px;}}

/* ================= ERROR SECTION ================= */
.error-section {min-height:100vh;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at top,#f6d66533,transparent 60%),#0c0c0c;padding:20px;}
.error-box {text-align:center;max-width:420px;animation:fadeUp 0.8s ease;}
.error-icon {width:70px;height:70px;margin:0 auto 20px;background:#a25a5a;color:#000;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;}
.error-box h1 {font-size:96px;font-weight:700;color:#a25a5a;line-height:1;}
.error-box h2 {font-size:26px;margin:10px 0;}
.error-box p {font-size:14px;opacity:0.85;margin-bottom:30px;}
.error-btn {display:inline-flex;align-items:center;gap:8px;padding:12px 26px;background:#a25a5a;color:#000;text-decoration:none;border-radius:40px;font-size:14px;font-weight:500;transition:0.3s ease;}
.error-btn:hover {transform:translateY(-3px);box-shadow:0 10px 25px rgba(228,111,103,0.418);}
@keyframes fadeUp {from{opacity:0;transform:translateY(20px);}to{opacity:1;transform:translateY(0);}}

/* ================= TABLET (≤768px) ================= */
@media(max-width:768px){.error-icon {width:60px;height:60px;font-size:24px;}.error-box h1 {font-size:72px;}.error-box h2 {font-size:22px;}.error-box p {font-size:13px;}.error-btn {padding:10px 22px;font-size:13px;}}

/* ================= MOBILE (≤360px) ================= */
@media(max-width:360px){.error-icon {width:50px;height:50px;font-size:20px;}.error-box h1 {font-size:54px;}.error-box h2 {font-size:18px;}.error-box p {font-size:12px;}.error-btn {padding:8px 18px;font-size:12px;}}

.home2-coming-container {text-align:center;padding:120px 30px;max-width:1200px;align-items: center;justify-content: center;margin-left: 5em;}
.home2-coming-logo {display:block;margin:0 auto 25px;font-size:28px;font-weight:700;letter-spacing:2px;}
.home2-coming-title {font-size:48px;font-weight:700;margin-bottom:15px;}
.home2-coming-highlight {color:#a25a5a;}
.home2-coming-text {font-size:16px;opacity:0.85;margin-bottom:35px;}
.home2-coming-notify {display:flex;gap:10px;justify-content:center;flex-wrap:wrap;}
.home2-coming-input {padding:14px 18px;width:260px;border:none;border-radius:30px;outline:none;}
.home2-coming-btn {padding:14px 26px;border:none;border-radius:30px;background:#a25a5a;color:#000;font-weight:600;cursor:pointer;transition:0.3s;}
.home2-coming-btn:hover {background:#8e4444;}
.home2-coming-footer {margin-top:40px;font-size:14px;opacity:0.6;}

/* RESPONSIVE TABLET ≤768px */
@media(max-width:768px){.home2-coming-container {padding:50px 20px; margin-left: 0px;}.home2-coming-title {font-size:40px;}.home2-coming-text {font-size:15px;}.home2-coming-input {width:220px;padding:12px 16px;}.home2-coming-btn {padding:12px 22px;font-size:13px;}}

/* RESPONSIVE MOBILE ≤360px */
@media(max-width:360px){.home2-coming-container {padding:40px 15px;}.home2-coming-title {font-size:32px;}.home2-coming-text {font-size:14px;}.home2-coming-input {width:180px;padding:10px 14px;}.home2-coming-btn {padding:10px 18px;font-size:12px;}}


/* ================= SHOP BANNER ================= */
.shop-banner {position: relative;width: 100%;padding-top: 40%;background: url('../img/shop.jpg') center center / cover no-repeat;display: flex;align-items: center;justify-content: center;color: #fff;font-family: 'Arial', sans-serif;}
.shop-banner-overlay {position: absolute;inset: 0;background: rgba(0, 0, 0, 0.767);}
.shop-banner-content {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;z-index: 1;width: 90%;max-width: 1000px;}
.shop-banner-tagline {display: inline-block;font-size: 15px;letter-spacing: 6px;padding-left: 10px;color: #a25a5a;margin-bottom: 20px;}
.shop-banner-title {font-size: 48px;margin-top: 10px;margin-bottom: 20px;color: #ffffff;}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .shop-banner { padding-top: 45vh; }
  .shop-banner-title { font-size: 32px; line-height: 1.2; }
  .shop-banner-tagline { font-size: 13px; letter-spacing: 3px; }
}
@media (max-width: 360px) {
  .shop-banner { padding-top: 42vh; }
  .shop-banner-title { font-size: 24px; line-height: 1.1; }
  .shop-banner-tagline { font-size: 12px; letter-spacing: 2px; }
}
.cart-banner{position:relative;width:100%;padding-top:40%;background:url('../img/cart.jpg') center center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Arial',sans-serif;}
.cart-banner-overlay{position:absolute;inset:0;background:rgba(0, 0, 0, 0.664);}
.cart-banner-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1;width:90%;max-width:1000px;}
.cart-banner-label{display:inline-block;font-size:15px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.cart-banner-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#fff;}

@media(max-width:768px){
.cart-banner{padding-top:45vh;}
.cart-banner-title{font-size:32px;line-height:1.2;}
.cart-banner-label{font-size:13px;letter-spacing:3px;}
}

@media(max-width:360px){
.cart-banner{padding-top:42vh;}
.cart-banner-title{font-size:24px;line-height:1.1;}
.cart-banner-label{font-size:12px;letter-spacing:2px;}
}
/* ================= PRODUCT DETAIL BANNER ================= */
.product-detail-banner{position:relative;width:100%;padding-top:40%;background:url('../img/product.jpg') center center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Arial',sans-serif;}
.product-detail-overlay{position:absolute;inset:0;background:rgba(0,0,0,.774);}
.product-detail-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1;width:90%;max-width:1000px;}
.product-detail-tagline{display:inline-block;font-size:15px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.product-detail-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#fff;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.product-detail-banner{padding-top:45vh;}
.product-detail-title{font-size:32px;line-height:1.2;}
.product-detail-tagline{font-size:13px;letter-spacing:3px;}
}

@media(max-width:360px){
.product-detail-banner{padding-top:42vh;}
.product-detail-title{font-size:24px;line-height:1.1;}
.product-detail-tagline{font-size:12px;letter-spacing:2px;}
}
/* ================= BLOG BANNER ================= */
.blog-banner{position:relative;width:100%;padding-top:40%;background:url('../img/blog.jpg') center center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Arial',sans-serif;}
.blog-banner-overlay{position:absolute;inset:0;background:rgba(0,0,0,.774);}
.blog-banner-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1;width:90%;max-width:1000px;}
.blog-banner-label{display:inline-block;font-size:15px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.blog-banner-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#fff;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.blog-banner{padding-top:45vh;}
.blog-banner-title{font-size:32px;line-height:1.2;}
.blog-banner-label{font-size:13px;letter-spacing:3px;}
}

@media(max-width:360px){
.blog-banner{padding-top:42vh;}
.blog-banner-title{font-size:24px;line-height:1.1;}
.blog-banner-label{font-size:12px;letter-spacing:2px;}
}
/* ================= POST DETAIL BANNER ================= */
.post-banner{position:relative;width:100%;padding-top:40%;background:url('../img/product-port.jpg') center center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Arial',sans-serif;}
.post-banner-overlay{position:absolute;inset:0;background:rgba(0,0,0,.774);}
.post-banner-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1;width:90%;max-width:1000px;}
.post-banner-label{display:inline-block;font-size:15px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.post-banner-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#fff;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.post-banner{padding-top:45vh;}
.post-banner-title{font-size:32px;line-height:1.2;}
.post-banner-label{font-size:13px;letter-spacing:3px;}
}

@media(max-width:360px){
.post-banner{padding-top:42vh;}
.post-banner-title{font-size:24px;line-height:1.1;}
.post-banner-label{font-size:12px;letter-spacing:2px;}
}
/* ================= CONTACT BANNER ================= */
.contact-banner{position:relative;width:100%;padding-top:40%;background:url('../img/contact.jpg') top center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Arial',sans-serif;}
.contact-banner-overlay{position:absolute;inset:0;background:rgba(0,0,0,.774);}
.contact-banner-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;z-index:1;width:90%;max-width:1000px;}
.contact-banner-label{display:inline-block;font-size:15px;letter-spacing:6px;padding-left:10px;color:#a25a5a;margin-bottom:20px;}
.contact-banner-title{font-size:48px;margin-top:10px;margin-bottom:20px;color:#fff;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.contact-banner{padding-top:45vh;}
.contact-banner-title{font-size:32px;line-height:1.2;}
.contact-banner-label{font-size:13px;letter-spacing:3px;}
}

@media(max-width:360px){
.contact-banner{padding-top:42vh;}
.contact-banner-title{font-size:24px;line-height:1.1;}
.contact-banner-label{font-size:12px;letter-spacing:2px;}
}

/* DASHBOARD HAMBURGER */
.dashboard-toggle{display:none;font-size:22px;cursor:pointer;color:#fff;}
@media (max-width:768px){
/* Show hamburger */
.dashboard-toggle{display:block;}
/* Hide sidebar */
.sidebar{left:-260px;transition:0.3s ease;}
/* When active */
.sidebar.active{left:0;}
/* Remove main margin */
.main{margin-left:0;width:100%;}
}
@media (max-width:768px){
/* Show hamburger */
.dashboard-toggle{display:block;}
/* Hide sidebar */
.sidebar{left:-260px;transition:0.3s ease;}
/* When active */
.sidebar.active{left:0;}
/* Remove main margin */
.main{margin-left:0;width:100%;}
}
