

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body{
  font-family: 'Clash Grotesk', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500; /* Bold for headings */
}

p, a, li {
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 300; /* Normal for text */
}
p, h1, h2, h3, h4, h5 {
  word-wrap: break-word; /* break long text */
}
:root {
  --primary-color: #da271e; /* 🔥 your main color */
  --secondary-color: #000; /* optional */
  --primary-two-color: #fff;
}

/* Dark overlay on the background */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0; /* fully transparent at start */
  transition: opacity 0.6s ease-out;
  z-index: 1; /* above background, below text */
}

.sun-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease-out;
  animation: rotateWiggle 9s ease-in-out infinite;
  z-index: 0; /* behind overlay */
}

.hero-content,
.hero-subtext {
  position: relative;
  z-index: 2; /* stays above everything */
}



@keyframes rotateWiggle {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  25%  { transform: translate(-50%, -50%) rotate(5deg); }
  50%  { transform: translate(-50%, -50%) rotate(0deg); }
  75%  { transform: translate(-50%, -50%) rotate(-5deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}


/* Background stays fixed on parent */
#heroCarousel {
  position: relative;
  min-height: 100vh;
 background: url('img/slider.jpg') center center / cover no-repeat;
  overflow: hidden;
}

/* Dark overlay */
/*#heroCarousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}*/

/* Remove background from .hero */
.hero {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: white;
  background: none;  /* <--- important */
  z-index: 2; /* text above overlay */
}


.navbar {
  position: absolute;
  background: transparent;
  transition: background 0.3s ease;
}

.navbar.sticky {
  position: fixed;
  background: var(--primary-two-color);
      box-shadow: 0 4px 15px rgb(0 0 0 / 20%) 
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.sticky .logo img{
  width: 22%;
}
.logo img {
     width: 25%;
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 60px;
  margin-bottom: 0rem;
}
.sticky nav ul li a{
  color: var(--secondary-color);
}
.sticky nav ul li a:hover{
  color: var(--primary-color);
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color);
}

/* Burger menu (hidden by default on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Hero Section */
/*.hero {
  position: relative;
  height: auto;
  background: url('img/slider.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: white;
}*/

/*.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); 
}*/

.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  margin-top: 260px;
      margin-bottom: 4rem;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

/* Hero Subtext */
.hero-subtext {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  font-size: 1.2rem;
  text-align: right;
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
     gap: 20px;
    padding: 2px 3px 2px 20px;
 
  border-radius: 40px;
  background: white;
  color: black;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
  position: relative;
}

.btn-readmore .icon {
  display: flex;
  align-items: center;
  justify-content: center;
   width: 35px;
  height: 35px;
  background: black;
  color: white;
  border-radius: 50%;
  font-size: 15px;
  transition: transform 0.3s ease;
  
}

/* Hover Effect: rotate arrow to → */
.btn-readmore:hover .icon {
  transform: rotate(0deg); /* → */
  transform: rotate(45deg); /* default ↗ */
}
 .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--primary-two-color);
      padding: 50px 0;
    }
    .hero-logo {
      width: 30px;
      margin-right: 10px;
    }
    .hero-heading {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
    }
    .hero-subtext {
      font-size: 1.25rem;
      font-weight: 500;
      margin-top: 15px;
    }
    .read-more-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #f0f0f0;
      border-radius: 50px;
      padding: 10px 15px;
      text-decoration: none;
      color: var(--secondary-color);
      font-weight: 600;
      width: 160px;
      transition: all 0.3s ease;
    }
    .read-more-btn span {
      margin-left: 10px;
      background: var(--secondary-color);
      color: var(--primary-two-color);
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: transform 0.3s ease;
    }
    .read-more-btn:hover span {
      transform: translateX(5px) rotate(90deg);
    }

/*about section*/
.mb-4{
    margin-bottom: 3.5rem !important;
}
section.mtop {
    padding-top: 40px;
}
.main-h1{
	font-size: 4rem;
	color: var(--secondary-color);
      line-height: 1;
}

.btn-bg-sp{
	background: #D9D9D9 !important;
}
.tp-95{
	top: 95px;
}

.container-fluid{
  margin-right: 0rem !important;
  margin-left: 0rem !important;
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}
.row{
      --bs-gutter-x : 0rem !important;
}


/*tab function*/




.timeline-card {
  border-radius: 10px;
  overflow: hidden;
  height: 450px;
}

.timeline-card img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.timeline-card .card-img-overlay {
  background: rgba(0,0,0,0.45);
  border-radius: 15px;
}

.timeline-card h2 {
  font-size: 2rem;
  font-weight: 700;
}

.timeline-card h5 {
  font-size: 1.1rem;
  font-weight: 500;
}

.timeline-card p {
  font-size: 0.9rem;
}


.carousel-container {
    overflow: hidden;
    position: relative;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .timeline-card {
    margin: 0 10px;
    min-width: 25%; /* 4 per row */
  }
  .timeline-card img {
    border-radius: 10px;
  }


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: var(--primary-color); !important;
  border-bottom: 1px solid #000;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
}
.nav-link{
  color: var(--secondary-color); !important;
}
 .tab-fun-btm{
  border-bottom: none !important;
 }
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover{
 border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #000;
    color: var(--primary-color) !important;
}
.nav-tabs .nav-link{
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
}


/*card */
.sub-title-crd{
  line-height: 17px !important;
          gap: 20px;
    border-bottom: 1px solid;

}
.h2-tag-crd{
  padding: 0px 16px 0px 0px;
      border-right: 1px solid;
}
    
.h2-tag-crd h2{
  margin-bottom: 0rem !important;
  line-height: 22px !important;
}
.h2-tag-crd span{
 margin-left: 32px;
}

/*card hover */


.timeline-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.timeline-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.timeline-card img {
  transition: transform 0.6s ease;
}
.timeline-card:hover img {
  transform: scale(1.1);
}

.timeline-card .card-img-overlay {
  transition: background 0.4s ease;
}
.timeline-card:hover .card-img-overlay {
  /*background: rgba(218,39,30,0.6); */
}

.timeline-card p,
.timeline-card h2,
.timeline-card span {
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.timeline-card:hover p,
.timeline-card:hover h2,
.timeline-card:hover span {
  transform: translateY(-5px);
}


/*counter section*/
.stats-section {
  background: var(--primary-color);
}

.stats-section h1 {
  font-size: 4.5rem;
  margin-bottom: 10px;
}

.stats-section p {
  /*font-size: 1.1rem;*/
  margin: 0;
  
  color: var(--primary-two-color);
}

/*testmonial*/
.profile-tst img{
  width:65%;
   height:auto; 
   object-fit:cover;
}

.profile-tst-img{
  text-align: right;
}
.desc-test{
 padding: 0px 150px 0px 25px;
}

.desc-test h3{
  color: var(--primary-color);
  font-weight: 600;
}
.designation-tst h6{
  color: var(--secondary-color);
  line-height: 0px;
}
.desc-test p{
  margin-bottom: 50px;
}


.profile-tst-img {
  position: relative;
  display: inline-block;
}

.profile-tst-img img {
  border-radius: 15px; /* Keep profile rounded */
}

/* Overlay shape */
.shape-overlay {
  position: absolute;
  bottom: -10px;   /* adjust vertical position */
  left: 140px;     /* adjust horizontal position */
  width: 60px !important;     /* adjust size */
  height: 60px !important;
  pointer-events: none; /* so clicks go through */
}

section.mtop.testimonial-section

 {
    overflow: hidden;
    position: relative;
}
img.bg-shape

 {
    width: 45%;
    text-align: right;
    position: absolute;
    
    left: 54%;
    margin-top: -17rem;
    /* margin-bottom: 175px; */
    /* top: 610%; */
   
}


.testimonial-indicators {
  position: absolute;
  bottom: 15px;
  right: 20px;
  margin: 0;
  display: flex;
  gap: 0px !important;
  justify-content: flex-end;
}

.testimonial-indicators button {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50%;
  background-color: #969090 !important;
  border: none;
  opacity: 0.5;
  transition: all 0.3s ease;

}

.testimonial-indicators .active {
  background-color: var(--primary-color) !important;  /* active dot color */
  opacity: 1;
  transform: scale(1.2);
}


 
/*whats new section*/
.whats-new-img img{
  width: 100%;
  height: auto;
}
.whats-new-des-col{
  background-color: #EFE5E5 ;
}

.whats-new-des{
  padding: 60px;
}
.mt-mb{
  margin-bottom: 30px;
  margin-top: 40px;
}

.news-section .news-date {
  color: var(--primary-color);  /* red like in your screenshot */
  font-size: 15px;
  margin-bottom: 5px;
      font-weight: 500;
}

.news-section h5, 
.news-section h6 {
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-section .btn-sm {
  font-size: 13px;
  padding: 6px 14px;
}


.pd-lf{
  padding-left: 20px;
}
.top-bt{
  top: 60px;
}


/*footer section*/
.footer-container {
  padding: 70px 0px 100px 0px;
}
.footer-logo img{
 width: 40%;
}
.footer-container{
  color: var(--primary-two-color);
  list-style: none;
}
.footer-list-type a{
  color: var(--primary-two-color);
  text-decoration: none;
  font-weight: 300;
}

.only-mobile{
  display: none;
}



.footer-copyright-fluid{
  background-color: var(--secondary-color);
  color: var(--primary-two-color);
}
.footer-copyright-sec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 0px 0px;
}



.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}






/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  #heroCarousel {
  position: relative;
  min-height: 100vh;
 background: 
  linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2)),
  url('img/slider.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.sun-rays{
  width: 900px;
  left: 45%;
}

  .hero-background {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 100%; 
    min-height: 100vh; /* makes sure it covers full screen height */
  }

  #heroCarousel,
  .hero {
    min-height: 75vh; /* full height for carousel and hero */
  }
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.menu-toggle {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

  nav {
    display: none;
    position: absolute;
    top: 40px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    padding: 20px;
    border-radius: 10px;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    padding-left: 1rem;
  }

  nav ul li a {
    color: white;
    font-size: 18px;
  }
  .sticky nav ul li a{
    color: var(--primary-two-color);
  }
  /* Show burger menu on mobile */
  .menu-toggle {
    display: block;
    
  }
  .sticky .menu-toggle{
    color: var(--secondary-color);
  }
  .hero h1{
    font-size: 30px !important ;
  }
  .hero{
    text-align: center !important;
    padding-left: 0px !important;
  }
  .hero-content{
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .hero-subtext{
    display: none;
  }

  .main-h1{
    font-size: 25px !important;
  }
  .tp-95{
    top: 0px !important;
  }
  .sub-h5{
   font-size: 15px !important;
  }
  .text-lg-end{
    text-align: left !important;
  }
  .timeline-card{
    min-width: 85%;
  }

  .stats-section h1{
    font-size: 3.5rem;
  }
  .counter-txt h1{
    font-size: 28px;
  }
  .profile-tst-img {
    text-align: center;
  }
  .shape-overlay{
    left: 40px;
  }

  .desc-test {
  padding: 0px 20px 0px 20px;
  text-align: center;
}
.text-dark{
  color: rgba(33, 37, 41, 0.63) !important;
  font-size: 16px;
}
.pd-lf{
  padding-left: 0px;
}
.top-bt{
  top: 0px;
}

 .footer-container {
    padding: 40px 15px; /* reduce padding */
    
  }

  .footer-logo img {
    width: 50%; /* bigger logo on mobile */
    margin-bottom: 20px;
  }

  .footer-list-type {
    margin-bottom: 20px;
  }

  .footer-list-type h6 {
    margin-top: 15px;
    font-weight: 600;
  }

  .footer-copyright-sec {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .only-deskt{
    display: none;
  }
  .only-mobile{
    display: block;
  }


  .footer-copyright-sec{
    font-size: 10px;
    flex-direction: inherit;
  }
}

