* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  width: 100%;
  min-height: 100vh;
}
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: var(--white);
}
html,
body {
  scroll-behavior: smooth;
  color: #fff;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #2a2a2a;
}
::-webkit-scrollbar-thumb {
  background: gold;
  border-radius: 10px;
}
.para {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
h3 {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 20px;
}
span.highlight {
  color: #ffd700;
}
span.welcome-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 50% 50% 49% 51% / 50% 50% 50% 50%;
  margin-bottom: 10px;
}
.website-container {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0px auto;
}
.wrapper {
  width: 86%;
  margin: 0 auto;
}
/* ------------- general style end ------------- */

/* ------------- hero section start ------------- */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}
.about .content {
  width: 50%;
}
.about h2 {
  font-size: 44px;
  font-weight: bold;
  line-height: 1.1;
  margin: 10px 0 20px;
  color: #fff;
}
.about p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: justify;
}
.about .buttons {
  display: flex;
  gap: 20px;
}
.about .btn {
  text-decoration: none;
  padding: 12px 0px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
  text-align: center;
  width: 150px;
  display: inline-block;
}
.about .btn.primary {
  background-color: #ffd700;
  color: #000;
  border: none;
}
.about .btn.primary:hover {
  background-color: #fff;
  color: #000;
}
.about .btn.secondary {
  background-color: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}
.about .btn.secondary span {
  font-size: 1rem;
  margin-left: 5px;
}
.about .btn.secondary:hover {
  background-color: #fff;
  color: #000;
}
.about .hero-image-container {
  width: 42%;
}

.about .sarath-imgage {
  width: 440px;
  margin: auto;
}
/* ------------- hero section end ------------- */

/* ------------- reel-slider section start ------------- */
.reel-slider-section {
  padding: 50px 0px;
  padding-left: 76px;
  width: 100%;
  overflow: hidden;
  background: #00000074;
}
.thumbnail-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
}
.thumbnail-slider::-webkit-scrollbar {
  display: none;
}
.thumbnail-slider::-webkit-scrollbar-thumb {
  display: none;
}
.thumbnail-slider .slider-image {
  flex-shrink: 0;
  width: 230px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.thumbnail-slider .slider-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.2s ease;
}
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.video-modal video {
  width: 25%;
  max-width: 600px;
}
.video-modal .close-btn {
  position: absolute;
  top: 05%;
  right: 30%;
  background: red;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px 10px;
}
/* ------------- reel-slider section end ------------- */

/* ------------- about section start ------------- */
.about-section {
  display: flex;
  justify-content: space-between;
  padding: 70px 0px;
}
.about-section h3 {
  text-transform: none;
}
.about-section .rows {
  display: flex;
  align-items: start;
  gap: 50px;

  height: auto;
}
.about-section .left-column {
  width: 60%;
}
.about-section .left-column p {
  text-align: justify;
  margin-bottom: 30px;
}
.about-section .left-column h5 {
  font-size: 24px;
  color: #e9ecef;
  font-weight: 500;
  margin-bottom: 40px;
}
.about-section .left-column .ray-social {
  display: flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
}
.about-section .left-column .ray-social .ray-social-icon {
  width: 50px;
}
.about-section .right-column {
  width: 45%;
  position: relative;
}
.image-container {
  position: relative;
}
.sarath {
  width: 100%;
}
.counter {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgb(16 16 16 / 80%);
  color: #ffd700;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: calc(100% - 40px);
  transition: opacity 0.3s ease;
}
.counter h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}
.counter .count {
  font-size: 40px;
  font-weight: bold;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.counter.fade-in {
  display: block;
  animation: fadeIn 1s forwards;
}
@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
  }
  .about-section .left-column,
  .about-section .right-column {
    width: 100%;
  }
  .about-image {
    width: 100%;
    height: auto;
  }
}
/* -------- about-section  start -------- */

/* -------- logo section start -------- */
.logos {
  width: 100%;
  background: #00000074;
}
.carousel-container {
  overflow: hidden;
  position: relative;
}
.carousel {
  display: flex;
  animation: scroll 30s linear infinite;
}
.carousel img {
  width: 150px;
  margin-right: 30px;
  object-fit: contain;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* -------- logo section end -------- */

/* -------- service-section start --------- */
.dynamic-section {
  padding: 60px 0px;
}
.dynamic-section .welcome-badg {
  display: inline-block;
  padding: 3px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 50% 50% 49% 51% / 50% 50% 50% 50%;
  margin-bottom: 10px;
  width: 78px;
}

.dynamic-section .dynamic-box {
  display: flex;
  flex-direction: column;
}
.service-items {
  display: flex;
  justify-content: space-between;
}
button.options {
  text-transform: capitalize;
  padding: 20px 30px;
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
}

button.options.active {
  background-color: #ffd700;
}

button.options:hover {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.buttons-container {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 60%;
}

.content-item {
  display: none;
}
.content-item img {
  margin-bottom: 20px;
  width: 90%;
  border-radius: 5px;
}
.content-item h4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
.content-item p {
  text-align: justify;
}

.content-item.active {
  display: block;
}
/* -------- service-section ends --------- */

/* -------- marquee section start --------- */
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 68px;
  overflow-x: hidden;
  background: #00000074;
}
.marquee .content {
  padding: 16px 0;
}
.marquee .content p {
  font-size: 26px;
  color: #fff;
}
.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* -------- marquee section end --------- */

/* -------- testimonial-scroll-section start --------- */
.testimonial-scroll-section {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 50px 0px;
  overflow: hidden;
}
.testimonial-box {
}
.testimonial-scroll-container {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 30s linear infinite;
  width: max-content; /* Ensure the width is enough for all items to fit */
}
.testimonial-scroll-container:hover {
  animation-play-state: paused;
}
.testimonial {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(255, 255, 255, 0.747);
  width: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  overflow: hidden;
  background: #0b0b0b;
}
.stars {
  color: #ffd700;
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.profile {
  display: flex;
  align-items: center;
}
.profile-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.profile-info .name {
  font-weight: bold;
}
.profile-info .title {
  font-size: 14px;
  color: #777;
  text-align: left;
}
@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* -------- testimonial-scroll-section ends --------- */
/* Website     response
	1281 ------ 1380
	1081 ------ 1280
	981 ------ 1080
	769	 ----- 980
	641	------ 768		
	481	------ 640
	361 ------ 480
    321	------ 360 */

@media all and (max-width: 1440px) {
  .about h2 {
    font-size: 50px;
  }
}
@media all and (max-width: 1380px) {
}
@media all and (max-width: 1280px) {
  .about h2 {
    font-size: 40px;
  }
  .buttons-container {
    width: 37%;
    gap: 14px;
  }
  h3 {
    font-size: 36px;
  }
  span.welcome-badge {
    font-size: 16px;
  }
}
@media all and (max-width: 1080px) {
  .wrapper {
    width: 92%;
    margin: 0 auto;
  }
  .about h2 {
    font-size: 34px;
  }
  .buttons-container {
    width: 34%;
    gap: 14px;
  }
  button.options {
    padding: 16px 16px;
    font-size: 18px;
  }
  .reel-slider-section {
    padding-left: 34px;
  }
  .video-modal video {
    width: 36%;
  }
  .about .sarath-imgage {
    width: 350px;
  }
}
@media all and (max-width: 980px) {
  .about {
    height: auto;
    flex-direction: column-reverse;
    padding-top: 100px;
  }
  .about .hero-image-container {
    width: 100%;
    margin-bottom: 30px;
  }
  .about .content {
    width: 100%;
    padding-bottom: 30px;
  }
  .about .btn {
    padding: 10px 0px;

    font-weight: 400;

    width: 133px;

    font-size: 16px;
  }
  h3 {
    font-size: 30px;
  }
  .about-section .rows {
    gap: 40px;
    flex-direction: column-reverse;
  }
  .about-section .left-column {
    text-align: center;
    width: 100%;
  }
  .about-section .right-column {
    width: 60%;
    margin: auto;
  }
  .service-items {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
  }
  .buttons-container {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    flex-direction: unset;
    justify-content: center;
  }
  .buttons-container i {
    display: none;
  }
  button.options {
    padding: 8px 16px;
    font-size: 16px;
  }
  .dynamic-section .content-container {
    width: 100%;
  }
  .content-item img {
    width: 70%;
    margin: 0 auto 20px;
  }
  .content-item h4 {
    margin-bottom: 18px;
    text-align: center;
  }
  .about h2 {
    font-size: 38px;
  }
  .about-section .left-column h5 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .about-section .left-column .ray-social {
    justify-content: center;
  }
  .dynamic-section .welcome-badg {
    margin: 0 auto 10px;
  }
  .dynamic-section .dynamic-box {
    text-align: center;
  }
  .testimonial-box {
    text-align: center;
  }
  .reel-slider-section {
    text-align: center;
  }
  .about .buttons {
    justify-content: center;
  }
  .about .content {
    text-align: center;
  }
  .wrapper {
    width: 86%;
    margin: 0 auto;
  }
  .about p {
    text-align: justify;
  }
  .about-section .left-column .ray-social .ray-social-icon {
    width: 40px;
  }
  .thumbnail-slider .slider-image {
    width: 260px;
  }
  .about h2 {
    font-size: 34px;
  }
  .about p {
    font-size: 17px;
  }
  .about .sarath-imgage {
    width: 410px;
  }
  .para {
    font-size: 17px !important;
  }
  .marquee .content p {
    font-size: 22px;
    color: #fff;
  }
  .reel-slider-section {
    padding-left: 20px;
  }
}
@media all and (max-width: 768px) {
  .testimonial-text {
    text-align: justify;
  }
  button.options {
    padding: 10px 20px;
    font-size: 16px;
    width: 257px;
    display: block;
  }
}
@media all and (max-width: 640px) {
  .about-section .right-column {
    width: 100%;
  }
  .content-item img {
    width: 100%;
  }
  .testimonial {
    padding: 20px;

    width: 400px;
  }
  .carousel img {
    width: 120px;
    margin-right: 20px;
  }
  .about .sarath-imgage {
    width: 330x;
  }
  .video-modal video {
    width: 80%;
  }
  .video-modal .close-btn {
    top: 10%;
    right: 9%;
  }
}
@media all and (max-width: 480px) {
  .buttons-container {
    margin-top: 10px;
  }
  .testimonial {
    padding: 12px;
    width: 300px;
  }
  .testimonial-text {
    font-size: 13px;
    text-align: justify;
  }
  .about .sarath-imgage {
    width: 300px;
  }
}
@media all and (max-width: 360px) {
  .about .sarath-imgage {
    width: 270px;
  }
}
@media all and (max-width: 320px) {
}

/* #preloader {
  background: #000 url(../assets/images/spins.gif) no-repeat center center;
  height: 100vh;
  background-size: 10%;
  width: 100%;
  position: fixed;
  z-index: 100;
} */

#preloader {
  background: #000;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader .intro-text {
  text-align: left;
  font-size: 3rem;
  font-family: Arial, sans-serif;
  color: white;
  overflow: hidden;
}

#preloader .hide {
  display: block;
  overflow: hidden;
}

#preloader .text {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUp 1.5s ease-in-out forwards;
}

/* Staggered Animation */
#preloader h1:nth-child(2) .text {
  animation-delay: 0.5s;
}
#preloader h1:nth-child(3) .text {
  animation-delay: 1s;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media all and (max-width: 980px) {
  #preloader .intro-text {
    font-size: 2rem;
  }
}
@media (max-width: 760px) {
  #preloader .intro-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  #preloader .intro-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  #preloader .intro-text {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  #preloader .intro-text {
    font-size: 0.9rem;
  }
}
