/*================================================================
Template Name   : Visarx - Entrepreneurship Program
Description     : MEPSC Entrepreneurship Program Premium Page
Author          : Premium Redesign
Version         : 1.0
==================================================================*/

/*====================
1. GOOGLE FONTS & THEME VARIABLES
======================*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
  /* Core Brand Colors */
  --theme-color: #D4A91C;
  --theme-color2: #FFA704;
  --theme-bg-light: #F6F6F6;
  --theme-color-light: rgba(212, 169, 28, .1);
  --theme-color-light2: rgba(212, 169, 28, .25);
  --body-text-color: #757F95;
  --color-white: #ffffff;
  --color-dark: #03204B;
  --color-green: #15D4C9;
  --color-blue: #0049D0;
  --color-skyblue: #00BFFF;
  --color-yellow: #FBA707;
  --color-gray: #ECECEC;
  --color-red: #F05454;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
  --transition: all .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(0, 0, 0, 0.08);
  --border-info-color2: rgba(0, 0, 0, 0.05);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --border-white-color2: rgba(255, 255, 255, 0.05);
  --footer-bg: #03204B;
  --footer-text-color: #F5FAFF;
  
  /* Premium Extensions */
  --theme-accent: #FFA704;
  --theme-light: #FFF6D6;
  --theme-lighter: #FFFBEE;
  --theme-dark: #B89212;
  --text-dark: #111827;
  --text-light: #4B5563;
  --success: #22C55E;
  --secondary-dark: #1F2937;
}

/*====================
2. BASE RESET & UTILITIES
======================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text-color);
  background: #ffffff;
  overflow-x: hidden;
  width: 100%;
}

.premium-page {
  overflow-x: hidden;
}

/*====================
3. CONTAINER SYSTEM
======================*/
.container {
  width: 100%;
  max-width: 1320px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*====================
4. TYPOGRAPHY
======================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }
h5 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h6 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
}

/*====================
5. BUTTONS
======================*/
.btn-primary-3d {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-accent));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(212, 169, 28, 0.3);
}

.btn-primary-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-primary-3d:hover::before {
  left: 100%;
}

.btn-primary-3d:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 169, 28, 0.4);
  background: linear-gradient(135deg, var(--theme-dark), var(--theme-color));
}

.btn-secondary-outline {
  padding: 16px 40px;
  border: 2px solid var(--theme-color);
  background: transparent;
  color: var(--theme-color);
  border-radius: 50px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
  background: var(--theme-color);
  color: white;
  transform: translateY(-3px);
}

/*====================
6. BREADCRUMB
======================*/
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 1;
  overflow: hidden;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--color-dark);
  opacity: 0.8;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: var(--transition);
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}

/*====================
7. PREMIUM HERO SECTION
======================*/
.hero-premium {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background-3d {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.floating-card {
  position: absolute;
  background: rgba(212, 169, 28, 0.05);
  border: 1px solid rgba(212, 169, 28, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  animation: floatCard 6s ease-in-out infinite;
  max-width: 90vw;
}

.card-1 {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
}

.card-3 {
  width: 240px;
  height: 240px;
  top: 45%;
  right: 4%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  50% { 
    transform: translateY(30px) rotate(3deg); 
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 169, 28, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 167, 4, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LEFT IMAGE STYLES */
.hero-image-single {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 0.8s ease-out;
}

.single-image-frame {
  width: 380px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 25px 70px rgba(212, 169, 28, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, 
    var(--theme-color) 0%, 
    var(--theme-accent) 50%, 
    var(--theme-color) 100%);
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
  background-size: 200% 200%;
}

.single-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  border-radius: 24px;
  z-index: 1;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.single-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  border-radius: 24px;
}

.single-image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-10px);
  box-shadow: 
    0 35px 90px rgba(212, 169, 28, 0.35),
    0 15px 40px rgba(0, 0, 0, 0.15);
}

.single-image-frame:hover img {
  transform: scale(1.05);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RIGHT CONTENT STYLES */
.hero-text-wrapper {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text-wrapper h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-text-wrapper h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-accent));
  border-radius: 2px;
}

.hero-text-wrapper h2 span {
  display: block;
  color: var(--theme-color);
  background: linear-gradient(90deg, var(--theme-color), var(--theme-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.hero-text-wrapper p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* CTA BUTTONS */
.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/*====================
8. COUNTER SECTION
======================*/
.counter-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.counter-wrap {
  background: var(--theme-color);
  padding: 40px 0;
  position: relative;
}

.counter-wrap .shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 80%;
  opacity: .15;
}

.counter-box {
  display: flex;
  gap: 12px;
  position: relative;
  padding: 15px 10px 15px 15px;
  border-radius: 50px 50px 50px 0;
  background: var(--color-white);
  border: 2px solid var(--border-white-color);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.counter-box .icon {
  width: 80px;
  height: 80px;
  line-height: 70px;
  font-size: 35px;
  border-radius: 50px 50px 50px 0;
  text-align: center;
  color: var(--color-white);
  background: var(--theme-color2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-box .icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.counter-box .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--theme-color2);
  font-size: 50px;
  font-weight: 900;
}

.counter-box .unit {
  font-size: 25px;
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1;
  margin: 3px 0 0 3px;
}

.counter-box .title {
  color: var(--color-dark);
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

/*====================
9. SECTION HEADER STYLES
======================*/
.py-100 {
  padding: 100px 0;
  background: white;
}

.py-120 {
  padding: 120px 0;
  background: white;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-100 {
  margin-top: 100px;
}

.section-header {
  margin-bottom: 60px;
}

.site-title-tagline {
  display: inline-block;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
  font-size: 18px;
  background: var(--theme-color);
  border-radius: 50px;
  padding: 2px 15px 2px 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.site-title-tagline::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--theme-color2);
  border-radius: 0 50px 50px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
  z-index: -1;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 38px;
  color: var(--color-dark);
  margin-bottom: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 15px;
  line-height: 1.1;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--theme-color);
  margin-top: 15px;
  border-radius: 2px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/*====================
/*====================
10. ABOUT PROGRAM SECTION
======================*/
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.about-image-group {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 25px 70px rgba(212, 169, 28, 0.25),
    0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, 
    var(--theme-color) 0%, 
    var(--theme-accent) 50%, 
    var(--theme-color) 100%);
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
  background-size: 200% 200%;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    transparent 100%);
  border-radius: 24px;
  z-index: 1;
  pointer-events: none;
}

.primary-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  border-radius: 24px;
  display: block;
}

.image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 90px rgba(212, 169, 28, 0.35),
    0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.about-text-content {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--theme-light);
}

.about-text-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--theme-color),
    var(--theme-accent)
  );
}

.content-title {
  color: var(--color-dark);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
}

.content-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-accent));
  border-radius: 2px;
}

.content-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.content-text:last-child {
  margin-bottom: 0;
}

/* Feature items below */
.feature-area {
  padding: 50px 0 0 0;
}

.feature-wrapper {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding-bottom: 60px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 0px 40px 40px 40px;
  padding: 30px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 169, 28, 0.2);
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 0;
  border-bottom: 3px solid var(--theme-color);
  border-radius: 50px;
}

.feature-item .count {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 45px;
  line-height: 35px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--theme-color);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 0 50px 50px 50px;
  margin-bottom: 25px;
  z-index: 1;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--theme-color2);
  border-radius: 0 50px 50px 50px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.feature-content {
  flex-grow: 1;
  padding-top: 10px;
}

.feature-content h4 {
  color: var(--color-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-content p {
  color: var(--body-text-color);
  margin-top: 10px;
  line-height: 1.6;
}

/*====================
RESPONSIVE DESIGN
======================*/

/* Tablet */
@media (max-width: 992px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-group {
    order: 1;
  }
  
  .about-text-content {
    order: 2;
    padding: 40px 30px;
  }
  
  .feature-item {
    padding: 25px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section .about-content {
    gap: 30px;
  }
  
  .image-wrapper {
    border-radius: 20px;
  }
  
  .image-wrapper::before {
    inset: -1px;
  }
  
  .primary-image img {
    border-radius: 20px;
  }
  
  .about-text-content {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .content-title {
    padding-bottom: 10px;
  }
  
  .content-title::after {
    width: 40px;
    height: 3px;
  }
  
  .feature-item {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 65px;
  }
  
  .feature-icon img {
    width: 40px;
    height: 40px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-text-content {
    padding: 25px 15px;
  }
  
  .content-title {
    font-size: 1.5rem;
  }
  
  .feature-item {
    padding: 15px;
    border-radius: 0 30px 30px 30px;
  }
  
  .feature-item .count {
    font-size: 35px;
    left: 20px;
    bottom: 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    line-height: 55px;
    margin-bottom: 15px;
  }
  
  .feature-icon img {
    width: 35px;
    height: 35px;
  }
  
  .feature-content h4 {
    font-size: 1.125rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .about-section .about-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }
  
  .about-text-content {
    padding: 60px 50px;
  }
}

/*====================
11. FEATURE AREA
======================*/
.feature-area {
  position: relative;
}

.feature-wrapper {
  margin-top: 50px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 0px 40px 40px 40px;
  padding: 20px;
  position: relative;
  transition: var(--transition);
  height: 100%;
  flex-direction: column;
  padding-bottom: 60px;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 0;
  border-bottom: 3px solid var(--theme-color);
  border-radius: 50px;
}

.feature-item .count {
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 45px;
  line-height: 35px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--theme-color);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color2);
  border-radius: 0 50px 50px 50px;
  margin-bottom: 18px;
  z-index: 1;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--theme-color2);
  border-radius: 0 50px 50px 50px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.feature-content {
  flex: 1;
}

.feature-content h4 {
  color: var(--color-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--body-text-color);
  margin-top: 10px;
}

/*====================
12. BENEFITS SECTION
======================*/
.benefits-section {
  background: var(--theme-lighter);
}

.benefits-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-tile {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--theme-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--theme-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-tile:hover::before {
  opacity: 0.1;
}

.benefit-tile:hover {
  border-color: var(--theme-color);
  box-shadow: 0 20px 50px rgba(212, 169, 28, 0.2);
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 25px;
  display: block;
}

.benefit-tile h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-tile p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-footer {
  padding-top: 20px;
  border-top: 2px solid var(--theme-light);
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-dark);
  letter-spacing: 1px;
}

/*====================
13. FUTURE SKILLS SECTION
======================*/
.future-skills-section {
  background: #f8f9fa;
}

.future-skills-section .about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 70px;
}

.future-skills-section .about-text-content {
  flex: 1;
  min-width: 300px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.future-skills-section .about-image-group {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.future-skills-section .primary-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skills-container {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.skills-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 100%;
}

.skills-box h3 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 35px;
  color: #111;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.skill-item {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.skill-item:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 169, 28, 0.1);
}

.skill-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.skill-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.skill-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.skills-row-2 {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.skill-item-large {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  width: 280px;
  transition: all 0.3s ease;
}

.skill-item-large:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 169, 28, 0.1);
}

/*====================
14. WOMEN EMPOWERMENT SECTION
======================*/
.enroll-section {
  background: var(--theme-lighter);
}

.enroll-section .about-content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.enroll-section .about-image-group {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.enroll-section .primary-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.enroll-section .about-text-content {
  flex: 1.2;
  min-width: 300px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.enroll-section .content-title {
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/*====================
15. SKILL DEVELOPMENT SECTION - COMPACT VERSION
======================*/
.skill-dev-section {
  background: var(--theme-lighter);
}

.skill-dev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.skill-dev-card {
  background: white;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-light);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.skill-dev-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-accent));
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.skill-dev-card:hover::before {
  transform: translateY(0);
}

.skill-dev-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.skill-dev-card:hover::after {
  left: 100%;
}

.skill-dev-card:hover {
  border-color: var(--theme-color);
  box-shadow: 0 10px 30px rgba(212, 169, 28, 0.15);
  transform: translateY(-5px);
}

.skill-dev-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--theme-light), white);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--theme-light);
}

.skill-dev-card:hover .skill-dev-icon {
  background: linear-gradient(135deg, var(--theme-color), var(--theme-accent));
  transform: rotate(5deg) scale(1.05);
  border-color: transparent;
}

.skill-dev-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(24%) sepia(97%) saturate(626%) hue-rotate(347deg) brightness(94%) contrast(90%);
}

.skill-dev-card:hover .skill-dev-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

.skill-dev-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-dev-card p {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  min-height: 3.9em;
}

.skill-dev-card .btn-primary-3d {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-accent));
  color: white;
  border: none;
  width: auto;
  min-width: 120px;
}

.skill-dev-card .btn-primary-3d span {
  color: white !important;
}

.skill-dev-card .btn-primary-3d:hover {
  background: linear-gradient(135deg, var(--theme-dark), var(--theme-color));
}

.skill-dev-card .arrow {
  transition: transform 0.3s ease;
}

.skill-dev-card .btn-primary-3d:hover .arrow {
  transform: translateX(3px);
}

/* Hover effects for the entire card */
.skill-dev-card:hover h5 {
  color: var(--theme-color);
}

/* Grid variations for different screen sizes */
@media (min-width: 768px) {
  .skill-dev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .skill-dev-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .skill-dev-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .skill-dev-card {
    padding: 30px 25px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .skill-dev-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .skill-dev-card {
    padding: 20px 15px;
  }
  
  .skill-dev-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
    margin-bottom: 12px;
  }
  
  .skill-dev-card h5 {
    font-size: 0.9375rem;
    min-height: 2.8em;
  }
  
  .skill-dev-card p {
    font-size: 0.75rem;
    min-height: 4.5em;
  }
  
  .skill-dev-card .btn-primary-3d {
    padding: 8px 16px;
    font-size: 0.8125rem;
    min-width: 110px;
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .skill-dev-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 15px;
  }
  
  .skill-dev-card {
    padding: 25px 20px;
  }
  
  .skill-dev-card h5 {
    min-height: auto;
  }
  
  .skill-dev-card p {
    min-height: auto;
  }
}

/* Add subtle pattern to background */
.skill-dev-section {
  position: relative;
  overflow: hidden;
}

.skill-dev-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 169, 28, 0.03) 2px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(212, 169, 28, 0.03) 2px, transparent 2px);
  background-size: 80px 80px;
  z-index: 0;
}

.skill-dev-section > .container {
  position: relative;
  z-index: 1;
}
/*====================
16. TESTIMONIALS SECTION
======================*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 25px;
  padding: 40px 35px;
  border-left: 6px solid var(--theme-color);
  box-shadow: 0 15px 40px rgba(212, 169, 28, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 120px;
  color: var(--theme-light);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-card:hover {
  box-shadow: 0 25px 60px rgba(212, 169, 28, 0.2);
  transform: translateY(-8px);
  border-left-color: var(--theme-accent);
}

.testimonial-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--theme-light);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
  transform: scale(1.1);
}

.testimonial-info h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--theme-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.stars {
  font-size: 14px;
  color: #FFD700;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-result {
  padding-top: 20px;
  border-top: 2px solid var(--theme-light);
  font-size: 14px;
  font-weight: 800;
  color: var(--success);
  letter-spacing: 1px;
}

/*====================
17. CTA SECTION
======================*/
.cta-premium {
  background: var(--theme-color);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-background-3d {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  opacity: 0.1;
  border-radius: 50%;
  animation: floatCard 8s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: -50px;
  animation-delay: 4s;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: black;
}

.cta-content h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: black;
}

.cta-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-contact-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-contact-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-value:hover {
  color: var(--theme-light);
  transform: translateX(5px);
}

/*====================
18. RESPONSIVE DESIGN
======================*/

/* Tablet Devices */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text-wrapper h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-text-wrapper p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-group {
    justify-content: center;
  }
  
  .single-image-frame {
    width: 320px;
    height: 420px;
  }
  
  .benefits-grid-premium,
  .skill-dev-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  /* Fix horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /** {*/
  /*  max-width: 100% !important;*/
  /*}*/
  
  /* Hero Section */
  .hero-premium {
    padding: 60px 0;
  }
  
  .hero-text-wrapper h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .single-image-frame {
    width: 280px;
    height: 360px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary-3d,
  .btn-secondary-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 30px;
  }
  
  /* Counter Section */
  .counter-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .counter-box .icon {
    margin: 0 auto 15px;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-text-content {
    padding: 30px 20px;
  }
  
  /* Skills Grid */
  .skills-grid {
    grid-template-columns: 1fr !important;
  }
  
  .skills-row-2 {
    flex-direction: column;
    align-items: center;
  }
  
  .skill-item-large {
    width: 100%;
    max-width: 280px;
  }
  
  /* Benefits & Cards */
  .benefits-grid-premium,
  .skill-dev-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-tile,
  .skill-dev-card,
  .testimonial-card {
    padding: 30px 20px;
  }
  
  /* Floating Cards */
  .floating-card,
  .cta-shape {
    max-width: 85vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  
  .card-1,
  .card-2,
  .card-3 {
    display: none; /* Hide on mobile for better performance */
  }
  
  /* CTA Section */
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-contact-card {
    padding: 30px 20px;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  /* General Padding */
  .py-100 {
    padding: 70px 0;
  }
  
  .py-120 {
    padding: 80px 0;
  }
  
  .mb-80 {
    margin-bottom: 60px;
  }
  
  /* Fix inline styles */
  div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-text-wrapper h2 {
    font-size: 1.5rem;
  }
  
  .single-image-frame {
    width: 240px;
    height: 320px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .site-title-tagline {
    font-size: 14px;
    padding: 2px 10px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-content h4 {
    font-size: 1rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-content {
    max-width: 1400px;
  }
}

/* Print Styles */
@media print {
  .hero-premium,
  .cta-premium {
    page-break-inside: avoid;
  }
  
  .btn-primary-3d,
  .btn-secondary-outline {
    border: 1px solid #000;
    color: #000;
    background: none;
  }
}
/* ========== MOBILE FIXES FOR HERO SLIDER & TESTIMONIALS ========== */
@media (max-width: 768px) {
    /* Hero Section Fix */
    .hero-single {
        min-height: 500px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        display: flex;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        padding: 20px 15px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-btn .theme-btn,
    .hero-btn .theme-btn2 {
        display: inline-block;
        margin: 5px;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Testimonials Section Fix */
    .testimonial-item {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 25px 20px !important;
        box-sizing: border-box;
    }

    .testimonial-slider.owl-carousel .owl-item {
        width: 100% !important;
    }

    .testimonial-area .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .testimonial-area .site-title {
        font-size: 24px;
    }

    .testimonial-author-img {
        width: 70px;
        height: 70px;
    }

    .testimonial-author-info h4 {
        font-size: 18px;
    }

    .testimonial-author-info p {
        font-size: 14px;
    }

    .testimonial-quote p {
        font-size: 15px;
    }

    /* General mobile overflow fix */
    body, .container {
        overflow-x: hidden;
    }
}
/* ========== MOBILE HERO SECTION FIX ========== */
@media (max-width: 768px) {
    /* Fix for hero slider on mobile */
    .hero-section {
        overflow: hidden;
    }
    
    .hero-slider .owl-stage-outer {
        overflow: visible;
    }
    
    .hero-single {
        min-height: 550px !important;
        padding-top: 100px !important;
        padding-bottom: 100px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure the overlay gradient works properly */
    .hero-single::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom right, rgba(2, 81, 112, 1) 0%, rgba(55, 173, 184, 0) 80%);
        z-index: -1;
    }
    
    /* Center and adjust content */
    .hero-single .hero-content {
        text-align: center;
        padding: 20px 15px;
    }
    
    .hero-single .hero-content .hero-sub-title {
        font-size: 16px !important;
        margin: 0 auto 15px !important;
        padding: 5px 15px !important;
        display: inline-flex !important;
        justify-content: center;
        white-space: nowrap;
    }
    
    .hero-single .hero-content .hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin: 15px 0 !important;
    }
    
    .hero-single .hero-content .hero-title span {
        display: block;
        -webkit-text-stroke: 2px var(--color-white);
    }
    
    .hero-single .hero-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
    
    .hero-single .hero-content .hero-btn {
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 20px !important;
        flex-wrap: wrap;
    }
    
    .hero-single .hero-content .hero-btn .theme-btn,
    .hero-single .hero-content .hero-btn .theme-btn2 {
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-width: 140px;
    }
    
    /* Fix for owl carousel navigation on mobile */
    .hero-slider .owl-nav {
        display: none !important; /* Hide navigation arrows on mobile for better experience */
    }
    
    .hero-slider .owl-dots {
        display: block !important;
        bottom: 20px !important;
    }
    
    .hero-slider .owl-dots .owl-dot span {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Extra small devices (phones, 480px and below) */
@media (max-width: 480px) {
    .hero-single {
        min-height: 500px !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    .hero-single .hero-content .hero-title {
        font-size: 26px !important;
    }
    
    .hero-single .hero-content .hero-sub-title {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }
    
    .hero-single .hero-content p {
        font-size: 14px !important;
    }
    
    .hero-single .hero-content .hero-btn {
        flex-direction: column;
        align-items: center;
        gap: 10px !important;
    }
    
    .hero-single .hero-content .hero-btn .theme-btn,
    .hero-single .hero-content .hero-btn .theme-btn2 {
        width: 100%;
        max-width: 200px;
    }
}

/* Fix for tablet devices */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-single {
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    .hero-single .hero-content .hero-title {
        font-size: 42px !important;
    }
}