html,
body {
  height: 100%;
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('../img/02About.png');
  /* or your desired image */
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

/* hero section */
:root {
  --primary-color: #E78600;
  --secondary-color: #E9521D;
  --text-color: #333;
  --white: #fff;
  --black: #000;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Hero Section */
/* Base Styles */
:root {
  --primary-color: #E78600;
  --secondary-color: #E9521D;
  --text-color: #333;
  --white: #fff;
  --black: #000;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  width: 100%;
  padding: 60px 20px;
  position: relative;
  background-image: url('../img/group-5.png');
  background-size: 502px 502px;
  background-position: left center;
  background-repeat: no-repeat;
  /* background-color: #f8f8f8;  */
}

/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
} */

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--black);
  max-width: 900px;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-button {
  padding: 15px 30px;
  font-size: 1.125rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.hero-button.primary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.hero-button.secondary {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: var(--white);

}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.button-icon {
  margin-left: 8px;
  font-weight: bold;
}

.hero-image-container {
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 362px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2rem;
    padding: 0 20px;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .hero-image-container {
    max-width: 800px;
  }

  .hero-section {
    background-size: 400px 400px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
    background-size: 350px 350px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero-image-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-button {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-height: 250px;
  }

  .hero-section {
    background-size: 300px 300px;
  }
}

/* Partners Section */
.partners {
  padding: 60px 0;
  overflow: hidden;
  /* Prevent horizontal scrollbar */
}

.partners h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c3e50;
}

/* Logo Container */
.partner-logos-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Gradient fade effects on sides */
.partner-logos-wrapper::before,
.partner-logos-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partner-logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}

.partner-logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}

/* Animation Container */
.partner-logos {
  display: flex;
  gap: 30px;
  width: max-content;
  /* Allow container to expand beyond viewport */
  animation: scrollLogos 30s linear infinite;
  padding: 10px 0;
  will-change: transform;
  /* Optimize for animation */
}

/* For infinite loop, duplicate the logos in HTML (JS or template) so the logos repeat seamlessly. Adjust keyframes for full width scroll. */

/* Individual Logo Items */
.partner-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Logo Image Styling */
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

/* Hover Effects */
.partner-logo:hover {
  transform: translateY(-5px);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Animation Keyframes */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.partner-logos-wrapper:hover .partner-logos {
  animation-play-state: paused;
}

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

  .partner-logos-wrapper::before,
  .partner-logos-wrapper::after {
    width: 50px;
  }

  .partner-logo {
    width: 120px;
    height: 60px;
  }
}


/* Hero2 section  */

.hero-section2 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  padding: 40px 20px;
  overflow: hidden;
}

/* Main Frame Styles */
.main-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 811/718;
  /* Maintain original aspect ratio */
  margin: 0 auto;
  padding: 2%;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Blinking Frames */
.blinking-frame {
  position: absolute;
  opacity: 0;
  animation: blink 2s infinite;
  width: 37.2%;
  /* 302/811 */
  height: 32.6%;
  /* 234/718 */
  max-width: 302px;
  max-height: 234px;
}

.top-left {
  top: 2.8%;
  /* 20/718 */
  left: 2.5%;
  /* 20/811 */
  animation-delay: 0.5s;
}

.bottom-right {
  width: 40.4%;
  /* 328/811 */
  height: 18.9%;
  /* 136/718 */
  max-width: 328px;
  max-height: 136px;
  bottom: 2.8%;
  /* 20/718 */
  right: 2.5%;
  /* 20/811 */
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Content Group Styles */
.content-group {
  position: relative;
  width: 100%;
  max-width: 752px;
  height: auto;
  aspect-ratio: 752/650;
  margin: 5% auto 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 5%;
}

.decorative-elements {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 43.2%;
  /* 325/752 */
  margin-bottom: 5%;
}

.ellipse-container,
.image-container {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ellipse-container {
  bottom: 0;
  left: 0;
}

.image-container {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}

.ellipse,
.decorative-image {
  position: absolute;
  width: 103.7%;
  /* 390/376 */
  height: 104.3%;
  /* 339/325 */
  top: -2.2%;
  /* -7/325 */
  left: -1.9%;
  /* -7/376 */
}

.decorative-image {
  transform: rotate(-180deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-frame {
    padding: 3%;
  }

  .blinking-frame {
    width: 45%;
    height: 25%;
  }

  .content-group {
    margin-top: 8%;
  }

  .decorative-elements {
    padding-bottom: 60%;
  }
}

@media (max-width: 480px) {
  .blinking-frame {
    position: relative;
    width: 80%;
    height: auto;
    margin: 10px auto;
    position: static;
    opacity: 1;
    animation: none;
  }

  .content-wrapper {
    padding: 10%;
  }

  .ellipse-container,
  .image-container {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 50%;
    transform: none;
    margin-bottom: 20px;
  }

  .image-container {
    transform: none;
  }

  .ellipse,
  .decorative-image {
    transform: none;
  }
}

/* Text Content Styles */
.text-content {
  text-align: center;
  width: 470px;
}

.text-group {
  margin-bottom: 32px;
}

.text-line {
  font-family: "Helvetica Light", sans-serif;
  font-weight: 400;
  color: #1e293b;
  margin-bottom: 24px;
}

.text-line.large {
  font-size: 5rem;
  line-height: 1;
}

.text-combo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.event-date {
  font-family: "Helvetica Light", sans-serif;
  font-size: 1.875rem;
  color: #1e293b;
}



/* Responsive Styles */
@media (max-width: 1024px) {
  .main-frame {
    width: 90%;
    height: auto;
    aspect-ratio: 811/718;
  }

  .content-group {
    width: 90%;
    height: auto;
  }

  .text-line.large {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px;
  }

  .content-wrapper {
    padding: 20px;
  }

  .decorative-elements {
    height: 250px;
  }

  .ellipse-container,
  .image-container {
    width: 45%;
  }

  .text-content {
    width: 100%;
  }

  .text-line.large {
    font-size: 3rem;
  }

  .event-date {
    font-size: 1.5rem;
  }

  .top-left {
    width: 150px;
    height: auto;
  }

  .bottom-right {
    width: 200px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .text-line.large {
    font-size: 2rem;
  }

  .text-combo {
    flex-direction: column;
    gap: 10px;
  }

  .event-date {
    font-size: 1.2rem;
  }

  .top-left {
    width: 150px;
  }

  .bottom-right {
    width: 200px;
  }
}

/* about seection  */
/* About Section Styles */
.about-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-decorative-frame {
  position: absolute;
  width: 100%;
  max-width: 565px;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Adjusted column gap */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    /* Reduced from 80px to 40px (50% reduction) */
    max-width: 1200px;
  }
}

/* Further adjustment for larger screens */
@media (min-width: 1024px) {
  .about-container {
    gap: 50px;
    /* Slightly larger gap on big screens */
  }
}

/* Rest of your existing styles remain unchanged */
.about-image-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.image-wrapper {
  width: 100%;
  background-color: #f3f5f6;
  border-radius: 16px;
  padding: 25px;
}

.company-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.cta-button {
  font-family: "Roboto";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 32px;
  background-color: #E9521D;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 214px;
  height: 56px;
  align-self: flex-end;
}

.cta-button:hover {
  background-color: #d64718;
}

.button-label {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #fffefe;
  font-size: 16px;
  line-height: 24px;
}

.arrow-right {
  width: 10px;
  height: 10px;
}

.about-content {
  width: 100%;
  max-width: 532px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Added gap between heading and description */
}

.about-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.we-are-text {
  font-family: "Roboto", thin;
  line-height: 24;
  font-weight: 100;
  color: #E78600;
  font-size: 96px;
  line-height: 1.2;
  width: 100%;
  /* Changed from fixed width to 100% */
}

.company-title {
  font-family: "Roboto";
  font-weight: 700;
  color: #475569;
  font-size: 40px;
  padding-bottom: 40px;
  /* Reduced from 100px */
}

.about-description {
  font-family: "Roboto";
  font-weight: 400;
  color: #334155;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .we-are-text {
    font-size: 64px;
  }

  .company-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 120px 40px;
  }

  .we-are-text {
    font-size: 96px;
  }

  /* Additional spacing for larger screens */
  .about-container {
    gap: 50px;
    /* Increased gap on larger screens */
  }
}

@media (max-width: 767px) {
  .we-are-text {
    font-size: 48px;
    /* Smaller size for mobile */
    width: 100%;
    /* Full width on mobile */
  }

  .company-title {
    font-size: 32px;
    /* Smaller size for mobile */
    padding-bottom: 30px;
  }

  .about-description {
    font-size: 16px;
    /* Slightly smaller text on mobile */
  }
}

/* Services Section */



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.header p {
  font-size: 1.2rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 20px;
}

.services-container {
  width: 100%;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-items: center;
}

/* Center second row cards in columns 2 and 3 */
.service-card:nth-child(5) {
  grid-column: 2 / 3;
}

.service-card:nth-child(6) {
  grid-column: 3 / 4;
}

.service-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0px 2px 4px rgba(62, 52, 69, 0.16);
  transition: all 0.3s ease;
  height: 300px;
  width: 260px;
  min-width: 0;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(62, 52, 69, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-img {
  width: 32px;
  height: 32px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #0f172a;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}

.card-description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #475569;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .service-card:nth-child(5) {
    grid-column: 2 / 3;
  }

  .service-card:nth-child(6) {
    grid-column: 3 / 4;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: auto;
    height: auto;
    padding: 30px 20px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: auto;
    height: auto;
    padding: 30px 20px;
    width: 100%;
    max-width: 100%;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header p {
    font-size: 1rem;
  }
}

/* Demo content styles */
.demo-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.content-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-card h2 {
  color: #E9521D;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.instructions {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instructions h2 {
  color: #E9521D;
  margin-bottom: 1rem;
}

.instructions ul {
  padding-left: 1.5rem;
}

.instructions li {
  margin-bottom: 0.5rem;
}

/* <!-- services section ends --> */





























/* Demo Section */
.demo-section {
  padding: 5rem 2rem;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.section-header {
  font-weight: 200;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: 'Roboto';
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #0f172a;
}

.subtitle,
.tagline {
  font-size: 1.25rem;
  color: #0f172a;
  line-height: 1.6;
}

/* Carousel */
.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.demo-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 500px;
}

.demo-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.3rem;
  width: 90%;
  margin: 1.5rem auto 0 auto;
  border-radius: 20px;
}

.play-button {
  width: 50px;
  height: 50px;
  background: #d1d5d6;
  ;
  border-radius: 50%;
  position: relative;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 0.75rem 0 0.75rem 1.25rem;
  border-color: transparent transparent transparent rgb(251, 123, 3);
  background: #d1d5d6;
  ;
}

.play-button {
  background: #d1d5d6;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  text-align: center;
}

.card-content p {
  color: #475569;
  margin-bottom: 1rem;
  text-align: center;

}

.demo-link {
  color: #e9521d;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #e9521d;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nav-arrow:hover {
  background: #d64718;
}

.nav-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
}

.close-modal {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .demo-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .demo-card {
    flex: 0 0 100%;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .carousel-container {
    padding: 0 1.5rem;
  }
}

/* Base Styles */


.gif-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 765px;
  /* background: url('https://example.com/your-background.gif') no-repeat center center; */
  background-image: url('../img/bg2.gif');
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* New image layer between background and overlay */
.gif-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/02About.png');
  /* Add your image path */
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  /* Adjust opacity as needed */
}

/* Overlay for better text readability */
.gif-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 253, 253, 0.716);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
  max-width: 1000px;
  color: white;
}

.hero-title {
  font-family: 'inter';
  font-size: 96px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: radial-gradient(circle, #E9521D 0%, #E78600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-family: 'inter';
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: #333;

}

.highlight {
  color: #E9521D;
  font-weight: 700;
}

.cta-button {
  display: flex;
  padding: 15px 30px;
  background-color: #E78600;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #E78600;
  font-size: 0.9rem; /* reduce size for <i> icon */
  width: 160px;       /* optional for <svg> */
  height: 50px;  
}

.cta-button:hover {
  color: #E78600;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-text {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .gif-hero {
    min-height: 600px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .content-wrapper {
    padding: 0 15px;
  }
}



/* button container  */

.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  /* Full viewport height */
  text-align: center;
}

.hero-button.secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: #475569;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #E9521D;
}

.hero-button.secondary:hover {
  background-color: transparent;
  color: #E9521D;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(233, 82, 29, 0.3);
}

.button-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button-icon::after {
  content: "→";
  transition: transform 0.3s ease;
}

.hero-button.secondary:hover .button-icon::after {
  transform: translateX(5px);
}












/* Enhanced Photo Section */
.photo-section {
  position: relative;
  width: 100%;
  max-width: 50%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 25%;
}

.center-photo {
  width: 70%;
  max-width: 600px;
  height: auto;
  max-height: 70%;
  border-radius: 15px;
  object-fit: cover;
  z-index: 10;
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s ease;
}

.center-photo:hover {
  transform: scale(1.03);
}

.corner-photo {
  position: absolute;
  transition: all 0.5s ease;
  z-index: 20;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.top-left {
  top: 40px;
  left: 40px;
  width: 180px;
  height: 150px;
  animation: fadeInOut 4s infinite;
}

.bottom-right {
  bottom: 40px;
  right: 40px;
  width: 300px;
  height: 140px;
  animation: fadeInOut 4s infinite 2s;
}

.corner-photo:hover {
  transform: scale(1.1);
  z-index: 30;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.section-title {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 2rem;
  z-index: 5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.circles-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.circles-decoration li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
  border-radius: 50%;
}

.circles-decoration li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles-decoration li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles-decoration li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles-decoration li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles-decoration li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/* Responsive Design - Ensuring logos are always fully visible */
@media (max-width: 1200px) {
  .photo-section {
    max-width: 60%;
  }
}

@media (max-width: 1024px) {
  .photo-section {
    max-width: 70%;
    height: 70vh;
  }

  .center-photo {
    width: 75%;
    max-width: 550px;
  }

  .top-left {
    width: 160px;
    height: 130px;
    left: 30px;
    top: 30px;
  }

  .bottom-right {
    width: 250px;
    height: 120px;
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 900px) {
  .photo-section {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .photo-section {
    max-width: 85%;
    height: 60vh;
    min-height: 450px;
  }

  .center-photo {
    width: 80%;
    max-width: 500px;
  }

  .top-left {
    top: 25px;
    left: 25px;
    width: 130px;
    height: 100px;
  }

  .bottom-right {
    bottom: 25px;
    right: 25px;
    width: 200px;
    height: 95px;
  }

  .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 650px) {
  .photo-section {
    max-width: 90%;
  }

  .top-left {
    width: 110px;
    height: 85px;
  }

  .bottom-right {
    width: 170px;
    height: 80px;
  }
}

@media (max-width: 600px) {
  .photo-section {
    max-width: 92%;
    height: 55vh;
    min-height: 400px;
    padding: 15px;
    margin: 10% auto;
  }

  .center-photo {
    width: 85%;
  }

  .top-left {
    top: 20px;
    left: 20px;
    width: 100px;
    height: 75px;
  }

  .bottom-right {
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 70px;
  }

  .section-title {
    font-size: 1.5rem;
    top: 15px;
  }
}

@media (max-width: 480px) {
  .photo-section {
    max-width: 95%;
    height: 50vh;
    min-height: 380px;
    padding: 10px;
    margin: 12% auto;
  }

  .center-photo {
    width: 90%;
    border-width: 4px;
  }

  .top-left {
    top: 15px;
    left: 15px;
    width: 80px;
    height: 60px;
  }

  .bottom-right {
    bottom: 15px;
    right: 15px;
    width: 120px;
    height: 55px;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .photo-section {
    max-width: 96%;
  }

  .top-left {
    width: 70px;
    height: 55px;
    left: 12px;
  }

  .bottom-right {
    width: 100px;
    height: 50px;
    right: 12px;
  }
}

@media (max-width: 360px) {
  .photo-section {
    max-width: 98%;
    height: 45vh;
    min-height: 350px;
    margin: 15% auto;
  }

  .center-photo {
    width: 92%;
  }

  .top-left {
    top: 10px;
    left: 10px;
    width: 60px;
    height: 50px;
  }

  .bottom-right {
    bottom: 10px;
    right: 10px;
    width: 90px;
    height: 45px;
  }

  .section-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 320px) {
  .top-left {
    width: 55px;
    height: 45px;
  }

  .bottom-right {
    width: 80px;
    height: 40px;
  }

  .section-title {
    font-size: 1.1rem;
  }
}

/* Debug outline to ensure logos are always visible */
.corner-photo {
  outline: 1px solid transparent;
}