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

    body {
      font-family: 'Calibre', 'Montserrat', sans-serif;
    }

   /* COMMON HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1% 5%;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease, background 0.3s ease;
  
}

.logo img {
  height: 40px;
}

/* HEADER 1 - Transparent */
.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0); 
  z-index: 1000;

}

/* HEADER 2 - Fixed & Hidden initially */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 1.5s ease;
}

/* Show fixed header */
.header-fixed.show {
  transform: translateY(0);
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #939393;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .header {
    padding: 15px 20px;
  }
}


 /* LANDING PAGE SLIDER */
.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

/* Slides wrapper */
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Each slide */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* Slide image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay for better text contrast */
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Centered content */
.content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Title */
.content h1 {
  font-size: 55px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
  font-family: 'Calibre', 'Montserrat', sans-serif;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Text */
.content p {
  text-transform: uppercase;
  font-size: 14px;
   font-family: 'Calibre', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 25px;
  line-height: 1.6;
  color:rgb(255, 255, 255) ;
  box-shadow: rgb(153, 153, 153) 0px 0px 0px 0px;
}

.content button {
 background-color: #00000000;
 color:rgb(255, 255, 255) ;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid #fff;
  font-size: 14px;
  font-weight: 500;
}

.content button:hover {
  background: rgb(255, 255, 255) ;
  color: #464141;
}



.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.10);
  color: #fff;
  border-radius: 50%;
  min-width: 70px;
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  z-index: 5;
  transition: background 0.5s ease;
}

.arrow:hover {
  background: rgb(0 0 0 / 50%);
}

#prev { left: 20px; }
#next { right: 20px; }



.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  width: 13px;
  height: 13px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.active-dot {
  background: #fff;
}

/* RESPONSIVE STYLES */

/* Tablets */
@media (max-width: 992px) {
  .content h1 {
    font-size: 2.3rem;
  }

  .content p {
    font-size: 1.05rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .slider-container {
    height: 90vh;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 14px;
  }

  .content button {
    padding: 12px 26px;
    font-size: 0.9rem;
  }

  .arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* landing page first section*/
.section1 {
  display: flex;
  gap: 30px;
  padding: 5%;
  background-image: url("images/testimonial-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-wrap: wrap; 
}


.columns1 {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  row-gap: 15px;
}

.columns1 .sctext {
  font-size: 16px;
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
  color: #8b0000;
}

/* Headings */
.section1 h3 {
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-weight: 500;
  color: #232323;
  font-size: 35px;
  line-height: 1.25;
}

.section1 h5 {
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-weight: 500;
  color: #232323;
  font-size: 18px;
}

/* Paragraph */
.columns1 p {
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 24px;
  max-width: 520px; /* ✅ replaces padding-right */
}

/* Image */
.columns1 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Divider */
.divider {
  border: none;
  height: 2px;
  width: 50px;
  background: #8b0000;
}

/* Button */
.columns1 button {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: #8b0000;
  padding: 10px 24px;
  width: fit-content; /* ✅ auto width */
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.columns1 button:hover {
  color: #8b0000;
  background-color: #fff;
  border-color: #8b0000;
}


/* Tablet (≤ 992px)*/
@media (max-width: 992px) {
  .section1 {
    gap: 20px;
  }

  .columns1 {
    flex: 1 1 100%;
  }

  .section1 h3 {
    font-size: 28px;
  }
}
/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .section1 {
    padding: 40px 20px;
  }

  .columns1 {
    text-align: center;
    align-items: center;
  }

  .columns1 p {
    max-width: 100%;
  }

  .divider {
    margin: 10px auto;
  }

  .section1 h3 {
    font-size: 24px;
  }

  .columns1 img {
    border-radius: 6px;
  }
}

/* SECTION 2 */ 
.section2 {
  display: flex;
  gap: 30px;
  padding: 5%;
  background-image: url("images/testimonial-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-wrap: wrap; 
  align-items: center;
}
.columns2 {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  row-gap: 20px;
}

.section2 h3 {
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-weight: 500;
  color: #232323;
  font-size: 35px;
  line-height: 1.25;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #232323;
  border-bottom: 1px solid #e0e0e0; 
}

/* Remove border from last item */
.check-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Checkmark icon */
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: #232323;
}

.columns2 img {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube Button */
.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #fff;
  background-color: #8b0000;
  padding: 10px 25px;
  width: fit-content; 
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yt-btn i {
  font-size: 18px;
}

.yt-btn:hover {
  color: #8b0000;
  background-color: #fff;
  border-color: #8b0000;
}

/*Tablet (≤ 992px)*/

@media (max-width: 992px) {
  .section2 {
    gap: 20px;
  }

  .columns2 {
    flex: 1 1 100%;
  }

  .section2 h3 {
    font-size: 28px;
  }
}
/*Mobile (≤ 600px)*/
@media (max-width: 600px) {
  .section2 {
    padding: 40px 20px;
  }

  .columns2 {
    align-items: center;
    text-align: center;
  }

  .section2 h3 {
    font-size: 24px;
  }

  .yt-btn {
    justify-content: center;
  }
}



.section3{
    background-color: #dbdbdb;  
    gap: 10px;                 
    text-align: center;   
    padding-top: 5%;                
}

.section3 h2{
  color: #232323;
  font-size: 35px;
  font-weight: 700;
  font-family: 'Calibre', 'Montserrat', sans-serif;
  line-height: 1.25;
}

.section3 p{
  font-size: 16px;
  color: #232323;
  font-weight: 400;
  line-height: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 140px;
  padding-bottom: 70px;
}

.case-grid {
  display: flex;
  gap: 15px;
  padding: 10px 10px;
}

.case-box {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Image zoom effect */
.case-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Dark overlay */
.case-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.4);
  transition: background 0.3s ease;
}

/* Content position: NOT centered by default */
.case-box figcaption {
  position: absolute;
  bottom: 35px;      
  left: 25px;
  right: 20px;
  text-align: left;
  color: white;
  transition: transform 0.3s ease;
}

/* Year */
.case-box .year {
  display: inline-block;
  color: #bfbfbf;
  font-size: 16px;
  margin-bottom: 6px;
}

/* Line */
.case-box .line {
  height: 1px;
  background: #8b0000;
  margin: 8px 0;
}

/* Title */
.case-box .title {
  font-family: 'Calibre', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}

/* Hover effects */
.case-box:hover img {
  transform: scale(1.1);  /* zoom in image */
}

.case-box:hover .overlay {
  background: rgba(0, 0, 0, 0.6); /* darken overlay */
}

.case-box:hover figcaption {
  transform: translateY(-50px); /* move content up slightly */
}

/* Responsive */
@media (max-width: 900px) {

  .section3 p{
  padding: 20px 70px;
  padding-bottom: 20px;
}
  .case-grid {
    flex-direction: column;
  }

  .case-box img {
    height: 250px;
  }

  .case-box figcaption {
    bottom: 15px;
  }
}


.section4 {
    background-color: #1c1c1c;
    text-align: center;
    padding: 5% 5%;
    color: #fff;
}

/* Heading */
.section4 h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 10px auto 20px;
    font-family: 'Calibre', 'Montserrat', sans-serif;
    line-height: 1.25;
    max-width: 900px;   /* keeps text centered */
    padding: 0 15px;    /* mobile safe padding */
}

/* Subtitle */
.section4 > p {
    font-size: 14px;
    font-family: 'Calibre', 'Montserrat', sans-serif;
    color: #939393;
    letter-spacing: 1px;
}

/* Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 0;
}

/* Feature box */
.feature-box {
  flex: 1 1 220px;
  max-width: 260px;
  background-color: #1c1c1c;
  text-align: center;
  padding: 25px 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.feature-box:hover {
  transform: scale(1.05);
}

/* Icon */
.feature-box .icon {
  font-size: 42px;
  color: #8b0000;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

/* Text */
.feature-box .feature-text {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

/* Divider */
.feature-box .divider {
  width: 4px;
  height: 40px;
  background-color: #8b0000;
  margin: 0 auto;
  transition: background-color 0.3s ease;
}

/* Hover colors */
.feature-box:hover .icon {
  color: #fff;
}
.feature-box:hover .divider {
  background-color: #fff;
}
.feature-box:hover .feature-text {
  color: #8b0000;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablets */
@media (max-width: 992px) {
  .section4 h2 {
    font-size: 24px;
  }

  .feature-box {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section4 {
    padding: 60px 20px;
  }

  .section4 h2 {
    font-size: 20px;
  }

  .feature-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature-box .icon {
    font-size: 36px;
  }
}


.section5 {
  background-color: #fff;
  text-align: center;
  padding: 5% 5%;
  
}

.section5 h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.section5 .divider {
  width: 100px;
  height: 2px;
  background: #888385; 
  margin: 0 auto 40px auto;

}
.logo-slider {
    
    padding: 20px 0;
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.clientlogoslide img {
    height: 100px;
    margin: 0 40px;
    
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Landing pages section 6*/
.section6{
  display: flex;
  gap: 15px;
  padding: 8%;
  justify-content: center;
  background-color: #8b0000;
}
.section6 p{
font-family: 'Calibre', 'Montserrat', sans-serif;
font-size: 18px;
color: #fff;
}
.section6 button{
    background: #232323;
    font-family: 'Calibre', 'Montserrat', sans-serif;
    color: #fff;
    font-size: 11px;
    padding: 10px 25px;
    font-weight: 500;
    outline: none;  
    
}

.section6 button:hover{
    background: #8b0000;
    border: 1px solid #232323;
    color: #232323;  
}

/* Landing pages section 7*/
.section7 {
  padding: 5%;
  background: #fff;
}


.four-cols {
  display: flex;
  gap: 20px;
}


.section7 .col {
  flex: 1;                
  padding: 20px;
  text-align: center;
}

.col h5 {
  color: #232323;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Calibre', 'Montserrat', sans-serif;
}


.col p {
  color: #232323;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Calibre', 'Montserrat', sans-serif;
}


/* Responsive */
@media (max-width: 992px) {
  .section7 .four-cols {
    flex-wrap: wrap;
  }

  .section7 .col {
    flex: 1 1 45%;          
  }
}

@media (max-width: 600px) {
  .section7 .col {
    flex: 1 1 100%;   
  }
}

/* Footer Section */
.footer {
  display: flex;
  background-color: #000;
  padding: 5%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

/* Footer text */
.footer p {
  color: #fff;
  font-size: 14px;
  font-family: 'Calibre', 'Montserrat', sans-serif;
  margin: 0;
}

/* Responsive footer for mobile */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Back to Top Button */
.footer button {
  background-color: #878787;
  color: #fff;
  width: 50px;       /* make button square */
  height: 50px;
  border-radius: 50%; /* perfectly round */
  border: none;
  cursor: pointer;
  font-size: 20px;   /* arrow size */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.footer button:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1); /* slight grow on hover */
}
