/* Base Styles */
:root {
  --primary-color: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #4338ca;
  --secondary-color: #10b981;
  --secondary-light: #34d399;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --gray-color: #64748b;
  --gray-light: #e2e8f0;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
  --border-radius: 10px;
  --border-radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  /* padding: 14px 28px; */
  padding: 4px 9px !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-hero{
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 16px;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-dark);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-primary:hover:before {
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top: 16px;
}

.btn-secondary:hover {
  background-color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  margin-top: 50px;
}

.section-header:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* Header */
header {
  background-color: rgb(255 255 255);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.logo h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), transparent);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  font-size: 1.05rem;
}

.nav-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: rgb(64, 15, 242);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.3;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--gray-color);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  box-shadow: var(--box-shadow-lg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.services:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(150px, -150px);
}

.services:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(-100px, 100px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
  transition: height 0.4s ease;
}

.service-card:hover:before {
  height: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--primary-light);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.service-card:hover h3:after {
  width: 80px;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 25px;
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.read-more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.read-more:hover:after {
  width: 100%;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Projects Section */
.projects {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.projects:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
  transform: translate(200px, -200px);
}

.projects-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.project-card {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: white;
  padding: 40px;
  transition: transform 0.5s ease;
}

.project-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.project-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

.project-info {
  flex: 1;
}

.project-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  color: var(--dark-color);
}

.project-info h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  border-radius: 3px;
}

.project-info p {
  color: var(--gray-color);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.project-tags span {
  background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(129, 140, 248, 0.1));
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(79, 70, 229, 0.2);
  transition: all 0.3s ease;
}

.project-tags span:hover {
  background: linear-gradient(to right, rgba(79, 70, 229, 0.2), rgba(129, 140, 248, 0.2));
  transform: translateY(-2px);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.prev-btn,
.next-btn {
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--dark-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(79, 70, 229, 0.2);
}

/* Courses Section */
.courses {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.courses:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
  transform: translate(150px, 150px);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.course-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.course-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.course-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.course-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.course-content p {
  color: var(--gray-color);
  margin-bottom: 20px;
  flex-grow: 1;
}
.registration-content{
  margin: 45px 0px 30px 0px;
}
.course-registration-btn{
  margin-top: 11px;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.3;
}

.testimonials-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card {
  min-width: 100%;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  transition: transform 0.5s ease;
  position: relative;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.testimonial-content {
  margin-bottom: 30px;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-color);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid var(--primary-light);
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.author-info p {
  color: var(--gray-color);
  font-size: 0.95rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Team Section */
.team {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.team:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 70%);
  transform: translate(-150px, 150px);
}

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

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px 0;
  background: linear-gradient(to right, rgba(79, 70, 229, 0.9), rgba(129, 140, 248, 0.9));
  transition: all 0.4s ease;
}

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

.team-social a {
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-social a:hover {
  transform: translateY(-5px);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-info p {
  color: var(--primary-color);
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
  background-color: transparent;
  color: white;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.05;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-about h3,
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-about h3:after,
.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.footer-about p {
  margin-bottom: 25px;
  opacity: 0.8;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--primary-color);
  background-color: white;
  transform: translateY(-5px);
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: inline-block;
  padding-left: 15px;
  position: relative;
}

.footer-links ul li a:before,
.footer-services ul li a:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover:before,
.footer-services ul li a:hover:before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  opacity: 1;
  color: var(--primary-light);
  padding-left: 20px;
}

.footer-contact p {
  margin-bottom: 15px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 15px;
  color: var(--primary-light);
  font-size: 1.2rem;
  width: 30px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  opacity: 0.7;
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.1;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-banner p {
  font-size: 1.3rem;
  opacity: 0.9;
  /* max-width: 700px; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Service Detail */
.service-detail {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.service-detail.alt-bg {
  background-color: var(--light-color);
}

.service-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.service-text h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  border-radius: 3px;
}

.service-text p {
  margin-bottom: 25px;
  color: var(--gray-color);
  font-size: 1.1rem;
  line-height: 1.8;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.feature {
  display: flex;
  align-items: center;
}

.feature i {
  color: var(--success-color);
  margin-right: 15px;
  font-size: 1.2rem;
  background-color: rgba(16, 185, 129, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.price-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service-image {
  flex: 1;
  position: relative;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.03);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide-in {
  animation: slideIn 1s ease-in-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .service-content,
  .service-content.reverse,
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .project-card {
    flex-direction: column;
    padding: 30px;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
  }

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

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pricing {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .service-detail {
    padding: 70px 0;
  }

  .service-text h2 {
    font-size: 2rem;
  }
}

.about-content{
  margin-top: 70px;
  margin-bottom: 60px;
}
.about-menu{
  margin-bottom: 0px;
}
.courses-filter-wrapper {
  overflow-x: auto;
  padding: 10px;
}

.courses-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  background-color: #f8fafc;
  padding: 10px;
  border-radius: 12px;
  min-width: max-content;
}

.filter-btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.filter-btn.active {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 600;
  color: #111827;
}

@media (max-width: 600px) {
  .courses-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }
}

/* Container */
.internships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Individual Card */
.internship-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover effect */
.internship-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Header */
.internship-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.internship-header h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #1f2937;
}

/* Badge */
.internship-badge {
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 20px;
  background-color: #e0f7ea;
  color: #0f5132;
  font-weight: 600;
}

.internship-badge.closed {
  background-color: #fcebea;
  color: #842029;
}

/* Details section */
.internship-details {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 15px;
}

.internship-details i {
  margin-right: 6px;
  color: #3b82f6;
}

/* Description */
.internship-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.internship-description h4 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1rem;
  color: #1f2937;
}

.internship-description ul {
  padding-left: 20px;
  margin: 0;
}

.internship-description li {
  margin-bottom: 5px;
}

/* Buttons */
/* a.btn-primary, a.btn-secondary {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.3s;
}

a.btn-primary {
  background-color: #3b82f6;
  color: white;
}

a.btn-primary:hover {
  background-color: #2563eb;
}

a.btn-secondary {
  background-color: #e5e7eb;
  color: #6b7280;
  cursor: not-allowed;
}

a.btn-secondary.disabled {
  pointer-events: none;
  opacity: 0.7;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}*/
.internship-hero-info{
  font-weight: 300;
  font-size: 1rem !important;
} 
.team-section{
  margin-bottom: 70px;
  margin-top: 70px;
}
.intern-testimonials{
  margin-bottom: 30px;
}



a.active.btn-primary {
  color: white;
}



/* contactForm */

.cs-contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

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

.cs-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.cs-contact-info {
  flex: 1;
  min-width: 300px;
}

.cs-contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.cs-contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.cs-info-item {
  display: flex;
  margin-bottom: 20px;
}

.cs-info-icon {
  font-size: 24px;
  color: #4f46e5;
  margin-right: 15px;
}

.cs-info-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #222;
}

.cs-social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #555;
  font-size: 20px;
  transition: color 0.3s;
}

.cs-social-icons a:hover {
  color: #4f46e5;
}

.cs-contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cs-contact-form form {
  display: flex;
  flex-direction: column;
}

.cs-form-group {
  margin-bottom: 20px;
}

.cs-form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

.cs-form-group input,
.cs-form-group select,
.cs-form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.cs-btn-primary {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cs-btn-primary:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .cs-contact-grid {
    flex-direction: column;
  }
}

.logo-img{
  width: 182px;
}


.testimonial-section {
  padding: 100px 0;
  background-color: #f4f4f4;
}

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

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-slider-track {
  display: flex;
  /* width: 300%;  */
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 40px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  margin-bottom: 30px;
}

.testimonial-icon {
  font-size: 2rem;
  color: #463cfe;
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-text p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
}

.testimonial-user img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
}

.user-info h4 {
  margin: 0;
}

.user-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-dot.active {
  background-color: #6c63ff;
  transform: scale(1.2);
}

.success-stories{
  font-size: 2.5rem;
}



/* project Slider */
/* .my-projects-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

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

.my-projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.my-projects-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.my-projects-header p {
  color: #666;
  font-size: 1rem;
}

.my-projects-slider-wrapper {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.my-projects-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.my-project-card {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.my-slide-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
}

.my-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.my-slide-info {
  flex: 1 1 45%;
}

.my-slide-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.my-slide-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.my-slide-tags span {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.my-slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.my-prev-btn,
.my-next-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  color: #4f46e5;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.my-prev-btn:hover,
.my-next-btn:hover {
  background-color: #4f46e5;
  color: #fff;
} */

.my-projects-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

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

.my-projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.my-projects-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.my-projects-header p {
  color: #666;
  font-size: 1rem;
}

.my-projects-slider-wrapper {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.my-projects-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.my-project-card {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 50px rgba(0,0,0,0.05);
}

.my-slide-image {
  flex: 1 1 45%;
  min-width: 220px;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.my-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.my-slide-info {
  flex: 1 1 45%;
}

.my-slide-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.my-slide-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.my-slide-tags span {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.my-slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.my-prev-btn,
.my-next-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #fff;
  color: #4f46e5;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.my-prev-btn:hover,
.my-next-btn:hover {
  background-color: #4f46e5;
  color: #fff;
}

@media (max-width: 400px) {
  .logo-img {
    width: 140px;
  }
  .my-slide-image {
    flex: 1 1 45%;
    min-width: 220px;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
  }
}