/*
Theme Name: Crystal Shield Coatings
Author: Pawan Sharma
Version: 1.3
*/

*{margin:0;padding:0;box-sizing:border-box;}
html,body{height:100%;}
body{font-family: "Montserrat", sans-serif;display:flex;flex-direction:column;}
a{text-decoration:none;color:#333;}

p{
	line-height:2;
}
/* FORCE FULL WIDTH SECTIONS */
.site-main,
.site-content,
#content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove theme container restriction */
.site-main > .container,
.site-content > .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Section full width */
.section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.section-subtitle {
    text-align: center!important;
}

li{
    list-style:none!important;
}
ul{
    list-style:none!important;
}

.btn {
  padding: 14px 32px;
  background: #CECFD3;
  color: #101010;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #101010;
}
.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

header{background:#f7f7ee;color:#fff;padding:15px 20px;}
.header-inner{display:flex;justify-content:space-between;align-items:center;}
.logo a{color:#fff;font-size:20px;font-weight:bold;}
.menu-toggle{display:none;font-size:24px;cursor:pointer;}
nav ul{list-style:none;display:flex;gap:30px;}
nav ul li a {
  position: relative;
  color: #101010;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  padding-bottom: 6px;
	text-transform:uppercase;
}

/* Hover text color */
nav ul li a:hover {
  color: #355174;
}

/* Bottom animated line */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #355174;
  transition: width 0.3s ease;
}

/* Animate left → right */
nav ul li a:hover::after {
  width: 100%;
}


@media(max-width:768px){
.menu-toggle {
    display: block;
    color: #101010;
}
nav{position:fixed;top:0;left:-260px;width:250px;height:100%;background:#fff;padding:60px 20px;transition:.3s; z-index:99;}
nav.active{left:0;}
nav ul{flex-direction:column;gap:15px;}
}

.site-main{flex:1;}
/*.container{max-width:1100px;margin:auto;padding:40px 20px;}*/

.site-footer {
    background: aliceblue;
    color: #fff;
}

/* .site-footer {
  background-image: url("https://www.drcipy.com/wp-content/uploads/2025/02/epoxy-floor-coating-vs-other-flooring-options-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

 */

.site-footer a {
    color: #101010;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.site-footer h4{
	    color: #101010;
	font-weight: 600;
}

.site-footer a:hover {
  color: #355174;
}

/* ================= FOOTER LAYOUT ================= */

.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 40px;
	text-transform:uppercase;
}

/* ================= LOGO ================= */

.footer-logo img {
  max-width: 160px;
}

/* ================= MENU (VERTICAL 2 COLUMN) ================= */

.footer-menu {
  width: 100%;
}

.manual-footer-menu {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;   /* bullets remove */
  column-count: 2;               /* 👈 2 vertical columns */
  column-gap: 60px;
  max-width: 500px;              /* 👈 IMPORTANT for column break */
}

.manual-footer-menu li {
  list-style: none !important;
  break-inside: avoid;
  margin-bottom: 10px;
}
.text-center {
  text-align: center;
}

.manual-footer-menu li::marker {
  content: none;
}

/* ================= CONTACT ================= */

.footer-contact p {
  margin: 8px 0;
	color:#101010;
	font-weight:600;
	text-transform:uppercase;
}

/* ================= SOCIAL ICONS ================= */

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
	text-transform:uppercase;
	font-weight:600;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  border-top: 1px solid #222;
  padding: 15px;
  text-align: center;
  font-size: 14px;
	color:#101010;
}


/* ===== FINAL BULLET KILL FIX ===== */

.footer-menu ul,
.footer-menu ul li {
  list-style: none !important;
 
  padding: 0 !important;
}

.footer-menu ul{
	margin-top:15px!important;
}
.footer-menu ul li {
	margin-bottom:10px!important;
}
/* Browser marker destroy */
.footer-menu ul li::marker {
  content: none !important;
  display: none !important;
}

/* Extra safety */
.footer-menu ul li {
  display: block !important;
}

/* Older theme / pseudo bullets */
.footer-menu ul li::before {
  content: none !important;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    text-align: left!important;
    list-style: none;
}

  .footer-logo,
  .footer-menu,
  .footer-contact {
    text-align: left;          /* 👈 LEFT ALIGN */
  }

  .manual-footer-menu {
    column-count: 2;           /* 👈 single column mobile */
    max-width: 100%;
  }
}



/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}


/* PROCESS SECTION */
.process-section {
  background: #f7f7f7;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

/* connector line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}

.process-step {
  background: #fff;
  padding: 50px 25px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* step number circle */
.step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e63946;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(230,57,70,.35);
}

.process-step h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}

.process-step p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 991px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}


/* ===== COMMON ===== */
.section {
  width: 100%;
  padding: 80px 20px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .item {
  position: relative;
  height: 100vh;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

/* Image zoom on active */
.owl-item.active img {
  transform: scale(1.08);
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) translateX(-30px);
  opacity: 0;
  color: #fff;
  max-width: 520px;
  transition: all .9s ease;
}

/* Active slide animation */
.owl-item.active .hero-content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-content .btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: .4s;
}

.hero-content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Remove nav */
.hero-slider .owl-nav {
  display: none;
}

/* Dots */
.hero-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3,1fr);
}

/* ===== CARD ===== */
.card {
  background: #fff;
  padding: 35px 25px;

  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .5s;
  animation: fadeCard .8s ease forwards;
  opacity: 0;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.06), transparent);
  opacity: 0;
  transition: .5s;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
}

.card img {
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform .5s;
}

.card:hover img {
  transform: scale(1.08);
}

/* ===== SERVICE CARD (SUBTLE & PREMIUM) ===== */
.service-card {
  background: #fff;
  padding: 32px 26px;

  text-align: center;
  border: 1px solid #eee;
  transition: all .3s ease;
}

.service-card:hover {
  border-color: #ddd;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  transform: translateY(-8px);
}

/* Image inside card */
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 16px;
}

/* Text */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}
.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 45px;
}

.section-title-left{
  text-align: left; 
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger effect */
.grid .card:nth-child(1){animation-delay:.2s}
.grid .card:nth-child(2){animation-delay:.4s}
.grid .card:nth-child(3){animation-delay:.6s}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section {
    padding: 60px 20px;
  }
}


/* ===== CTA SECTION ===== */
.cta-section {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.cta-section .section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.cta-section .section-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #fff;
  color: #111;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
}

/* ===== CTA RESPONSIVE ===== */
@media(max-width:768px){
  .cta-section {
    padding: 70px 20px;
  }

  .cta-section .section-title {
    font-size: 28px;
  }

  .cta-section .section-subtitle {
    font-size: 16px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: #fff;
}

.about-content {
  max-width: 520px;
}

.about-content .section-title {
  text-align: left;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-content .section-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
	text-align:left;
}

/* Image */
.about-image img {
/*   border-radius: 14px; */
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .about-content {
    max-width: 100%;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
    font-size: 28px;
  }

  .about-image {
    order: -1;
  }
}



/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: #f7f7f7;
  text-align: center;
}

.testimonial-section .section-title {
  margin-bottom: 50px;
}

/* Card */
.testimonial-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: auto;
}
/* Owl carousel equal height fix */
.testimonial-slider .owl-stage {
  display: flex;
}

.testimonial-slider .owl-item {
  display: flex;
  height: auto;
}

.testimonial-slider .testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #111;
  margin-bottom: 4px;
}

.testimonial-card span {
  font-size: 14px;
  color: #777;
}

/* Dots */
.testimonial-slider .owl-dots {
  margin-top: 25px;
}

.testimonial-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
}

.testimonial-slider .owl-dot.active span {
  background: #111;
}



/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-text {
    font-size: 15px;
  }
	.section-title {
    text-align: center;
    font-size: 28px!important;
    font-weight: 600;
    margin-bottom: 45px;
}
}



/* Owl outer wrapper – cutting fix */
.testimonial-slider .owl-stage-outer {
  overflow: visible !important;
  padding: 20px 0; /* bottom shadow space */
}

/* Owl item – side cutting fix */
.testimonial-slider .owl-item {
  padding: 0 12px; /* left right gap */
}

/* Testimonial card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;

  /* ❌ shadow remove */
  box-shadow: none;

  /* ✅ light border */
  border: 1px solid #e6e6e6;

  transition: all 0.3s ease;
}

/* hover effect (optional premium look) */
.testimonial-card:hover {
  border-color: #d0d0d0;
  transform: translateY(-2px);
}
/* section ko center container mein band karo */
.testimonial-section .container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* owl outer ko full width se roko */
.testimonial-slider {
  width: 100%;
  max-width: 100%;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    margin: 0 5px;
}

/* Gallery Header */
.gallery-header {
  background: #111;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  width: 100%;
  height: 260px; /* same height for all */
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

/* Image styling */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* important */
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 220px;
  }
}



.gallery-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #111;
  text-align: center;
}

