*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;
}

html{scroll-behavior:smooth;}
body{background:#fff;color:#222}

/* NAVBAR */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 50px;
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,0.8);
  /* backdrop-filter:blur(10px); */
  color:#fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
}


/* Hide checkbox */
#toggleDetails {
  display: none;
}

/* Hide details by default */
.company-details {
  max-height: 0;
  overflow: hidden;
  border-top: 2px solid #f9a826;
  transition: 0.5s ease;
  background: #f9f9f9;
  text-align: center;
  padding: 0 20px;
}

/* When checkbox is checked → show */
#toggleDetails:checked ~ .company-details {
  max-height: 300px;
  padding: 40px 20px;
}


nav ul{display:flex;list-style:none;}
nav ul li{margin:0 15px;}
nav ul li a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}
nav ul li a:hover{color:#f9a826;}

.cta{
  background:#f9a826;
  padding:8px 15px;
  border-radius:6px;
  border:none;
  color:#fff;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* .hero {
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e') center/cover no-repeat;
} */

/* SLIDING BACKGROUND */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideBg 32s infinite;
  animation-delay: 1s;
  z-index: -1;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: -1;
}

/* TEXT STYLING */
.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero-content p {
  font-size: 18px;
  margin: 20px 0;
}

.hero-buttons button {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #ff6600;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-buttons a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 28px;
  margin: 10px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background: #ff6600;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #e65c00;
}

/* Outline Button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* BACKGROUND SLIDE ANIMATION */
@keyframes slideBg {
  0%   { background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e'); } /* Architecture */
  12%  { background-image: url('https://images.unsplash.com/photo-1581090700227-4c4f50d5b1e2'); } /* Construction */
  25%  { background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6'); } /* Interior */
  37%  { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f'); } /* Financial */
  50%  { background-image: url('https://images.unsplash.com/photo-1509395176047-4a66953fd231'); } /* Infra */
  62%  { background-image: url('https://images.unsplash.com/photo-1492724441997-5dc865305da7'); } /* Digital Marketing */
  75%  { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d'); } /* Import Export */
  87%  { background-image: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511'); } /* Renovation */
  100% { background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e'); }
}



.about {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}

.about-header h2 {
  color: lightskyblue;
  margin-bottom: 15px;
}

.about-header p {
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* Cards Layout */
.about-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-card {
  background: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.about-card h3 {
  color: lightskyblue;
  margin: 15px 0;
}

.about-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* SERVICES */
.services{padding:80px 50px;text-align:center;}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:40px;
}
.card{
  padding:30px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  transition:0.4s;
}
.card:hover{
  transform:translateY(-10px) scale(1.03);
}
.card i{
  font-size:30px;
  color:#f9a826;
}

/* SERVICES SECTION */
.services {
  padding: 60px 8%;
  background: linear-gradient(90deg, #1e5fa8, #1fa39c);
  color: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* TABS */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.service-tabs button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.service-tabs button:hover,
.service-tabs button.active {
  background: #ffffff;
  color: #1e5fa8;
}

/* CONTENT */
.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* RIGHT IMAGE */
.service-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column;
    text-align: center;
  }
}

/* HIDE RADIO BUTTONS */
.services input {
  display: none;
}

/* TABS */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.service-tabs label {
  padding: 10px 18px;
  border: 1px solid #fff;
  cursor: pointer;
  color: #fff;
}

/* ACTIVE TAB */
#architecture:checked ~ .service-tabs label[for="architecture"],
#construction:checked ~ .service-tabs label[for="construction"],
#interior:checked ~ .service-tabs label[for="interior"],
#financial:checked ~ .service-tabs label[for="financial"],
#infra:checked ~ .service-tabs label[for="infra"],
#marketing:checked ~ .service-tabs label[for="marketing"],
#import:checked ~ .service-tabs label[for="import"],
#renovation:checked ~ .service-tabs label[for="renovation"] {
  background: #fff;
  color: #1e5fa8;
}

/* CONTENT */
.service-content .content-box {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* SHOW ACTIVE CONTENT */
#architecture:checked ~ .service-content .content-box:nth-child(1),
#construction:checked ~ .service-content .content-box:nth-child(2),
#interior:checked ~ .service-content .content-box:nth-child(3),
#financial:checked ~ .service-content .content-box:nth-child(4),
#infra:checked ~ .service-content .content-box:nth-child(5),
#marketing:checked ~ .service-content .content-box:nth-child(6),
#import:checked ~ .service-content .content-box:nth-child(7),
#renovation:checked ~ .service-content .content-box:nth-child(8) {
  display: flex;
}

/* IMAGE */
.service-image img {
  width: 100%;
  max-width: 400px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-content .content-box {
    flex-direction: column;
    text-align: center;
  }
}



/* STATS SECTION */
.stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 20px;
  background: #f9f9f9;
  flex-wrap: wrap;
  gap: 30px;
}

/* EACH STAT BOX */
.stat {
  text-align: center;
  max-width: 250px;
  transition: transform 0.3s ease;
}

/* IMAGE STYLE */
.stat img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #ff6600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT */
.stat:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.stat:hover {
  transform: translateY(-5px);
}

/* TEXT */
.stat h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 5px;
}

.stat p {
  font-size: 26px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
  }
}



/* SLIDER */
.slider {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}

.slide-track {
  display: flex;
  width: calc(300px * 16); /* 8 images * 2 */
  animation: scroll 25s linear infinite;
}

.slide-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 10px;
}

/* AUTO SCROLL ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 8)); /* move one full set */
  }
}

/* PAUSE ON HOVER (professional touch) */
.slider:hover .slide-track {
  animation-play-state: paused;
}


/* ABOUT */
.about{
  padding:80px 50px;
  background:#f5f5f5;
}
.about-container{
  display:flex;
  align-items:center;
  gap:40px;
  max-width:1000px;
  margin:auto;
}
.about img{border-radius:10px;}

/* CONTACT */
.contact{padding:80px 50px;text-align:center;}
form{
  max-width:500px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}
input,textarea{
  width:100%;
  margin-bottom:15px;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
}
input:focus,textarea:focus{
  border-color:#f9a826;
  box-shadow:0 0 8px rgba(249,168,38,0.4);
}
button{
  padding:12px;
  background:#0a0a0a;
  color:#fff;
  border:none;
}


.contact {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
  position: relative;
}

/* Dark overlay for readability */
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.contact * {
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer{
  background:#0a0a0a;
  color:#fff;
  padding:40px;
}
.footer-grid{
  display:flex;
  justify-content:space-around;
}


.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  color: #f9a826;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #f9a826;
}

/* Social Icons */
.social-links {
  margin-top: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #222;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  background: #f9a826;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* WHATSAPP */
.whatsapp{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25d366;
  color:#fff;
  padding:15px;
  border-radius:50%;
  font-size:20px;
}

/* MOBILE */
@media(max-width:768px){
  nav{flex-direction:column;}
  .about-container{flex-direction:column;}
  .stats{flex-direction:column;gap:20px;}
}
