/* ================= VARIABLES ================= */
:root {
  --roller: #0b3a66;
  --blinds: #5ec5e6;
  --bg: #f9f9f9;
  --text: #333;
  --white: #fff;
  --muted: #6b7280;
  --transition: all 0.3s ease;
  --beige: #f7f2e5;
}

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* =======HERO SECTION=========== */
.hero {
  height: 100vh;
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slideBg 25s infinite ease-in-out;
  display: flex;
  align-items: center;
  color: white;
  padding: 80px 6%;
  position: relative;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 58, 102, 0.55),
    rgba(11, 58, 102, 0.22)
  );
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  text-align: left; 
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  white-space: nowrap; 
  opacity: 0;
  color: white;
  text-align: left;
  line-height: 1.02;
  letter-spacing: -0.5px;
  transform: translateY(50px);
  animation: popUp 1s ease-out forwards;
}

.hero-content h1 span {
  color: var(--blinds);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  color: var(--white);
  margin: 0 0 30px;
  opacity: 0;
  transform: translateY(50px);
  animation: popUp 1s ease-out forwards;
}

.btn-group {
  display: flex;
  justify-content: left;
  gap: 15px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(50px);
  animation: popUp 1s ease-out forwards;
}

.outline-btn {
  border: 2px solid var(--white);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: 0.3s;
}
.outline-btn:hover {
  background: var(--blinds);
  border: 2px solid var(--blinds);
  color: var(--white);
}

.outline-btn1 {
  border: 2px solid var(--roller);
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--roller);
  font-weight: 600;
  transition: 0.3s;
}
.outline-btn1:hover {
  background: var(--blinds);
  border: 2px solid var(--blinds);
  color: var(--white);
}
/* Hero text + elements animation */
@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Hero background slideshow */
@keyframes slideBg {
  0% {
    background-image: url("images/bg-slide1.png");
  }

  16.6% {
    background-image: url("images/bg-slide2.png");
  }

  33.2% {
    background-image: url("images/bg-slide3.png");
  }

  49.8% {
    background-image: url("images/bg-slide4.png");
  }

  66.4% {
    background-image: url("images/bg-slide5.png");
  }

  83% {
    background-image: url("images/bg-slide6.png");
  }

  100% {
    background-image: url("images/bg-slide1.png");
  }
}

/* ========== FEATURES SECTION ================ */
#products {
  scroll-margin-top: 150px;
}
.features-section {
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(to right, #0b3a66, #5ec5e6);
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--white);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 100px;
  height: 100px;
  background: #e0ecff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 19px;
}

.icon-box svg {
  width: 40px;
  height: 40px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--roller);
}

.feature-card p {
  color: var(--text);
  font-size: 14px;
  text-align: left;
}

@media (max-width: 600px) {
  .features-section {
    padding: 40px 18px;
  }
}


@media (max-width: 900px) {

  .hero {
    padding: 90px 10px 16px;
    text-align: center;
  }

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

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

  .navbar img {
    height: 110px;
  }

  .navbar ul {
    gap: 16px;
  }

  .btn-group {
    flex-direction: column;
  }
}


.home-gallery .gallery-header {
  color: var(--white);
  text-align: center;
  position: relative;
}

 .gallery-header h5 {
  color: #0b3a66;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-top: 10px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.home-gallery .gallery-header h1 {
  font-size: 42px;
  font-weight: 700;
}

/* Main Image Card */
.home-gallery .gallery-main {
  max-width: 1100px;
  margin: 80px auto 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.home-gallery .gallery-main img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.home-gallery .slide-out {
  transform: translateX(-40px);
  opacity: 0;
}

.home-gallery .slide-in {
  transform: translateX(0);
  opacity: 1;
}

/* Thumbnails */
.home-gallery .thumbnails {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  padding: 0 20px;
}

.home-gallery .thumbnail {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery .thumbnail img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.home-gallery .thumbnail:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Gallery fit for desktop view */

@media (min-width: 1024px) {
  .home-gallery .gallery-main {
    max-width: 850px;  
    margin: 60px auto 30px;
  }

  .home-gallery .gallery-main img {
    height: 420px;   
    object-fit: cover;
  }
}
.home-gallery .thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}


/* Gallery mobile response */
@media (max-width: 768px) {
  .home-gallery .thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

   .home-gallery .gallery-main {
    max-width: 90%;
  }

  .home-gallery .gallery-main img {
    height: 300px;
    object-fit: cover;
  }

  .home-gallery .thumbnail img {
    height: 100px; 
  }

  .home-gallery .gallery-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .home-gallery .thumbnails {
    grid-template-columns: repeat(3, 1fr); 
  }

  .home-gallery .thumbnail img {
    height: 90px;
  }
  .home-gallery .gallery-main {
 
    margin: 40px auto 30px;
  }
}

@media (max-width: 480px) {
  .home-gallery .gallery-main img {
    height: 240px;
  }
}

/* Responsive */
.testimonial-container {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.testimonial-header p {
  letter-spacing: 2px;
  color: #6b7280;
  font-weight: 500;
}

.testimonial-header h1 {
  margin: 10px 0 40px;
  font-size: 2rem;
  color: #0b3a66;
}

/* ===== SLIDER ===== */
.testimonial-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin: 0 auto 30px;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);

}

.testimonial-card {
  min-width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card span {
  font-size: 2rem;
  color: var(--roller);
  display: block;
  margin-bottom: 12px;
}

.testimonial-card p:not(.name) {
  margin: 15px 0;
  color: #374151;
  line-height: 1.6;
  font-size: 1.05rem;
}

.testimonial-card hr {
  margin: 20px 0;
  border: 0;
  height: 1px;
  background: #e5e7eb;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 10px;
  border: 2px solid #f0f4f8;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 10px;
  color: var(--roller);
  font-size: 1.1rem;
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 90%;
    padding: 20px;
  }

  .testimonial-header h1 {
    font-size: 1.6rem;
  }
}
/* Client stylings */
.clients-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.clients-section small {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.clients-section h2 {
  margin: 10px 0 40px;
  color: #0b3a66;
  font-size: 35px;
}

/* ================= SLIDER WRAPPER ================= */

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.clients-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

/* ================= DESKTOP (4 LOGOS PER SLIDE) ================= */

.clients-section {
  padding: 60px 20px;
  text-align: center;
}

.clients-section small {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}

.clients-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* ===== SLIDER ===== */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* ===== SLIDE ===== */
.clients-slide {
  min-width: 100%;
  display: grid;
  gap: 25px;
  align-items: center;
}

/* Desktop: 4 logos */
@media (min-width: 768px) {
  .clients-slide {
    grid-template-columns: repeat(4, 1fr);
  }
    .client-card {
    height: 120px;              
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-card img {
    max-height: 60px;          
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .clients-slide {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-card {
    height: 100px;          
  }

  .client-card img {
    width: 80px;            
    height: 80px;           
    object-fit: contain;
  }
}

/* ===== CARD ===== */
.client-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.client-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s ease;
}

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

.footer {
  background: #ffffff;
  padding: 25px 28px 20px;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.08);
}

.footer-container {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
}

.footer-logo-section {
  flex-shrink: 0;
}

.footer-logo {
  height: 130px;
  width: auto;
  display: block;
}

.footer-column {
  flex: 0 0 auto;   
  min-width: 0;
}

.footer-column h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b3a66;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 6px;
  transition: var(--transition);
  font-weight: 550;
}

.footer-column a:hover {
  color: var(--blinds);
  transform: scale(1.1);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 8px;
}

.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  cursor: pointer;
  transition: var(--transition);
}

.social-icon img:hover {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 900px) {
  .footer {
    padding: 25px 16px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .footer-logo {
    height: 110px;
    margin-left: -10px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 90px;
  }

  .social-icon img {
    width: 24px;
    height: 24px;
  }
}

.footer-logo-section .footer-logo {
  margin-top: -35px;
}

/* WhatsApp floating button */
.whatsapp_float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #38cb3f;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp_icon {
  width: 100%;
  height: 100%;
  padding: 12px;
}