 body {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: #fff;
      background-color: #f8f9fa;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;  /* smooth text rendering */
      -moz-osx-font-smoothing: grayscale;
    }


    /*.sticky {*/
    /*  position: fixed;*/
    /*  top: 0;*/
    /*  left: 0;*/
    /*  width: 100%;*/
       /* z-index: 999;keeps it above all content */
    /*  box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
    /*}*/

    .top-header {
      background-color: #000;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 40px;
      flex-wrap: wrap;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .contact-details {
      display: flex;
      align-items: center;
      gap: 40px;
      font-size: 18px;
      transition: all 0.3s ease;
      margin-left: 20px;
    }

    .contact-details i {
      color: #e60000;
      margin-right: 8px;
      font-size: 18px;
    }

    .social-media {
      display: flex;
      gap: 35px;
      margin-right: 30px;
    }

    .social-media i {
      font-size: 20px;
      transition: color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
    }

    .social-media i:hover {
      color: #e60000;
      transform: translateY(-2px);
    }

    /* === NAVIGATION STYLING === */
    .navigation {
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 25px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
      position: relative;
      z-index: 100;
    }

    .navigation .logo img {
      width: 120px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .navigation .links ul {
      list-style: none;
      display: flex;
      gap: 30px;
      margin: 0;
      padding: 0;
    }

    .navigation .links a {
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      font-size: 19px;
      font-family: "Poppins", Sans-serif;
      transition: color 0.3s ease;
      text-transform: capitalize;
    }

    .navigation .links a:hover {
      color:#e60000;
    }

    .active-link{
          color:#e60000 !important;
    }

    /* Burger icon (hidden by default) */
    .burger {
      display: none;
      font-size: 22px;
      color: #333;
      cursor: pointer;
    }

    /* Responsive navigation */
    @media (max-width: 768px) {
      .navigation {
        padding: 10px 25px;
      }

      .navigation .links {
        display: none;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 15px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }

      .navigation .links ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }

      .burger {
        display: block;
      }

      .navigation.active .links {
        display: block;
      }
    }

    /* Prevent overlap on mobile */
.navigation {
  position: relative;
  z-index: 10;
}

/* Adjust logo spacing in mobile */
@media (max-width: 768px) {
  .navigation {
    flex-direction: row;
    align-items: center;
  }

  .navigation .logo img {
    width: 120px;
    height: auto;
  }

  .navigation .links {
    position: absolute;
    top: 65px; /* pushes menu below the logo */
    left: 0;
    right: 0;
    z-index: 9;
  }
}

/* Hide contact details in mobile, show only social media icons */
@media (max-width: 768px) {
  .contact-details {
    display: none;
  }

  .social-media {
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 8px 0;
  }

  .social-media i {
    font-size: 22px;
  }
}


.banner {
  position: relative;
  /*height: 90vh;*/
    min-height: 100vh;
  background: url('../images/banner_img.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* subtle animated movement (background float) */
@keyframes bgMove {
  0% { background-position: center; }
  50% { background-position: center 20px; }
  100% { background-position: center; }
}

.banner {
  animation: bgMove 10s ease-in-out infinite alternate;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

.banner-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff1a1a; /* nice red tone */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-text p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #f1f1f1;
}

.banner-btn {
  background-color: #e60000; /* vibrant red */
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
  background-color: #b30000;
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .banner {
    height: 85vh;
    background-attachment: scroll;
  }
  
   body,html{
	width:auto;
	height: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
   margin: 0;
    padding:0;
}

  .banner-text h1 {
      margin-top:45px;
    font-size: 1.5rem;
  }

  .banner-text p {
    font-size: 1rem;
  }
}

/* ===== Banner Text Animation ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-text {
  opacity: 0;
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.5s;
}


/* ===== About Us Section ===== */
.about-us {
  background-color: #f8f9fa;
  color: #333;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Text Column with Border and Shadow */
.bordered-box {
  background-color: #fff;
  border-left: 6px solid #e60000; /* red accent */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 35px;
  border-radius: 10px;
}

.about-text {
  flex: 1 1 500px;
  opacity: 0;
  transform: translateX(-80px) scale(0.95);
  animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.about-text h1 {
  font-size: 2.2rem;
  color: #e60000;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-text h2 {
  color: #111;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-btn {
  background-color: #e60000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #b30000;
  transform: translateY(-3px);
}

/* Image Section */
.about-image {
  flex: 1 1 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .bordered-box {
    border-left: none;
    border-top: 6px solid #e60000;
  }

  .about-text {
    transform: none;
    animation: none;
    opacity: 1;
  }

  .about-text h1 {
    font-size: 1.9rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image {
    width: 90%;
    flex:1;
  }
}



/* ===== Our Services Section ===== */
.our-services {
  position: relative;
  background: url('../images/services-bg.jpeg') center/cover no-repeat;
  color: #fff;
  padding: 90px 10%;
  text-align: center;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
}

.our-services h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: inline-block;
  border-bottom: 5px solid #e60000;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.our-services p {
  color: #f1f1f1;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  line-height: 1.9;
}

/* Cards layout */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

.service-card {
  background: rgba(255, 255, 255, 0.97);
  color: #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e60000;
  margin: 20px 0 10px;
}

.service-card p {
  font-size: 1.05rem;
  padding: 0 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 25px;
  min-height: 100px;
}

.service-btn {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #b30000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .our-services {
    padding: 70px 6%;
  }

  .our-services h1 {
    font-size: 2.2rem;
  }

  .our-services p {
    font-size: 1.05rem;
  }

  .services {
    gap: 20px;
  }

  .service-card {
    width: 100%;
  }

  .service-card p {
    font-size: 1rem;
  }
}


/* ===== Our Partners Section ===== */
.our-partners {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.our-partners h1,.services-container h1 {
  font-size: 2.5rem;
  color: #e60000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 4px solid #e60000;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 40px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  animation: scroll 25s linear infinite;
  width: calc(250px * 10); /* adjust if you add more logos */
}

.partner-logo {
  flex: 0 0 auto;
  width: 220px;
  margin: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Animation for continuous slide */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .our-partners h1 {
    font-size: 2rem;
  }
  .partner-logo {
    width: 150px;
    margin: 0 15px;
  }
  .partner-logo img {
    max-width: 130px;
  }
}



.who-we-are {
  position: relative;
  background: #e60000;
  color: #fff;
  padding: 90px 10%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.who-overlay {
  position: absolute;
  inset: 0;
  background: 
    rgba(0, 0, 0, 0.35)
    url('../images/texture.jfif') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
  mix-blend-mode: multiply;
}

.who-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}

/* Text Styling */
.who-text {
  flex: 1 1 550px;
  animation: fadeInLeft 1.2s ease-out forwards;
}

.who-text h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 10px;
}

.who-text h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.who-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #f5f5f5;
  margin-bottom: 20px;
}

.who-btn {
  display: inline-block;
  background: #fff;
  color: #e60000;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.who-btn:hover {
  background: #b30000;
  color: #fff;
  transform: translateY(-3px);
}

/* Image Styling */
.who-image {
  flex: 1 1 450px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  animation: zoomIn 1.5s ease-out forwards;
}

.who-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.who-image:hover img {
  transform: scale(1.08);
}

/* Animations */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .who-text h2 {
    font-size: 1.9rem;
  }

  .who-text p {
    font-size: 1rem;
  }

  .who-btn {
    padding: 10px 24px;
  }

  .who-image {
    width: 90%;
    flex:1;
  }
}

/* ===== Blog Section ===== */
.our-blog {
  background: #f8f9fa;
  padding: 90px 10%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.our-blog h1 {
  font-size: 2.8rem;
  color: #e60000;
  text-transform: uppercase;
  border-bottom: 4px solid #e60000;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 50px;
  font-weight: 700;
}

.blog-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  justify-items: center;
}

.each-blog {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: left;
  max-width: 380px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpBlog 1s ease-out forwards;
}

.each-blog:nth-child(1) {
  animation-delay: 0.2s;
}
.each-blog:nth-child(2) {
  animation-delay: 0.4s;
}
.each-blog:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUpBlog {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.each-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.each-blog img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.each-blog h2 {
  font-size: 1.4rem;
  color: #e60000;
  font-weight: 700;
  margin: 18px 20px 10px;
}

.each-blog p {
  font-size: 1.05rem;
  color: #555;
  margin: 0 20px 20px;
  line-height: 1.8;
}

.each-blog a {
  display: inline-block;
  background: #e60000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 20px 25px;
  transition: all 0.3s ease;
}

.each-blog a:hover {
  background: #b30000;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .our-blog {
    padding: 70px 6%;
  }

  .our-blog h1 {
    font-size: 2.2rem;
  }

  .each-blog {
    max-width: 100%;
  }

  .each-blog h2 {
    font-size: 1.3rem;
  }

  .each-blog p {
    font-size: 1rem;
  }
}


/* ===== Footer Section ===== */
/*.footer {*/
/*  background-color: #111;*/
/*  color: #f1f1f1;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: flex-start;*/
/*  padding: 80px 10%;*/
/*  flex-wrap: wrap;*/
/*  font-family: "Poppins", sans-serif;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

.footer {
  background-color: #111;
  color: #f1f1f1;
  display: flex;
  justify-content: center;   /* centers all footer columns */
  align-items: flex-start;
  padding: 80px 10%;
  flex-wrap: wrap;
  gap: 50px;                 /* even spacing between columns */
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}


.footer::before {
  content: "";
  position: absolute;
  inset: 0;
background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png') center/cover repeat;
  opacity: 0.05;
  z-index: 0;
}

.footer-col {
  flex: 1 1 320px;
  z-index: 2;
  padding: 20px;
}

.footer-logo img {
  width: 180px;
  margin-bottom: 18px;
}

.footer-col p {
  color: #ddd;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.footer-col h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-left: 4px solid #e60000;
  padding-left: 12px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 1.05rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: #e60000;
  transform: translateX(4px);
}

.footer-col div {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col div i {
  color: #e60000;
  font-size: 1.1rem;
}


@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }
}


/* Responsive Layout */
@media (max-width: 992px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 60px 8%;
  }

  .footer-col {
    padding: 10px 0;
  }

  .footer-col h2 {
    border: none;
    padding-left: 0;
    margin-top: 15px;
  }

  .footer-logo img {
    margin: 0 auto 20px;
  }

  .footer-col div {
    justify-content: center;
  }
}

/* ===== Copyright Bar ===== */
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 18px 10px;
  font-size: 0.95rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
  color: #e60000;
  font-weight: 600;
}


/* ===== Scroll Animation Styles ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}




/* ===== Hero Section (About Page) ===== */
.hero-section {
  position: relative;
  height: 75vh;
  background: url('../images/team.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Overlay for dark effect */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Text Styling */
.hero-section h1 {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
/*  color: #fcbf49;*/
  margin-bottom: 10px;
  margin-top: 60px;
  animation: fadeUp 1s ease-out forwards;
}

.hero-section p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  color: #f1f1f1;
  max-width: 700px;
  animation: fadeUp 1.3s ease-out forwards;
}

/* Simple fade-up animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    padding: 0 5%;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }
}




