/**
/* Global Stylings */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: var(--heading-font);
  --background-color: #ffffff;
  --default-color: #1e1d1d;
  --heading-color: #000000;
  --accent-color: #f59e35;
  --surface-color: #ffffff;
  --contrast-color: black;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--default-font);
  padding-top: 80px;
  line-height: 1.7;
  font-size: 18px;
  padding-bottom: 50px;
}

.main {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

p {
  font-size: 16px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.light-background {
  --background-color: #f5f9fc;
}

.section {
  padding: 100px 0;
}

.scrolled .header {
  --background-color: rgb(255, 255, 255);
}

/* ------------------preloader----------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =============page navigation============== */
.page-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  gap: 20px;
}

.page-navigation .nav-btn {
  width: 40px;
  height: 30px;
  background: #f1c083;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
}

.page-navigation .nav-btn:hover {
  background: transparent;
  color: var(--brand-dark) !important;
}

/* ====================================================================================================
    CSS FOR THE TITLE WHILE THE WEBSITE LOAD
==================================================================================================== */
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* ====================================================================================================================================
   Header
   ==================================================================================================================================== */
:root {
  --brand-accent: #f59e35;
  --brand-dark: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.75);
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.floating-navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 80px;
  justify-content: space-between;
  transition: 0.4s ease;
}

.logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 4px;
  transition: transform 0.4s ease;
}

.logo img {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 45px;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: 0;
  right: 0;
  background-color: var(--brand-accent);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--brand-accent);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.btn-rounded {
  background: var(--brand-dark);
  color: #fff !important;
  border: 1.5px solid var(--brand-dark);
  padding: 12px 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: 0.4s all;
}

.btn-rounded:hover {
  background: transparent;
  color: var(--brand-dark) !important;
}

.enroll-btn {
  background: var(--brand-dark);
  color: #fff !important;
  padding: 12px 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1.5px solid var(--brand-dark);
  transition: 0.4s all;
}

.enroll-btn:hover {
  background: transparent;
  color: var(--brand-dark) !important;
}

.wp-btn {
  background-color: #25D366;
  padding: 8px 16px;
  font-size: 15px;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid var(--brand-dark);
}

.wp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  color: black;
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--brand-dark);
  z-index: 100002;
}

.services-dropdown {
  position: relative;
}

.premium-dropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 420px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.menu-heading {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 12px;
  width: 100%;
  max-width: 250px;
  text-decoration: none;
  color: #333;
  transition: 0.25s ease;
}

.dropdown-item:hover {
  background: #f5f7ff;
  transform: translateY(-2px);
}

.icon {
  font-size: 22px;
}

.dropdown-item strong {
  font-size: 14px;
}

.dropdown-item p {
  font-size: 12px;
  color: #777;
  margin: 2px 0 0;
}

/*====================================================================================================
 HERO SECTION
==================================================================================================== */
.hero-section {
  padding-top: 0;
}

.hero {
  position: relative;
  padding: 80px 0 80px;
  background: linear-gradient(360deg, #ffffff, #f1c083);
  color: #000000;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      rgba(157, 45, 45, 0.02),
      rgba(255, 255, 255, 0.02) 2px,
      transparent 2px,
      transparent 6px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 30px;
  margin-bottom: 5px;
}

.hero-services {
  font-size: 18px;
  margin-bottom: 40px;
}

.hero-img-anim {
  animation: up-down 3s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*====================================================================================================
About Us
==================================================================================================== */
.testimonial-card {
  max-width: 750px;
  background: #ffffff;
  padding: 50px 40px;
  position: relative;
  margin: 30px auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars i {
  color: #ffc107;
  font-size: 0.9rem;
}

.section-description {
  max-width: 700px;
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

/*====================================================================================================================
# CSS FOR VIDEO EDITING SERVICE
====================================================================================================================*/
.ved-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.ved-hero {
  background: #fff;
  padding-top: 100px;
}

.ved-hero h1 {
  font-size: 40px;
}

.ved-hero p {
  color: #555;
  margin: 15px 0;
}

.ved-services,
.ved-cta {
  padding: 20px 20px;
}

.ved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ved-card {
  padding: 25px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.ved-card:hover {
  transform: translateY(-5px);
}

.ved-icon {
  font-size: 24px;
  padding: 15px;
  margin-bottom: 15px;
  display: inline-block;
}

.ved-card h3 {
  margin-top: 10px;
}

.ved-card:nth-child(1) .ved-icon {
  color: #f59e0b;
  background: #fff7ed;
}

.ved-card:nth-child(2) .ved-icon {
  color: #3b82f6;
  background: #eff6ff;
}

.ved-card:nth-child(3) .ved-icon {
  color: #ef4444;
  background: #fef2f2;
}

.ved-card:nth-child(4) .ved-icon {
  color: #ec4899;
  background: #fdf2f8;
}

.ved-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.ved-steps div {
  background: #eef2ff;
  padding: 12px 18px;
}

.ved-cta p {
  margin: 10px 0;
}

.ved-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.ved-process-card {
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.ved-process-card:hover {
  transform: translateY(-6px);
}

.ved-step-number {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 15px;
  background: #f1c083;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ved-process-card h3 {
  margin-bottom: 8px;
}

.ved-process-card p {
  font-size: 14px;
  color: #666;
}

/*====================================================================================================================
# CSS FOR SOCIAL MEDIA MANAGEMENT SERVICE
====================================================================================================================*/
.smm-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.smm-hero {
  background: #fff;
  padding-top: 100px;

}

.smm-hero h1 {
  font-size: 40px;
}

.smm-hero p {
  color: #555;
  margin: 15px 0;
}

.smm-btn {
  background: var(--brand-dark);
  color: #fff !important;
  border: 1.5px solid var(--brand-dark);
  display: inline-block;
  padding: 8px 16px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.smm-btn:hover {
  background: transparent;
  color: var(--brand-dark) !important;
}

.smm-services,
.smm-cta {
  padding: 20px 20px;
}

.smm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.smm-card {
  padding: 25px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.smm-card:hover {
  transform: translateY(-5px);
}

.smm-icon {
  font-size: 24px;
  padding: 15px;
  margin-bottom: 15px;
  display: inline-block;
}

.smm-card h3 {
  margin-top: 10px;
}

.smm-card:nth-child(1) .smm-icon {
  color: #e1306c;
  background: #fde8ef;
}

.smm-card:nth-child(2) .smm-icon {
  color: #6366f1;
  background: #eef2ff;
}

.smm-card:nth-child(3) .smm-icon {
  color: #10b981;
  background: #ecfdf5;
}

.smm-card:nth-child(4) .smm-icon {
  color: #f59e0b;
  background: #fff7ed;
}

.smm-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.smm-process-card {
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s;
}

.smm-process-card:hover {
  transform: translateY(-6px);
}

.smm-step {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 15px;
  background: #f1c083;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smm-process-card h3 {
  margin-bottom: 8px;
}

.smm-process-card p {
  font-size: 14px;
  color: #666;
}

.smm-cta p {
  margin: 10px 0;
}

/*====================================================================================================================
# CSS FOR GRAPHIC DESIGN TRAINING
====================================================================================================================*/
.gd-main-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.gd-intro {
  color: #666;
  margin-bottom: 30px;
}

.gd-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.gd-section-title {
  margin-bottom: 20px;
  font-weight: 600;
}

.gd-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  text-align: center;
}

.gd-info-grid h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.gd-info-grid p {
  color: #777;
  font-size: 15px;
}

.tools-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  width: 100%;
}

.gd-tools-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gd-benefit-card {
  text-align: center;
  padding: 15px;
}

.gd-benefit-card i {
  font-size: 24px;
  color: #f1c083;
  margin-bottom: 10px;
}

.gd-benefit-card h5 {
  margin-bottom: 5px;
}

.gd-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gd-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  padding: 10px;
}

.gd-feature i {
  color: #f1c083;
}

.gd-output-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gd-output-grid div {
  background: #f9fafb;
  padding: 12px;
  text-align: center;
}

.gd-trust-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
}

.gd-trust-box span {
  background: #ecfdf5;
  padding: 8px 12px;
  font-size: 14px;
}

.gd-cta-box {
  margin-top: 30px;
}

.gd-cta-box h3 {
  margin-bottom: 10px;
}

.gd-cta-box p {
  color: #666;
  margin-bottom: 15px;
}

.gd-box:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

/*====================================================================================================================
   OUR SERVICES
==================================================================================================================== */
.featured-services .service-item {
  background: var(--surface-color);
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-services .service-item .icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: #fff;
  border: 6px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 10;
  transition: 0.4s ease;
}

.featured-services .service-item .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.featured-services .service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-services .service-item .details {
  padding: 30px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-services .service-item h3 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.featured-services .service-item p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item:hover .img img {
  transform: scale(1.1);
}

.featured-services .service-item:hover .icon {
  background: #fff;
  color: var(--accent-color);
  transform: translateX(-50%) scale(1.1);
}

.featured-services .btn-more {
  display: inline-block;
  background: var(--brand-accent);
  color: #000;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--brand-accent);
  text-decoration: none;
  align-self: center;
  margin-top: 15px;
}

.featured-services .btn-more:hover {
  background: transparent;
  color: var(--brand-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 53, 0.25);
}

.featured-services .btn-more:active {
  transform: translateY(-1px);
}

/*====================================================================================================================
 PORTFOLIO
==================================================================================================================== */
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 5px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 4;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.portfolio .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
  margin-bottom: 5px;
}

.portfolio .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link {
  right: 50px;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

[data-aos] {
  pointer-events: none;
}

.aos-animate {
  pointer-events: auto;
}

.isotope-container {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ========================================================================================================
    Team Member
   ======================================================================================================== */
.team {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team .row {
  display: flex;
  flex-wrap: wrap;
}

.team .team-member {
  width: 100%;
  background: #fff;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 35px rgba(245, 158, 53, 0.2);
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  background-color: #eee;
  height: 350px;
}

.team .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team .team-member:hover .member-img img {
  transform: scale(1.1);
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: -60px;
  right: 0;
  height: 50px;
  background: rgba(245, 158, 53, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s ease-in-out;
}

.team .team-member:hover .social {
  bottom: 0;
}

.team .team-member .social a {
  color: #fff;
  margin: 0 12px;
  font-size: 18px;
  transition: 0.3s;
}

.team .team-member .social a:hover {
  color: #1a1a1a;
  transform: scale(1.2);
}

.team .team-member .member-info {
  padding: 25px 15px;
  flex-grow: 1;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #222;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f59e35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================================================================================
   FOOTER
   ======================================================================================================== */
.footer {
  background: #ffffff;
  color: #000000;
  padding: 5px 0 10px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: linear-gradient(to right, transparent, #f59e35, transparent);
  opacity: 0.4;
}

.footer-logo img {
  max-height: 80px;
  transition: 0.4s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer p {
  color: #000000;
  font-weight: 500;
}

.footer-links {
  font-size: 15px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  margin: 0 10px;
  position: relative;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #f59e35;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 50%;
  bottom: -4px;
  background: #000000;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #f59e35;
  border-color: #000000;
  color: #000;
  transform: translateY(-5px);
}

.footer .small {
  color: #888;
  font-size: 13px;
  letter-spacing: 1px;
}

.mobile-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.mobile-whatsapp i {
  color: #fff;
  line-height: 1;
}

.mobile-whatsapp:hover {
  background: #1ebe5d;
}

/* ========================================================================================================
   Contact Us
   ======================================================================================================== */
.contact .info-item {
  background: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.info-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
  width: 100%;
}

.info-link .info-item:hover {
  background: #dfdcdc;
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.info-link .info-item:hover h3,
.info-link .info-item:hover p,
.info-link .info-item:hover i {
  color: #fff !important;
}

.info-item i.bi-pencil-square {
  font-size: 38px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* ========================================================================================================
  Media Queries
   ======================================================================================================== */
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

@media (min-width: 993px) {
  .services-dropdown:hover .premium-dropdown {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 992px) {

  .section {
    padding: 80px 0;
  }

  /* ================= MOBILE MENU ================= */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: calc(100vh - 70px);
    background: #fff;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 40px 20px;
    gap: 25px;

    overflow-y: auto;
    overflow-x: visible !important;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-links li a {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }

  /* ================= NAVBAR ================= */
  .floating-navbar {
    height: 70px;
    padding: 0 20px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .floating-navbar .cta-wrapper {
    display: none;
  }

  /* ================= 🔥 DROPDOWN FINAL FIX ================= */
/* 🔥 MOBILE DROPDOWN FIX */
.services-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-dropdown {
  position: static !important;
  transform: none !important;

  width: 100%;
  max-width: 320px;

  margin-top: 10px;
  padding: 15px;

  flex-direction: column;
  align-items: center;
  text-align: center;

  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;

  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.services-dropdown.active .premium-dropdown {
  display: flex !important;
}

.dropdown-section {
  width: 100%;
  align-items: center;
  text-align: center;
  padding: 0;
}

.menu-heading {
  text-align: center;
  width: 100%;
}

.dropdown-item {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.dropdown-item div {
  text-align: center;
}

.services-dropdown .premium-dropdown {
  display: none;
}

.services-dropdown.active .premium-dropdown {
  display: flex !important;
  flex-direction: column;
}
  /* ================= OTHER ================= */

  body {
    padding-top: 70px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding: 140px 20px 100px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .enroll-btn {
    display: none;
  }

  .service-details {
    flex-direction: column;
  }

  .mobile-whatsapp {
    display: flex;
  }
}

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

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-services {
    font-size: 16px;
  }

  .btn-rounded {
    padding: 12px 28px;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .team .section-title h2 {
    font-size: 28px;
  }

  .team .team-member {
    margin-bottom: 20px;
  }

  .team .team-member .social {
    height: 60px;
    bottom: 0;
    background: rgba(245, 158, 53, 0.7);
  }

  .wp-btn {
    display: none !important;
  }

  .footer {
    padding: 0px 20px 40px;
  }

  .footer p {
    font-size: 0.9rem;
  }

  .footer-links a {
    display: inline-block;
    margin: 8px 10px;
  }

  .social-links a {
    width: 38px;
    height: 38px;
    background-color: #f59e35;
  }

  .logo img {
    height: 50px;
  }

  .gd-main-title {
    font-size: 26px;
  }

  .gd-info-grid {
    grid-template-columns: 1fr;
  }

  .gd-features-grid {
    grid-template-columns: 1fr;
  }

  .gd-output-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 45px 0;
  }
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 2px 10px 2px;
    padding: 8px 15px;
  }
}