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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.highlight {
  color: #FF6B35;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(255, 69.6336633663, 2);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid #FF6B35;
}
.btn-outline:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #FFFFFF;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img {
  height: 40px;
}
.header .nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav-links .nav-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.header .nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF6B35;
  transition: all 0.3s ease;
}
.header .nav-links .nav-link:hover {
  color: #FF6B35;
}
.header .nav-links .nav-link:hover::after {
  width: 100%;
}
.header .nav-links .nav-link.active {
  color: #FF6B35;
}
.header .nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.header .login-menu-wrapper {
  position: relative;
}
.header .login-menu-wrapper .login-btn {
  z-index: 1001;
}
.header .login-menu-wrapper .login-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  border: 1.5px solid #FF6B35;
  border-radius: 8px;
  min-width: 180px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1002;
}
.header .login-menu-wrapper .login-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item {
  display: block;
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-bottom: none;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:hover {
  background: rgba(45, 111, 255, 0.1);
  color: #FF6B35;
  padding-left: 22px;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:first-child {
  border-radius: 6px 6px 0 0;
}
.header .login-menu-wrapper .login-dropdown-menu .login-dropdown-item:last-child {
  border-radius: 0 0 6px 6px;
}
.header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1003;
}
.header .mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 991px) {
  .header .mobile-menu-toggle {
    display: flex;
  }
  .header .nav-actions {
    margin-left: auto;
    margin-right: 15px;
  }
  .header .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1002;
  }
  .header .nav-links.active {
    right: 0;
  }
  .header .nav-links .nav-link {
    font-size: 18px;
  }
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 40px 0 20px;
}
.footer .container {
  position: relative;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer .footer-brand .footer-logo {
  display: inline-block;
}
.footer .footer-brand .footer-logo img {
  width: auto;
}
.footer .footer-content-wrapper {
  display: flex;
  gap: 140px;
}
.footer .footer-links-group {
  display: flex;
  gap: 100px;
}
.footer .footer-col h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #FFFFFF;
}
.footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer .footer-col ul li a {
  font-size: 15px;
  color: #999999;
  transition: all 0.3s ease;
}
.footer .footer-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-col.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer .footer-col.contact-col ul li img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-col.contact-col ul li a {
  color: #999999;
  font-size: 15px;
}
.footer .footer-col.contact-col ul li a:hover {
  color: #FF6B35;
}
.footer .footer-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 160px;
}
.footer .footer-actions .btn {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer .footer-actions .btn.btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-login:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}
.footer .footer-actions .btn.btn-touch {
  background: #FF6B35;
  border: 1px solid #FF6B35;
  color: #FFFFFF;
}
.footer .footer-actions .btn.btn-touch:hover {
  background: rgb(255, 69.6336633663, 2);
  border-color: rgb(255, 69.6336633663, 2);
}
.footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-bottom: 20px;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom p {
  font-size: 14px;
  color: #666666;
}
.footer .footer-bottom .footer-policy-links {
  display: flex;
  gap: 40px;
}
.footer .footer-bottom .footer-policy-links a {
  font-size: 14px;
  color: #666666;
  transition: all 0.3s ease;
}
.footer .footer-bottom .footer-policy-links a:hover {
  color: #FF6B35;
}
@media (max-width: 992px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .footer .footer-content-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 40px;
  }
  .footer .footer-links-group {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }
  .footer .footer-actions {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  .footer .footer-actions .btn {
    width: 48%;
  }
}
@media (max-width: 700px) {
  .footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer .footer-links-group {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .footer .footer-col ul {
    align-items: center;
    gap: 10px;
  }
  .footer .footer-col.contact-col ul li {
    justify-content: center;
  }
  .footer .footer-actions {
    flex-direction: column;
  }
  .footer .footer-actions .btn {
    width: 100%;
  }
  .footer .footer-bottom .footer-policy-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.hero {
  position: relative;
  height: 100vh;
  max-height: 700px;
  display: flex;
  flex-direction: column;
}
.hero.about-hero, .hero.contact-hero {
  min-height: auto;
  height: 600px;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero .hero-background img,
.hero .hero-background .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-background .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.hero .hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.5) 100%);
}
.hero .container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  text-align: center;
  padding-top: 80px;
}
.hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 40px;
  line-height: 1.2;
  font-size: 50px;
  font-weight: 900;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-title .highlight {
  color: #FF6B35;
}
.hero .hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero .hero-cta {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 30px;
}
.hero .hero-cta .arrow {
  margin-left: 8px;
}
.hero .btn-outline-light {
  background: transparent;
  color: #FF6B35;
  border: 1.5px solid #FF6B35;
}
.hero .btn-outline-light:hover {
  background: rgba(255, 107, 53, 0.1);
}
.hero .hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero .learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #FFFFFF;
  color: #FF6B35;
  padding: 15px 60px;
  border-radius: 40px 40px 0 0;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 70vh;
  }
}
@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 26px;
  }
}
.testimonials {
  padding: 100px 0;
}
.testimonials .section-title {
  margin-bottom: 10px;
}
.testimonials .section-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 60px;
}
.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonials .testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials .testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(360deg, #FE7E23 0%, #E6E6E6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.testimonials .testimonial-card .quote-icon {
  position: absolute;
  background: #FFFFFF;
  padding: 0 10px;
}
.testimonials .testimonial-card .quote-icon.start-quote {
  top: -15px;
  left: 30px;
  color: #FF6B35;
}
.testimonials .testimonial-card .quote-icon.start-quote svg {
  width: 32px;
  height: auto;
}
.testimonials .testimonial-card .quote-icon.end-quote {
  bottom: -15px;
  right: 30px;
  color: #CECECE;
}
.testimonials .testimonial-card .quote-icon.end-quote svg {
  width: 32px;
  height: auto;
}
.testimonials .testimonial-card .testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  font-style: italic;
  margin-bottom: 25px;
  margin-top: 10px;
}
.testimonials .testimonial-card .testimonial-footer {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-card .testimonial-footer .client-logo {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .testimonials .section-desc {
    margin-bottom: 20px;
  }
  .testimonials .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials .testimonials-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .testimonials .testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
  }
}
@media (max-width: 600px) {
  .testimonials .testimonial-card {
    min-width: 85vw;
  }
}

.mission-vision {
  padding: 80px 0;
  background: #fff;
}
.mission-vision .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 16px;
}
.mission-vision .section-desc {
  font-size: 16px;
  color: #71717A;
  line-height: 1.6;
  margin-bottom: 60px;
}
.mission-vision .mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-vision .mission-vision-image {
  max-width: 450px;
  margin: 0 auto;
}
.mission-vision .mission-vision-image .image-frame {
  position: relative;
  z-index: 1;
}
.mission-vision .mission-vision-image .image-frame::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border-bottom: 1px solid #FF6B35;
  border-right: 1px solid #FF6B35;
  z-index: 0;
  border-radius: 0;
}
.mission-vision .mission-vision-image .image-frame .frame-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  border-top: 1px solid #FF6B35;
  border-left: 1px solid #FF6B35;
  z-index: 0;
  border-radius: 0;
  border-right: none;
  border-bottom: none;
}
.mission-vision .mission-vision-image .image-frame .frame-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #333333 0.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 0;
  transform: scale(1.5);
}
.mission-vision .mission-vision-image .image-frame img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.mission-vision .mission-vision-content .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 12px;
}
.mission-vision .mission-vision-content .content-subtitle {
  font-size: 16px;
  color: #71717A;
  margin-bottom: 32px;
}
.mission-vision .mission-vision-content .content-section {
  margin-bottom: 24px;
}
.mission-vision .mission-vision-content .content-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: #18181B;
  margin-bottom: 8px;
}
.mission-vision .mission-vision-content .content-section p {
  font-size: 16px;
  color: #71717A;
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}
.values-section .values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.values-section .values-content .section-title {
  margin-bottom: 10px;
}
.values-section .values-content .section-desc {
  color: #666666;
  margin-bottom: 30px;
}
.values-section .values-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.values-section .values-features-list .values-feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
  text-align: left;
}
.values-section .values-features-list .values-feature-item:hover {
  border-bottom: 1px solid #FF6B35;
}
.values-section .values-features-list .values-feature-item:hover .feature-text h3 {
  color: #FF6B35;
}
.values-section .values-features-list .feature-icon-box {
  width: 70px;
  height: 70px;
  background-color: #FFF5EC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.values-section .values-features-list .feature-icon-box img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.values-section .values-features-list .feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.values-section .values-features-list .feature-text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}
.values-section .values-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.values-section .diamond-frame-container {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.values-section .diamond-border {
  position: absolute;
  width: 90%;
  height: 100%;
  transform: translate(-45px, 30px);
  border: 4px solid;
  border-image-source: linear-gradient(180deg, #FE7E23 0%, #FDD8BE 40.87%);
  border-image-slice: 1;
  z-index: 0;
}
.values-section .diamond-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.values-section .diamond-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1024px) {
  .values-section {
    padding: 50px 0;
  }
  .values-section .values-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .values-section .values-image {
    display: none;
  }
  .mission-vision {
    padding: 50px 0;
  }
  .mission-vision .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .mission-vision .section-desc br, .mission-vision .mission-vision-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .mission-vision {
    padding: 60px 0;
  }
  .mission-vision .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-vision .section-title,
  .mission-vision .content-title {
    font-size: 28px;
  }
  .mission-vision .section-desc,
  .mission-vision .content-subtitle {
    font-size: 14px;
  }
  .values-section .diamond-frame-container {
    width: 280px;
    height: 280px;
  }
}
.founder-section {
  padding: 40px 0 0;
  background-color: #231F20;
  background-image: url("../images/about-us/founder/pattern.png");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  color: #FFFFFF;
}
.founder-section .founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-section .founder-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.founder-section .founder-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.founder-section .founder-content .founder-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.founder-section .founder-content .founder-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #FE7E23;
  border-radius: 2px;
}
.founder-section .founder-content .founder-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.founder-section .founder-content .founder-role {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #E4E4E7;
}
.founder-section .founder-content .founder-bio {
  font-size: 16px;
  line-height: 1.6;
  color: #A1A1AA;
  margin-bottom: 40px;
}
.founder-section .founder-content .founder-decor-line {
  display: flex;
  justify-content: flex-start;
}
.founder-section .founder-content .founder-decor-line svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .founder-section {
    background-image: none;
  }
  .founder-section .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .founder-section .founder-content .founder-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .founder-section .founder-content .founder-decor-line {
    display: none;
  }
}/*# sourceMappingURL=about.css.map */