@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
  font-display: swap;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0e0e12;
  color: #fff;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.3);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 100px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 18px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
}

.logo-tagline {
  font-size: 13px;
  color: #ff5e00;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff5e00;
}

/* MOBILE HAMBURGER ICON */
.mobile-menu {
  display: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.25rem;
  z-index: 12;
  background: none;
  border: none;
  padding: 0;
  appearance: none;
}

/* MOBILE NAV RAIL */
@media (max-width: 992px) {
  .mobile-menu {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 240px;
    height: calc(100vh - 60px);
    background: rgba(14, 14, 18, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px;
    padding-top: 12px;
    border-left: 1px solid rgba(255, 94, 0, 0.25);
    transition: right 0.3s ease;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    z-index: 11;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid transparent;
  }

  .nav-links a:hover,
  .nav-links .active {
    background: rgba(255, 94, 0, 0.18);
    color: #ff5e00;
    border-color: rgba(255, 94, 0, 0.35);
  }
}

@media (max-width: 768px) {
  .nav-links {
    width: 100%;
    right: -100%;
  }

  .nav-links.open {
    right: 0;
  }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: #0e0e12;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(14 14 18 / 50%) 0%,
    rgb(14 14 18 / 40%) 50%,
    rgb(14 14 18 / 20%) 100%
  );
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide:nth-child(1) .hero-content {
  background-image: url("../images/hero-banner.webp");
}

.hero-slide:nth-child(2) .hero-content {
  background-image: url("../images/hero-banner2.webp");
}

.hero-text-wrapper {
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-wrapper h1,
.hero-text-wrapper h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.hero-text-wrapper h1 span,
.hero-text-wrapper h2 span {
  color: #ff5e00;
}

.hero-text-wrapper p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Slider Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #ff5e00;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.6);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 94, 0, 0.8);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #ff5e00;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.4);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* Responsive */
@media (max-width: 1024px) and (min-height: 1000px) {
  .hero-slider {
    height: 40vh;
  }

  .about-hero {
    height: 30vh !important;
  }

  .contact-hero {
    height: 30vh !important;
  }

  .about-hero-text h1 {
    font-size: 40px !important;
  }

  .contact-hero-text h1 {
    font-size: 40px !important;
  }

  .hero-text-wrapper h1,
  .hero-text-wrapper h2 {
    font-size: 40px;
  }

  .hero-text-wrapper p {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .hero-text-wrapper h1,
  .hero-text-wrapper h2 {
    font-size: 36px;
  }

  .hero-text-wrapper p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .prev-arrow {
    left: 15px;
  }

  .next-arrow {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .hero-text-wrapper {
    text-align: center;
  }

  .hero-text-wrapper h1,
  .hero-text-wrapper h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-text-wrapper p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 24px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
  }

  .hero-text-wrapper {
    padding: 0 15px;
  }

  .hero-text-wrapper h1,
  .hero-text-wrapper h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero-text-wrapper h1 sup {
    font-size: 16px;
  }

  .hero-text-wrapper p {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .slider-dots {
    bottom: 30px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 20px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }
}

@media (max-width: 320px) {
  .hero-slider {
    height: 80vh !important;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    height: 100vh;
  }

  .hero-text {
    max-width: 100%;
  }
}

/* Cousrse Cards section */
/* Section */
.section {
  padding: 40px 0;
}

/* Grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.card {
  background: #15151c;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  position: relative;
  border: 1px solid #ff5e00;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 94, 0, 0.3);
}

/* Oval Image */
.card-img {
  width: 100%;
  height: 200px;
  border-radius: 120px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title */
.card-title {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .card-title {
    font-size: 20px;
  }

  .founder-content p {
    font-size: 14px;
  }
}

.card-title span {
  color: #ff5e00;
}

/* Text */
.card-text {
  font-size: 14px;
  color: #fff;
  margin: 10px 0 20px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background: linear-gradient(45deg, #e05300, #ff7a1a); /* Slightly darker for contrast */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #fff;
  color: #c04800; /* Darker orange for white background */
}

/* Responsive */
@media (max-width: 768px) {
  .card-img {
    height: 170px;
  }
}

/* Stats Section */
.stats {
  margin-top: 50px;
  background: #15151c;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  overflow: hidden;
}

.stat {
  padding: 25px;
  border-right: 1px solid rgb(255 255 255 / 34%);
}

.stat-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-content i {
  font-size: 1.6rem;
  color: #fff;
}

.stat:last-child {
  border-right: none;
}

.stat h2 {
  color: #ff5e00;
  font-size: 28px;
}

.stat p {
  font-size: 15px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  .card-img {
    height: 170px;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:last-child {
    border-bottom: none;
  }
}

/* Director Section */
.founder-section {
  padding: 40px 0;
  background: url("../images/founder-bg.webp") no-repeat center/cover;
}

.founder-wrapper {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 30px;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  border: 4px solid transparent;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(#95501e, #0e0e12) padding-box,
    linear-gradient(90deg, #ff5e00, #83373782) border-box;
}

.founder-content h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  position: relative;
}

.founder-content h2 span {
  color: #ff5e00;
}

.founder-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff5e00;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.founder-content p {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
}

.founder-info h4 {
  color: #fff;
  margin: 5px 0 5px;
}

.founder-info span {
  color: #ff5e00;
  font-size: 15px;
}

.signature {
  margin-top: 20px;
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  color: #ff5e00;
}

/* Founder Qualifications */
.founder-qualifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 94, 0, 0.2);
}

.qualification-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #15151c;
  border-radius: 10px;
  border: 1px solid #ff5e00;
  transition: all 0.3s ease;
}

.qualification-item:hover {
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
}

.qualification-item span {
  font-size: 24px;
  color: #ff5e00;
  display: flex;
  align-items: center;
  min-width: 30px;
}

.qualification-item strong {
  color: #fff;
  font-size: 16px;
  display: block;
  background: #ff5e00;
  padding: 2px;
  border-radius: 5px;
  font-weight: 500;
}

.qualification-item {
  color: #fff;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .founder-wrapper {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .courses-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .founder-qualifications {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .qualification-item {
    padding: 14px;
  }

  .founder-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 30px 0;
  }

  .founder-qualifications {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .qualification-item {
    padding: 12px;
    font-size: 13px;
  }

  .qualification-item span {
    font-size: 20px;
  }

  .founder-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .founder-content h2 {
    font-size: 28px;
  }

  .founder-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .founder-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .founder-qualifications {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
  }

  .qualification-item {
    padding: 10px;
    gap: 10px;
    font-size: 12px;
  }

  .qualification-item span {
    font-size: 18px;
  }

  .founder-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .signature {
    font-size: 24px;
    margin-top: 15px;
  }

  .founder-image {
    order: -1;
  }
}

/* Facilities Section */
/* Section */
.facilities-section {
  padding: 40px 0;
  text-align: center;
}

/* Title */
.section-title {
  color: #ff5e00;
  font-size: 34px;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--orange);
  display: block;
  margin: 10px auto 0;
}

/* Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* Card */
.facility-card {
  background: #15151c;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 0px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  border: 1px solid #ff5e00;
}

.facility-card:hover {
  transform: translateY(-10px);
  border-color: #fff;
  box-shadow: 0 15px 40px rgba(255, 94, 0, 0.2);
}

/* Image */
.facility-icon {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 94, 0, 0.1) 0%,
    rgba(255, 94, 0, 0.05) 100%
  );
  font-size: 25px;
  transition: all 0.3s ease;
}

.facility-icon i {
  border: 3px solid #ff5e00;
  padding: 10px;
  border-radius: 10px;
}

.facility-card:hover .facility-icon {
  color: #fff;
  transform: scale(1.15);
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Text */
.facility-card h3 {
  color: #fff;
  margin: 15px 10px 10px;
  font-size: 15px;
  font-weight: 500;
}

.facility-card p {
  color: #fff;
  font-size: 14px;
  padding: 0 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
}

/* Courses Section */
/* Section */
.courses-section {
  padding: 40px 0;
  background: url("../images/founder-bg.webp") no-repeat center/cover;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  position: relative;
}

.section-header h2 span {
  color: #ff5e00;
}

.section-header h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff5e00;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

.section-header p {
  color: #fff;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }
}

/* Layout */
.courses-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left */
.courses-left {
  flex: 1;
}

/* Card */
.course-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #15151c;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: 0.3s;
  border: 1px solid #ff5e00;
}

.course-card:hover {
  border-color: #fff;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
}

/* Icon */
.icon {
  font-size: 26px;
  color: #fff;
}

/* Text */
.course-card h3 {
  color: #ff5e00;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .course-card h3 {
    font-size: 18px;
  }

  .course-card p {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .course-card h3 {
    font-size: 16px;
  }

  .course-card p {
    font-size: 13px;
  }
}

.course-card p {
  color: #fff;
  font-size: 15px;
}

/* Right Image */
.courses-right {
  flex: 1;
}

.courses-right img {
  width: 100%;
  max-height: 430px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .courses-wrapper {
    flex-direction: column !important;
  }

  .courses-right img {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 22px;
  }
}

/* Call for action */
.cta-section {
  padding: 40px 0;
}

.cta-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #15151c;
  padding: 10px 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid #ff5e00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.cta-wrapper:hover {
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 94, 0, 0.3);
}

/* Text */
.cta-text h2 {
  color: #ff5e00;
  font-size: 22px;
  margin-bottom: 5px;
}

.cta-text p {
  color: #fff;
  text-align: center;
  font-size: 15px;
}

/* Button */
.cta-btn a {
  display: inline-block;
  background: #e05300; /* Darker orange */
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn a:hover {
  background: #c04800;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-text h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .cta-text h2 {
    font-size: 18px;
  }

  .cta-btn a {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Footer */
.footer {
  background: url("../images/footer-bg.webp") no-repeat center/cover;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Footer Overlay */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(14 14 18 / 62%) 40%,
    rgb(14 14 18 / 52%) 70%,
    rgb(14 14 18 / 57%) 100%
  );
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  color: #ff5e00;
  margin-bottom: 15px;
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  width: 150px;
  height: auto;
  margin-top: -30px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-logo-tagline {
  margin: 0;
  font-size: 13px;
  color: #ff5e00 !important;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Text */
.footer-col p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: self-start;
  gap: 10px;
}

/* Phone Links Container */
.footer-phone-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Footer Links */
.footer-col p a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
}

.footer-col p a:hover {
  color: #ff5e00;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff5e00;
  padding-left: 5px;
}

.footer-col i {
  margin-right: 8px;
  color: #ff5e00;
  margin-top: 0px;
  margin-left: 8px;
}

#footer-contact i {
  margin-top: 5px;
}

/* Social Media Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #15151c;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #ff5e00;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 94, 0, 0.3);
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom .dev-credit {
  font-size: 15px;
  color: #ff5e00;
}

@media (max-width: 768px) {
  .footer-bottom p {
    font-size: 13px;
  }
}

.footer-bottom p {
  color: #fff;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-phone-links {
    gap: 6px;
  }

  .footer-col p a {
    font-size: 14px;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-logo h3 {
    font-size: 20px;
  }

  .footer-logo-tagline {
    font-size: 12px;
  }

  .footer-phone-links {
    gap: 5px;
  }

  .footer-col p {
    justify-content: center;
    font-size: 14px;
    gap: 1;
  }

  .footer-col p a {
    font-size: 13px;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }

  .footer-bottom .dev-credit {
    font-size: 13px;
  }

  .social-links {
    justify-content: center;
    gap: 8px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* About page style */
.about-hero {
  height: 60vh;
  background: url("../images/about-banner.webp") no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(14 14 18 / 85%) 50%,
    rgb(14 14 18 / 85%) 50%,
    rgb(14 14 18 / 85%) 50%
  );
  top: 0;
  left: 0;
}

/* CONTENT */
.about-hero-content {
  position: relative;
  z-index: 2;
}

/* TEXT */
.about-hero-text {
  text-align: center;
}

.about-hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-hero-text h1 {
    font-size: 36px;
  }

  .about-hero-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-hero-text h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .about-hero-text p {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh !important;
  }

  .about-hero-text h1 {
    font-size: 22px !important;
  }

  .about-hero-text p {
    font-size: 12px !important;
  }
}

@media (max-width: 320px) {
  .about-hero {
    height: 60vh !important;
  }

  .about-hero-text h1 {
    font-size: 20px !important;
  }

  .about-hero-text p {
    font-size: 11px !important;
  }

  .about_title {
    font-size: 22px !important;
  }

  .about_text {
    font-size: 14px !important;
  }

  .who-left h2 {
    font-size: 22px !important;
  }

  .who-card p {
    font-size: 14px !important;
  }

  .vm_title {
    font-size: 22px !important;
  }

  .vm_card p {
    font-size: 14px !important;
  }

  .info_title {
    font-size: 22px !important;
  }

  .info_content p {
    font-size: 14px !important;
  }
}

.about-hero-text span {
  color: #ff5e00;
}

.about-hero-text p {
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
}

/* Section */
.about_section {
  padding: 40px 0;
}

/* Layout */
.about_wrapper {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 30px;
}

/* Image */
.about_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Content */
.about_title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  position: relative;
}

.about_title span {
  color: #ff5e00;
}

.about_title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff5e00;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* Text */
.about_text {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Highlights */
.about_highlights {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight_item {
  color: #fff;
  font-size: 14px;
  background: #15151c;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ff5e00;
  transition: 0.3s;
  display: flex;
  align-items: self-start;
  gap: 5px;
}

.highlight_item span {
  color: #ff5e00;
  margin-right: 6px;
  margin-top: 1px;
}

.highlight_item:hover {
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
}

/* Responsive */
@media (max-width: 992px) {
  .about_wrapper {
    grid-template-columns: 1fr;
  }

  .about_title {
    text-align: center;
    font-size: 28px;
  }

  .about_title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about_highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .about_highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .about_wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about_title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Vision & Mission for about page */
/* Section */
.vision_mission_section {
  padding: 40px 0;
  background: url("../images/founder-bg.webp") no-repeat center/cover;
}

/* Header */
.vm_header {
  text-align: center;
  margin-bottom: 30px;
}

.vm_title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 10px;
  position: relative;
}

.vm_title span {
  color: #ff5e00;
}

.vm_title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff5e00;
  display: block;
  margin: 10px auto 0;
}

/* Wrapper */
.vm_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.vm_card {
  background: #15151c;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #ff5e00;
  transition: 0.4s;
}

.vm_card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(255, 94, 0, 0.2);
}

/* Icon */
.vm_icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.vm_icon i {
  color: #fff;
  background: #ff5e00;
  padding: 10px;
  border-radius: 50px;
}

/* Text */
.vm_card h3 {
  color: #ff5e00;
  margin-bottom: 10px;
  font-size: 22px;
}

.vm_card p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .vm_wrapper {
    grid-template-columns: 1fr;
  }

  .vm_card {
    padding: 25px;
  }

  .vm_title {
    font-size: 28px;
  }
}

/* Classes for about page style */
/* SECTION */
.info_section {
  padding: 40px 0;
  text-align: center;
}

/* SECTION TITLE */
.info_title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 30px;
  position: relative;
  font-weight: 600;
}

.info_title span {
  color: #ff5e00;
}

@media (max-width: 768px) {
  .info_title {
    font-size: 28px;
  }
}

.info_title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff5e00;
  display: block;
  margin: 15px auto 0;
}

/* CARD */
.info_card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #15151c;
  padding: 25px 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

/* TOP BORDER GRADIENT */
.info_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ff5e00, transparent);
}

/* HOVER EFFECT */
.info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 94, 0, 0.2);
}

/* ICON */
.info_icon {
  font-size: 40px;
  color: var(--orange);
}

/* CONTENT */
.info_content h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
}

.info_content h3 span {
  color: #ff5e00;
}

.info_content p {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info_card {
    flex-direction: column;
  }

  .info_icon {
    margin-bottom: 10px;
  }
}

/* Contact page style */
.contact-hero {
  height: 60vh;
  background: url("../images/contact-banner.webp") no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.contact-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgb(14 14 18 / 85%) 50%,
    rgb(14 14 18 / 85%) 50%,
    rgb(14 14 18 / 85%) 50%
  );
  top: 0;
  left: 0;
}

/* CONTENT */
.contact-hero-content {
  position: relative;
  z-index: 2;
}

/* TEXT */
.contact-hero-text {
  text-align: center;
}

.contact-hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 600;
}

@media (max-width: 992px) {
  .contact-hero-text h1 {
    font-size: 36px;
  }

  .contact-hero-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .contact-hero-text h1 {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .contact-hero-text p {
    font-size: 13px !important;
  }
}

.contact-hero-text span {
  color: #ff5e00;
}

.contact-hero-text p {
  margin: 20px 0;
  color: #fff;
  font-size: 16px;
}

/* Contact Section for contact page */
/* Section */
.contact_premium_section {
  padding: 40px 0;
  position: relative;
}

/* SECTION HEADER */
.contact_header {
  text-align: center;
  margin-bottom: 30px;
}

.contact_header h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact_header h2 span {
  color: #ff5e00;
}

.contact_header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff5e00;
  margin: 15px auto 0;
}

/* Layout */
.contact_premium_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

/* LEFT */
.contact_left h2 {
  color: #ff5e00;
  font-size: 34px;
}

/* Cards */
.contact_cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}

.contact_card {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-radius: 12px;
  background: #15151c;
  border: 1px solid #ff5e00;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.contact_card .icon {
  font-size: 22px;
  color: #ff5e00;
}

.contact_card h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 22px;
}

.contact_card p {
  color: #fff;
  margin: 0;
  line-height: 1.6;
  display: flex;
  align-items: self-start;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .contact_card div p:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
  }

  .contact_card a[href="tel:7898913498"] {
    flex-basis: 100%;
    margin-left: 17px;
  }
}
.contact_card i {
  color: #ff5e00;
  margin-top: 5px;
}

.phone_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact_card a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
}

.contact_card a:hover {
  color: #ff5e00;
}

.contact_card:hover {
  border-color: #fff;
  transform: translateX(6px);
  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.2);
}

/* RIGHT FORM */
.contact_right {
  flex: 1;
}

.premium_form {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(#0e0e12, #0e0e12) padding-box,
    linear-gradient(135deg, #ff5e00, transparent) border-box;
}

/* Floating Inputs */
.input_group {
  position: relative;
  margin-bottom: 20px;
}

.input_group input,
.input_group textarea {
  width: 100%;
  padding: 14px;
  background: #15151c;
  border: none;
  color: #fff;
  border-radius: 6px;
  outline: none;
}

.input_group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

.input_group textarea + label {
  top: 20px;
}

.input_group input:focus + label,
.input_group input:valid + label,
.input_group textarea:focus + label,
.input_group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #ff5e00;
}

/* Button */
.premium_form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: linear-gradient(135deg, #ff5e00, #ff7a2f);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.premium_form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 94, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .contact_header {
    margin-bottom: 40px;
  }

  .contact_header h2 {
    font-size: 28px;
  }

  .contact_header p {
    font-size: 15px;
  }

  .contact_premium_wrapper {
    grid-template-columns: 1fr;
  }

  .phone_links {
    gap: 6px;
  }

  .contact_card a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .contact_premium_section {
    padding: 40px 0;
  }

  .contact_header {
    margin-bottom: 35px;
  }

  .contact_header h2 {
    font-size: 28px;
  }

  .contact_header h2::after {
    width: 60px;
    height: 2px;
    margin-top: 12px;
  }

  .contact_header p {
    font-size: 14px;
  }

  .contact_card {
    padding: 22px;
  }

  .contact_card h4 {
    font-size: 18px;
  }

  .phone_links {
    gap: 5px;
  }

  .contact_card a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact_header {
    margin-bottom: 30px;
  }

  .contact_header h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .contact_header h2::after {
    width: 50px;
    height: 2px;
    margin-top: 10px;
  }

  .contact_header p {
    font-size: 13px;
  }

  .contact_card {
    padding: 20px;
    gap: 12px;
  }

  .contact_card h4 {
    font-size: 16px;
  }

  .phone_links {
    gap: 4px;
  }

  .contact_card a {
    font-size: 13px;
  }

  .contact-hero {
    height: 40vh !important;
  }

  .contact-hero-text h1 {
    font-size: 22px !important;
  }
}

@media (max-width: 320px) {
  .contact-hero {
    height: 60vh !important;
  }

  .contact-hero-text h1 {
    font-size: 20px !important;
  }

  .contact_header p {
    font-size: 12px !important;
  }

  .contact_card h4 {
    font-size: 16px !important;
  }

  .contact_card a {
    font-size: 12px !important;
  }
}

/* Map Section */
.map-section {
  padding: 40px 0;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.map-header h2 span {
  color: #ff5e00;
}

.map-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff5e00;
  margin: 15px auto 0;
}

.map-header p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}

.map-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.map-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 2px solid #ff5e00;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
  transition: all 0.3s ease;
}

.map-container iframe:hover {
  border-color: #fff;
  box-shadow: 0 15px 40px rgba(255, 94, 0, 0.3);
  transform: translateY(-5px);
}

.map-container h3 {
  color: #ff5e00;
  font-size: 20px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .map-section {
    padding: 40px 0;
  }

  .map-header h2 {
    font-size: 28px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-container iframe {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 30px 0;
  }

  .map-header {
    margin-bottom: 30px;
  }

  .map-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .map-header h2::after {
    width: 60px;
    height: 2px;
    margin-top: 12px;
  }

  .map-header p {
    font-size: 14px;
  }

  .map-wrapper {
    gap: 25px;
  }

  .map-container iframe {
    height: 350px;
  }

  .map-container h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 25px 0;
  }

  .map-header {
    margin-bottom: 25px;
  }

  .map-header h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .map-header h2::after {
    width: 50px;
    height: 2px;
  }

  .map-header p {
    font-size: 13px;
  }

  .map-wrapper {
    gap: 20px;
  }

  .map-container iframe {
    height: 300px;
    border-width: 1px;
  }

  .map-container h3 {
    font-size: 16px;
  }
}

/* Who We Are Section for about page */
.who-premium {
  padding: 40px 0px;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND GLOW */
.who-premium::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--orange);
  filter: blur(150px);
  top: -100px;
  right: -100px;
  opacity: 0.3;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.who-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* LEFT */
.who-left {
  flex: 1;
}

.who-left h5 {
  color: var(--orange);
  letter-spacing: 2px;
}

.who-left h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  position: relative;
}

.who-left h2 span {
  color: #ff5e00;
}

.who-left h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff5e00;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* GLASS CARD */
.who-card {
  background: #15151c;
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #ff5e00;
  margin-top: 30px;
  transition: 0.3s;
}

.who-card:hover {
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 94, 0, 0.2);
}

.who-card p {
  color: #fff;
  margin-bottom: 25px;
}

/* RIGHT */
.who-right {
  flex: 1;
  position: relative;
}

.image-box {
  border-radius: 30px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  display: block;
  height: 370px;
  object-fit: cover;
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: #fff;
  color: #0e0e12;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card1 {
  top: 20px;
  left: -30px;
}

.card2 {
  bottom: 20px;
  right: -30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .who-wrapper {
    flex-direction: column;
  }

  .who-left h2 {
    font-size: 28px;
  }

  .image-box {
    transform: rotate(0);
  }

  .floating-card {
    display: none;
  }

  .image-box img {
    height: auto;
    width: 100%;
  }
}

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  background-color: #128c7e;
  color: #fff;
  text-decoration: none;
}

.float i {
  color: #fff;
}

@media (max-width: 600px) {
  .hero-slider {
    height: 50vh;
  }

  .about-hero {
    height: 40vh;
  }

  .contact-hero {
    height: 40vh;
  }
}
