/* =============================================================
   CREATIVE HOME DECOR — STYLESHEET
   Palette: White base | Deep Blue #0B4F8A | Gold #C79A2E | Red #C1272D
   Fonts: Poppins (headings) / Inter (body)
   ============================================================= */

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #0B4F8A;
  --blue-dark: #093f6e;
  --blue-light: #EAF2FB;
  --gold: #C79A2E;
  --gold-light: #FCF6E9;
  --red: #C1272D;
  --red-light: #FCEFE9;
  --ink: #1F2937;
  --ink-soft: #5B6472;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --border: #E7EAF0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 79, 138, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 79, 138, 0.14);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal animation utility ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 1200;
  transition: width .1s ease;
}

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, padding .3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(11,79,138,0.10); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__icon { display: flex; }
.logo__text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}
.logo__text strong { color: var(--gold); font-weight: 700; }

.nav__list { display: flex; gap: 30px; }
.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.nav__link:hover, .nav__link.active { color: var(--blue); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--full { width: 100%; }

.btn--call {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11,79,138,0.25);
  padding: 10px 18px;
}
.btn--call:hover { background: var(--blue-dark); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  box-shadow: 0 6px 16px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover { background: #1fb956; }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(193,39,45,0.3);
}
.btn--primary:hover { background: #a3161c; }

.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 20px rgba(199,154,46,0.3);
}
.btn--gold:hover { background: #a97f22; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  width: 26px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
/* ===========================
   HERO SECTION
=========================== */

.hero{
    position:relative;
    min-height:92vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Background Image */

.hero__bg{
    position:absolute;
    inset:0;
    background:url("uploads/hero.png") center center/cover no-repeat;
    transform:scale(1.05);
    animation:heroZoom 18s ease-in-out infinite alternate;
    z-index:-3;
}

/* Dark Overlay */

.hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.30) 70%,
        rgba(0,0,0,.15) 100%
    );
    z-index:-2;
}

/* Content */

.hero__content{
    position:relative;
    z-index:2;
    max-width:650px;
    color:#fff;
    padding:120px 20px 80px;
    text-align:left;
}

/* Small Heading */

.hero__eyebrow{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    backdrop-filter:blur(8px);
    color:#FFD166;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

/* Main Heading */

.hero__title{
    font-size:clamp(2.8rem,6vw,4.8rem);
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
    color:#fff;
    text-shadow:0 4px 20px rgba(0,0,0,.35);
}

/* Description */

.hero__tagline{
    font-size:1.08rem;
    line-height:1.8;
    color:#F2F2F2;
    margin-bottom:35px;
    max-width:600px;
}

/* Buttons */

.hero__btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

/* Trust Badges */

.hero__badges{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero__badges span{
    padding:10px 18px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:.9rem;
    transition:.3s;
}

.hero__badges span:hover{
    background:rgba(255,255,255,.20);
    transform:translateY(-3px);
}

/* Scroll Down */

.hero__scroll{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    color:#fff;
    font-size:30px;
    text-decoration:none;
    animation:bounce 2s infinite;
    z-index:5;
}

/* Animation */

@keyframes heroZoom{
    from{
        transform:scale(1.05);
    }
    to{
        transform:scale(1.12);
    }
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translate(-50%,0);
    }
    40%{
        transform:translate(-50%,-12px);
    }
    60%{
        transform:translate(-50%,-6px);
    }
}

/* Mobile */

@media(max-width:768px){

.hero{
    min-height:85vh;
}

.hero__content{
    text-align:center;
    max-width:100%;
    padding:120px 20px 60px;
}

.hero__btns,
.hero__badges{
    justify-content:center;
}

.hero__title{
    font-size:2.4rem;
}

.hero__tagline{
    font-size:1rem;
}

}

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* =============================================================
   SECTION HEAD (shared)
   ============================================================= */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.eyebrow--gold { color: var(--gold); }
.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title--light { color: #fff; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.section-head--light .section-sub { color: #D9E4F1; }

/* =============================================================
   ABOUT
   ============================================================= */
.about { padding: 100px 0; background: var(--bg); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about__frame { position: relative; padding-bottom: 20px; }

.about__frame{
    position:relative;
}

.about__image{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    display:block;
}

.about__exp{
    position:absolute;
    top:20px;
    left:20px;
    width:110px;
    height:110px;
    background:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    border:4px solid #C79A2E;
}

.about__exp strong{
    font-size:28px;
    color:#C1272D;
    font-weight:700;
}

.about__exp span{
    font-size:12px;
    text-align:center;
    color:#555;
}

@media(max-width:768px){

.about__image{
    height:320px;
}

.about__exp{
    width:90px;
    height:90px;
}

.about__exp strong{
    font-size:22px;
}

}


.about__exp {
  position: absolute;
  top: -20px; left: -20px;
  background: #fff;
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--gold-light);
}
.about__exp strong { color: var(--red); font-size: 1.6rem; font-family: var(--font-head); }
.about__exp span { font-size: 0.68rem; color: var(--ink-soft); font-weight: 600; }

.about__desc { color: var(--ink-soft); margin: 18px 0 24px; }
.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}
.tick {
  background: var(--blue-light);
  color: var(--blue);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__trust {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust__item strong { display: block; color: var(--blue); font-family: var(--font-head); font-size: 1.15rem; }
.trust__item span { color: var(--ink-soft); font-size: 0.85rem; }

/* =============================================================
   COUNTERS
   ============================================================= */
.counters {
  background: linear-gradient(120deg, var(--blue) 0%, #123a63 100%);
  padding: 60px 0;
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter__num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 800;
}
.counter p { color: #E7EEF6; font-weight: 500; margin-top: 4px; }

/* =============================================================
   SERVICES
   ============================================================= */
.services { padding: 100px 0; background: var(--bg-soft); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.service-card__img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.service-card__img svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* =============================================================
   WHY CHOOSE US
   ============================================================= */
.why-us {
  padding: 100px 0;
  background: linear-gradient(150deg, #0B4F8A, #0e3f70 60%, #123a63);
  position: relative;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px 26px;
  backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.why-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(199,154,46,0.18);
  border-radius: 14px;
}
.why-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.08rem; }
.why-card p { color: #D9E4F1; font-size: 0.92rem; }


.portfolio{
    padding:80px 0;
    background:#fff;
}

.portfolio-slider{
    overflow:hidden;
}

.portfolio-track{
    display:flex;
    gap:20px;
    transition:.6s;
}

.portfolio-card{
    min-width:calc(33.333% - 14px);
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.portfolio-info{
    padding:18px;
    text-align:center;
}

.portfolio-info h4{
    color:#0B4F8A;
    margin-bottom:6px;
    font-size:22px;
}

.portfolio-info span{
    color:#C79A2E;
    font-weight:600;
}

@media(max-width:991px){

.portfolio-card{
min-width:calc(50% - 10px);
}

}

@media(max-width:768px){

.portfolio-card{
min-width:100%;
}

.portfolio-card img{
height:220px;
}

}


/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { padding: 100px 0; background: var(--bg-soft); }
.testi-slider { position: relative; max-width: 720px; margin: 0 auto; overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform .5s ease;
}
.testi-card {
  min-width: 100%;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testi-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card p { font-size: 1.05rem; color: var(--ink); font-style: italic; margin-bottom: 26px; }
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.testi-person strong { display: block; color: var(--blue); font-size: 0.95rem; }
.testi-person span { color: var(--ink-soft); font-size: 0.82rem; }

.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testi-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s ease, transform .3s ease;
}
.testi-dots button.active { background: var(--gold); transform: scale(1.25); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { padding: 100px 0; background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--blue);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-soft);
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,79,138,0.12);
  background: #fff;
}
.form-note { margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: var(--blue); min-height: 20px; }

.contact__side { display: flex; flex-direction: column; gap: 20px; }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact__info {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__info li { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { font-size: 1.2rem; }
.contact__info strong { display: block; color: var(--blue); font-size: 0.92rem; margin-bottom: 2px; }
.contact__info p { color: var(--ink-soft); font-size: 0.9rem; }
.contact__info a { color: var(--ink-soft); }
.contact__info a:hover { color: var(--red); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: #08213b; color: #C9D6E5; padding: 70px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo--footer { margin-bottom: 16px; }
.logo__text--footer { color: #fff; }
.footer__col p { font-size: 0.9rem; line-height: 1.7; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.9rem; transition: color .25s ease; }
.footer__col ul a:hover { color: var(--gold); }
.footer__contact li { font-size: 0.88rem; line-height: 1.6; }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background .25s ease, transform .25s ease;
}
.footer__social a:hover { background: var(--gold); transform: translateY(-3px); }

.footer__bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: #92A4BC;
}

/* =============================================================
   SCROLL TO TOP + FLOATING WHATSAPP
   ============================================================= */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-dark); }

.float-whatsapp {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  z-index: 900;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh;
    background: #fff; box-shadow: -10px 0 30px rgba(0,0,0,0.12); padding: 100px 30px 30px;
    transition: right .35s ease; z-index: 999; }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 22px; }
  .menu-toggle { display: flex; z-index: 1001; }
  .header__actions .btn--call span, .header__actions { }
  .header__actions .btn--call { padding: 10px 12px; }
  .header__actions .btn--whatsapp { display: none; }
  .counters__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__badges { flex-direction: column; align-items: center; }
  .about__block--main { height: 300px; }
  .header__actions .btn--call { font-size: 0; padding: 10px; }
  .header__actions .btn--call svg { margin: 0; }
}



html,
body{
    width:100%;
    overflow-x:hidden;
    
}

