/* RESET */

/* HERO SLIDER */

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* TEXT CONTENT */

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 800px;
}

.content h1 {
  font-size: 45px;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.logo img{
  height: 60px;
  width: auto;
}
/* HERO */
.shed-hero{
  height:90vh;
  background:url('https://images.jdmagicbox.com/quickquotes/images_main/mild-steel-prefabricated-industrial-shed-blue-arn60aq8.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  max-width:900px;
}

/* HIGHLIGHT */
.highlight-strip{
  background:#111;
  color:#fff;
  padding:80px 0;
}

.highlight-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:40px;
}

.highlight-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  transition:0.3s;
}

.highlight-card img:hover{
  transform:scale(1.05);
}

/* DISCLAIMER & POLICIES */

.disclaimer-section,
.policy-section {
  background: #f8f8f8;
  padding: 50px 0;
}

.disclaimer-section h3,
.policy-section h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.disclaimer-section p,
.policy-section p {
  max-width: 900px;
  margin: auto;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.8;
  color: #555;
}

/* FOOTER */

footer {
  background: #111;
  color: #fff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-box h3 {
  margin-bottom: 20px;
  color: #f39c12;
}

.footer-box p,
.footer-box a {
  color: #ccc;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  line-height: 1.8;
}

.footer-box a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid #333;
}
/* WHY CHOOSE US */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 42px;
  color: #f39c12;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
}

.why-card p {
  color: #666;
  line-height: 1.7;
}

/* CONTACT SECTION */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.contact-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
}

.contact-card i {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 20px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.contact-card p,
.contact-card a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
}

.contact-buttons {
  margin-top: 40px;
  text-align: center;
}

.contact-buttons .btn {
  margin: 10px;
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebc59;
}

/* GALLERY SECTION */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* CLICKABLE SERVICE CARDS */

.service-link {
  text-decoration: none;
  color: inherit;
}

.service-link .card {
  height: 100%;
}

.service-link:hover .card {
  transform: translateY(-10px);
  background: #1f1f1f;
}

.card p {
  margin-top: 15px;
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  color: #fff;
  letter-spacing: 2px;
}

nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

nav a:hover {
  color: #f39c12;
}

/* HERO */

.hero {
  height: 100vh;
  background:
    url('images/hero.jpg') center/cover no-repeat;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* BUTTON */

.btn {
  display: inline-block;
  background: #f39c12;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: #d97706;
}

/* SECTION */

.section {
  padding: 100px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 38px;
}

.section-text {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.dark {
  background: #111;
  color: #fff;
}

.dark .section-text {
  color: #ccc;
}

/* SERVICES */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #1b1b1b;
  padding: 40px 25px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card i {
  font-size: 40px;
  color: #f39c12;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
}

/* PROJECTS */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
}

.project-content p {
  color: #666;
  font-size: 15px;
}

/* FOOTER */

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}

/* FLOATING BUTTONS */

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 24px;

  z-index: 999;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.floating-call {
  bottom: 95px;
  background: #007bff;
}

.floating-whatsapp {
  bottom: 25px;
  background: #25d366;
}

/* ANIMATION */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */

@media(max-width: 768px) {

  .header-container {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 17px;
  }

  .section h2 {
    font-size: 30px;
  }

}