:root {
  --primary-color: #1a9b7a;
  --secondary-color: #2db5a5;
  --accent-color: #0d7a65;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --shadow: 0 10px 30px rgba(26, 155, 122, 0.1);
  --shadow-hover: 0 20px 40px rgba(26, 155, 122, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

/* Section reveal animations */
.section-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: static;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-background {
  position: relative;
  background: url('/images/banner-bottom-2.png') no-repeat;
  background-size:100%;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(26,155,122,0.04);
  padding: 40px 0;
  z-index: 1;
}
/* .floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
} */

/* .shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 30%;
  animation: float 9s ease-in-out infinite reverse;
  animation-delay: 1s;
} */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title .title-line{
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: rem;
  line-height: 1.2;
  animation: titleGlow 3s ease-in-out infinite;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 2px var(--primary-color);
  }
  50% {
    text-shadow: 0 0 0 var(--accent-color);
  }
}

.title-line {
  display: block;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 400;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-quote {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.arabic-text {
  font-family: "Amiri", serif;
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.quote-translation {
  font-style: italic;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: slideInUp 1s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Islamic 3D Cube */
.islamic-cube-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  perspective: 1200px;
}

.islamic-cube {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  animation: rotateIslamicCube 20s infinite linear;
  transition: transform 0.3s ease;
}

.islamic-cube:hover {
  animation-play-state: paused;
  transform: scale(1.05);
}

.cube-face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(26, 155, 122, 0.1);
  transition: all 0.3s ease;
}

.cube-face:hover {
  box-shadow: inset 0 0 30px rgba(26, 155, 122, 0.2);
}

.cube-face.front {
  transform: rotateY(0deg) translateZ(100px);
  background: linear-gradient(135deg, #ffffff, #f0f8f5);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(100px);
  background: linear-gradient(135deg, #f0f8f5, #e6f3ed);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(100px);
  background: linear-gradient(135deg, #e6f3ed, #dcf0e5);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(100px);
  background: linear-gradient(135deg, #dcf0e5, #d2eddd);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(100px);
  background: linear-gradient(135deg, #d2eddd, #c8ead5);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(100px);
  background: linear-gradient(135deg, #c8ead5, #bee7cd);
}

.islamic-pattern {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.arabic-text {
  font-family: "Amiri", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(26, 155, 122, 0.3);
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  pointer-events: none;
}

#goals-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
#development-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.goals-section {
  position: relative;
  overflow: hidden;
}
.goals-grid, .goals-section > h3 {
  position: relative;
  z-index: 1;
}

.islamic-banner {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  object-fit: cover;
}

/* .banner-top {
  top: 0;
  height: 80px;
} */

.banner-bottom {
  bottom: 0;
  height: 800px;
}

/* Islamic Geometric Patterns */
.geometric-star {
  width: 60px;
  height: 60px;
  position: relative;
  animation: geometricPulse 3s ease-in-out infinite;
}

.geometric-star::before,
.geometric-star::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.geometric-star::after {
  transform: rotate(45deg);
  opacity: 0.7;
}

.geometric-octagon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  position: relative;
  animation: geometricPulse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.geometric-octagon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.geometric-hexagon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  animation: geometricPulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

.geometric-hexagon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.geometric-diamond {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  transform: rotate(45deg);
  position: relative;
  animation: geometricPulse 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

.geometric-diamond::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: white;
}

.geometric-circle {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: geometricPulse 3s ease-in-out infinite;
  animation-delay: 2s;
}

.geometric-circle::before {
  content: "";
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
}

.geometric-circle::after {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  border: 3px solid var(--primary-color);
  border-style: dashed;
  border-radius: 50%;
  animation: spin 4s linear infinite;
}

.geometric-square {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  position: relative;
  transform: rotate(45deg);
  animation: geometricPulse 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.geometric-square::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 30px;
  height: 30px;
  background: white;
  border: 2px solid var(--primary-color);
}

@keyframes rotateIslamicCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

@keyframes geometricPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.section-visible .section-title {
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* About Section */
.about {
  padding-top:60px;
  padding-bottom: 100px;
  background: var(--white);
}

.about h2.section-title{
  top: -200px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary-color);
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.development-framework {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 20px;
  animation: fadeIn 0.8s ease;
}
.development-framework {
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.development-framework h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.framework-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.framework-item:hover {
  transform: translateY(-5px);
}

.framework-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.framework-item:hover .framework-icon {
  transform: scale(1.15) rotate(-5deg);
}

.framework-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

/* Courses Section */
.courses {
  padding: 100px 0;
  background: var(--light-bg);
}

.courses-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.courses-banner-container {
  position: relative;
  overflow: hidden;
}

.courses-banner {
  position: absolute;
  top: 0;
  width: 70%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.banner-left {
  left: 0;
}

.banner-right {
  right: 0;
  /* transform: scaleX(-1); Flip if you want a mirrored effect */
}

#courses-snow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 600px) {
  .courses-banner {
    width: 50%;
  }
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-btn.active::before,
.tab-btn:hover::before {
  left: 0;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.tab-content {
  display: none;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.course-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.course-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
}

.course-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.course-card h3,
.course-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.course-card ul {
  list-style: none;
}

.course-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.course-card li:hover {
  color: var(--primary-color);
}

.course-card li:last-child {
  border-bottom: none;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-banner-container {
  position: relative;
  overflow: hidden;
}

.services-banner {
  position: absolute;
  top: 500px;
  width: 40%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.banner-leftS {
  transform: rotate(-90deg); 
  left: -200px;
}

.banner-rightS {
  transform: rotate(-90deg); 
  right: -200px;
}


.banner-leftS2 {
  transform: rotate(-90deg); 
  left: -200px;
  top: 1300px;
}

.banner-rightS2 {
  transform: rotate(-90deg); 
  right: -200px;
  top: 1300px;
}


@media (max-width: 600px) {
  .services-banner {
    width: 60px;
  }
}

#services-snow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #eee;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.service-card h3,
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--light-bg) url('/images/bg-1.png') no-repeat center top;
  background-size: cover;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: popIn 0.6s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.2s);
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

.contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
}

/* Contact Form */
.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: slideInRight 0.8s ease;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 155, 122, 0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group .error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #c3e6cb;
  margin-bottom: 1rem;
  display: none;
}

.form-success.show {
  display: block;
  animation: slideInDown 0.5s ease;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-container {
    order: 1;
    padding: 2rem;
  }

  .contact-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
  }
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 150px;
  width: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px rgba(26, 155, 122, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #bbb;
}

/* New styles for updated content */
.knowledge-quote {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--secondary-color);
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.knowledge-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.hadith-source {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: right;
  margin-top: 0.5rem;
}

.philosophy-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  border-top: 4px solid var(--primary-color);
  animation: fadeIn 0.8s ease;
}

.philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
}

.goals-section {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease;
}

.goals-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.goal-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.goal-number {
  background: var(--gradient);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.goal-item:hover .goal-number {
  transform: scale(1.2) rotate(360deg);
}

.goal-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-dark);
}

.framework-description {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  animation: fadeIn 0.8s ease;
}

.framework-description p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.marriage-training {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-color);
  animation: fadeIn 0.8s ease;
}

.marriage-training h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.marriage-training p {
  line-height: 1.7;
  color: var(--text-dark);
  text-align: justify;
}

.course-category {
  margin-bottom: 3rem;
}

.course-category h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  width: 100%;
  animation: slideInDown 0.6s ease;
}

.service-category {
  margin-bottom: 4rem;
}

.service-category h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 15px;
  animation: slideInDown 0.6s ease;
}

/* Stagger animations */
.card:nth-child(1) {
  animation-delay: 0.1s;
}
.card:nth-child(2) {
  animation-delay: 0.2s;
}
.card:nth-child(3) {
  animation-delay: 0.3s;
}

.course-card:nth-child(1) {
  animation-delay: 0.1s;
}
.course-card:nth-child(2) {
  animation-delay: 0.2s;
}
.course-card:nth-child(3) {
  animation-delay: 0.3s;
}
.course-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.framework-item:nth-child(1) {
  animation-delay: 0.1s;
}
.framework-item:nth-child(2) {
  animation-delay: 0.2s;
}
.framework-item:nth-child(3) {
  animation-delay: 0.3s;
}
.framework-item:nth-child(4) {
  animation-delay: 0.4s;
}

.goal-item:nth-child(1) {
  animation-delay: 0.1s;
}
.goal-item:nth-child(2) {
  animation-delay: 0.2s;
}
.goal-item:nth-child(3) {
  animation-delay: 0.3s;
}
.goal-item:nth-child(4) {
  animation-delay: 0.4s;
}
.goal-item:nth-child(5) {
  animation-delay: 0.5s;
}
.goal-item:nth-child(6) {
  animation-delay: 0.6s;
}
.goal-item:nth-child(7) {
  animation-delay: 0.7s;
}
.goal-item:nth-child(8) {
  animation-delay: 0.8s;
}

/* Enhanced Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-content {
    gap: 2rem;
  }

  .islamic-cube-container {
    height: 350px;
  }

  .islamic-cube {
    width: 180px;
    height: 180px;
  }

  .cube-face {
    width: 180px;
    height: 180px;
  }

  .cube-face.front {
    transform: rotateY(0deg) translateZ(90px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(90px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(90px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(90px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(90px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(90px);
  }

  .arabic-text {
    font-size: 22px;
  }

  .geometric-star,
  .geometric-octagon,
  .geometric-hexagon,
  .geometric-diamond,
  .geometric-circle,
  .geometric-square {
    width: 50px;
    height: 50px;
  }

  .geometric-octagon::before,
  .geometric-hexagon::before {
    width: 25px;
    height: 25px;
  }

  .geometric-diamond::before {
    width: 25px;
    height: 25px;
  }

  .geometric-circle::before {
    width: 25px;
    height: 25px;
  }

  .geometric-circle::after {
    width: 35px;
    height: 35px;
  }

  .geometric-square::before {
    width: 25px;
    height: 25px;
  }

  .goals-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Tablets */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
    animation: slideInFromTop 0.3s ease;
  }

  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 0 50px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .title-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .islamic-cube-container {
    height: 300px;
    order: -1;
  }

  .islamic-cube {
    width: 150px;
    height: 150px;
  }

  .cube-face {
    width: 150px;
    height: 150px;
  }

  .cube-face.front {
    transform: rotateY(0deg) translateZ(75px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(75px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(75px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(75px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(75px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(75px);
  }

  .arabic-text {
    font-size: 18px;
  }

  .geometric-star,
  .geometric-octagon,
  .geometric-hexagon,
  .geometric-diamond,
  .geometric-circle,
  .geometric-square {
    width: 40px;
    height: 40px;
  }

  .geometric-octagon::before,
  .geometric-hexagon::before {
    width: 20px;
    height: 20px;
  }

  .geometric-diamond::before {
    width: 20px;
    height: 20px;
  }

  .geometric-circle::before {
    width: 20px;
    height: 20px;
  }

  .geometric-circle::after {
    width: 30px;
    height: 30px;
  }

  .geometric-square::before {
    width: 20px;
    height: 20px;
  }

  .contact-info-centered {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-item {
    padding: 1.5rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .framework-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .courses-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .tab-btn {
    width: 200px;
  }

  .goals-grid {
    grid-template-columns: 1fr;
  }

  .goal-item {
    flex-direction: column;
    text-align: center;
  }

  .goal-number {
    margin: 0 auto 1rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  .course-category h3 {
    font-size: 1.5rem;
  }

  .service-category h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
  }

  #about .section-background {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden;
  }

  #about .section-header {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 18px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(26,155,122,0.07);
    position: relative;
    z-index: 2;
    max-width: 95vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    height: 40px;
  }

  .hero {
    min-height: 85vh;
    padding: 90px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .title-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .islamic-cube-container {
    height: 250px;
  }

  .islamic-cube {
    width: 120px;
    height: 120px;
  }

  .cube-face {
    width: 120px;
    height: 120px;
  }

  .cube-face.front {
    transform: rotateY(0deg) translateZ(60px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(60px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(60px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(60px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(60px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(60px);
  }

  .arabic-text {
    font-size: 16px;
  }

  .geometric-star,
  .geometric-octagon,
  .geometric-hexagon,
  .geometric-diamond,
  .geometric-circle,
  .geometric-square {
    width: 35px;
    height: 35px;
  }

  .geometric-octagon::before,
  .geometric-hexagon::before {
    width: 18px;
    height: 18px;
  }

  .geometric-diamond::before {
    width: 18px;
    height: 18px;
  }

  .geometric-circle::before {
    width: 18px;
    height: 18px;
  }

  .geometric-circle::after {
    width: 25px;
    height: 25px;
  }

  .geometric-square::before {
    width: 18px;
    height: 18px;
  }

  .hero-quote,
  .knowledge-quote {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .arabic-text {
    font-size: 1.1rem;
  }

  .card,
  .course-card,
  .service-card {
    padding: 1.5rem;
  }

  .card-icon,
  .course-icon,
  .service-icon {
    width: 50px;
    height: 50px;
  }

  .card-icon i,
  .course-icon i,
  .service-icon i {
    font-size: 1.2rem;
  }

  .framework-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .framework-item {
    padding: 1rem;
  }

  .framework-icon {
    width: 40px;
    height: 40px;
  }

  .goals-grid {
    gap: 1rem;
  }

  .goal-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .goal-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .courses-tabs {
    gap: 0.3rem;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    width: 160px;
  }

  .course-card h3,
  .service-card h3 {
    font-size: 1.1rem;
  }

  .course-card h4,
  .service-card h4 {
    font-size: 1rem;
  }

  .course-card li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social-links {
    justify-content: center;
  }

  .philosophy-content p,
  .marriage-training p {
    font-size: 1rem;
    text-align: left;
  }

  .knowledge-text {
    font-size: 0.95rem;
  }

  .about,
  .courses,
  .services,
  .contact {
    padding: 30px 0;
  }

  .development-framework,
  .goals-section {
    padding: 2rem 1rem;
  }

  .course-category h3,
  .service-category h3 {
    font-size: 1.3rem;
    padding: 0.8rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .islamic-cube-container {
    height: 220px;
  }

  .islamic-cube {
    width: 100px;
    height: 100px;
  }

  .cube-face {
    width: 100px;
    height: 100px;
  }

  .cube-face.front {
    transform: rotateY(0deg) translateZ(50px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(50px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(50px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(50px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(50px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(50px);
  }

  .arabic-text {
    font-size: 14px;
  }

  .geometric-star,
  .geometric-octagon,
  .geometric-hexagon,
  .geometric-diamond,
  .geometric-circle,
  .geometric-square {
    width: 30px;
    height: 30px;
  }

  .geometric-octagon::before,
  .geometric-hexagon::before {
    width: 15px;
    height: 15px;
  }

  .geometric-diamond::before {
    width: 15px;
    height: 15px;
  }

  .geometric-circle::before {
    width: 15px;
    height: 15px;
  }

  .geometric-circle::after {
    width: 22px;
    height: 22px;
  }

  .geometric-square::before {
    width: 15px;
    height: 15px;
  }

  .tab-btn {
    width: 140px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .btn {
    width: 180px;
    padding: 10px 20px;
  }

  .goal-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 80px 0 20px;
  }

  .islamic-cube-container {
    height: 200px;
  }

  .islamic-cube {
    width: 160px;
    height: 120px;
  }

  .cube-face {
    width: 160px;
    height: 120px;
  }

  .cube-face.front {
    transform: rotateY(0deg) translateZ(80px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(80px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(80px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(80px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(60px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(60px);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .islamic-cube {
    animation: none;
  }

  .floating-shapes .shape {
    animation: none;
  }

  .card:hover,
  .course-card:hover,
  .service-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-visual,
  .floating-shapes,
  .social-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section-title {
    font-size: 18pt;
  }     
}