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

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #f5f8fb;
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2e45;
}

.navbar a {
  margin-left: 30px;
  text-decoration: none;
  color: #2a2e45;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #007bff;
}

.navbar a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007bff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 770px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  color: white;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Info Section */
.info-section {
  background-color: white;
  padding: 80px 10%;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.info-left {
  flex: 1 1 40%;
}

.info-left h2 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;
}

.info-right {
  flex: 1 1 55%;
}

.info-right p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 600;
}

.stat-item span {
  display: block;
  font-size: 1.1rem;
  color: #777;
  margin-top: 5px;
}

.info-image {
  text-align: center;
  margin-top: 40px;
  padding: 0 10%;
}

.info-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 60%;
}

/* Services Section */
.services-section {
  background-color: rgb(40, 49, 56);
  padding: 80px 10%;
  text-align: center;
}

.services-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.services-heading p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 60px;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.services-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #fff;
  width: 375px;
  padding-bottom: 30px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
  width: 100%;
  height: 250px;
  background-color: #ccc;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  color: rgb(105, 107, 112);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .info-container,
  .services-cards {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .stats {
    gap: 30px;
  }

  .navbar a {
    margin-left: 12px;
  }
}
/* Courses Section */
.courses-section {
  background-color: #fff;
  padding: 80px 10%;
  text-align: center;
}

.courses-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 20px;
}

.courses-heading p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.course-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.course-card {
  background-color: #f9f9f9;
  border: 1px solid #000; /* Thin black border */
  border-radius: 20px;
  overflow: hidden;
  width: 420px; /* Increased size */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 560px; /* Increased height (approx. 12% more than default) */

}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
  width: 100%;
  height: 300px; /* Adjust as per your desired height */
  object-fit: cover;
  display: block;
}


.course-content {
  padding: 20px;
  text-align: left;
}

.course-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.course-content .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2a2e45;
  margin-bottom: 15px;
}

.add-to-bag {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.add-to-bag:hover {
  background-color: #000;
  color: #fff;
}

.testimonial-section {
  background-image: url('review.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 10%;
  color: white;
}

.testimonial-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  border-radius: 20px;
  text-align: center; /* Centers text */
}

.testimonial-row {
  display: flex;
  justify-content: center; /* Center the boxes horizontally */
  flex-wrap: wrap;
  gap: 40px;
}

.testimonial-box {
  width: 45%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center; /* Center text inside each box */
}


.stars {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.profile-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 20px auto 0 auto; /* Centers horizontally and adds top margin */
}


/* Unique profile images */
.profile1 {
  background-image: url('profilepic1.jpg');
}

.profile2 {
  background-image: url('profilepic2.jpg');
}
.web-solutions {
  background-color: #f9f9f9;
  padding: 80px 10%;
}

.web-solutions-text {
  margin-bottom: 60px;
}

.web-solutions-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.web-solutions-text .subheading {
  font-size: 1.2rem;
  color: #777;
  max-width: 500px;
}

.solution-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.solution-image {
  flex: 1 1 45%;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.solution-content {
  flex: 1 1 45%;
}

.solution-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.solution-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}
/* Footer Section */
/* Footer Section */
.footer {
  background-color:rgb(40, 50, 55);
  color: white;
  padding: 60px 10%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.footer-subheading {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-copy {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 20px;
}

.footer-column p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-input {
  width: 100%;
  padding: 10px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

.footer-button {
  padding: 10px 20px;
  background-color: rgb(52, 109, 117);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.footer-button:hover {
  background-color: #e4e4e4;
}



/* Cart Styles */
.cart-wrapper {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1001;
  cursor: pointer;
}

.cart-icon {
  font-size: 1.2rem; /* smaller size */
  position: relative;
  background: white;
  padding: 6px 12px;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


#cart-count {
  font-weight: bold;
  color: #007bff;
  margin-left: 6px;
}

.cart-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}


.cart-dropdown h4 {
  margin-bottom: 10px;
}

.cart-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.cart-dropdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  font-size: 0.95rem;
}


.remove-btn {
  background: transparent;
  border: none;
  color: #dc3545;
  font-size: 1rem;
  margin-left: 8px;
  cursor: pointer;
  float: right;
}
.remove-btn:hover {
  color: #a50000;
}

#cart-total {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.1rem;
}
html {
  scroll-behavior: smooth;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}


.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: inline-block;
  margin: 6px 0;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.policy-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px 20px;
  background: white;
  color: #333;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.policy-container h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #2a2e45;
  text-align: center;
}

.policy-container h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #2a2e45;
}

.policy-container ul {
  padding-left: 20px;
  margin-top: 10px;
}

.policy-container li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-column p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
}

.tick-icon {
  color: #ffffff; /* green tick */
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-links-section {
  background: linear-gradient(to right, #f8f9fa, #eef1f5);
  padding: 70px 10%;
  border-top: 1px solid #ddd;
  animation: fadeInUp 1s ease-out both;
}

.legal-links-container {
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.legal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: slideInLeft 0.8s ease-out both;
}

.legal-links-list .legal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInItem 0.6s ease forwards;
}

.legal-links-list .legal-item:nth-child(1) { animation-delay: 0.3s; }
.legal-links-list .legal-item:nth-child(2) { animation-delay: 0.5s; }
.legal-links-list .legal-item:nth-child(3) { animation-delay: 0.7s; }
.legal-links-list .legal-item:nth-child(4) { animation-delay: 0.9s; }
.legal-links-list .legal-item:nth-child(5) { animation-delay: 1.1s; }

.legal-links-list a {
  color: #2a2e45;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.legal-links-list a:hover {
  color: #007bff;
  transform: translateX(3px);
}

.tick-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4caf50;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.legal-item:hover .tick-circle {
  transform: scale(1.15) rotate(5deg);
}

/* Animations */
@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInItem {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .legal-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .legal-links-list {
    text-align: center;
  }

  .legal-links-list .legal-item {
    justify-content: center;
  }
}
.legal-links-section {
  background-color: #f2f4f8;
  padding: 60px 10%;
  border-top: 1px solid #ddd;
  animation: fadeInUp 1s ease-out both;
}

.legal-links-container {
  max-width: 800px;
  margin: auto;
}

.legal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
  animation: slideInLeft 0.8s ease-out both;
}

.legal-links-list.vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.legal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #333;
  opacity: 0;
  animation: fadeInItem 0.6s ease forwards;
}

.legal-item:nth-child(1) { animation-delay: 0.2s; }
.legal-item:nth-child(2) { animation-delay: 0.4s; }
.legal-item:nth-child(3) { animation-delay: 0.6s; }
.legal-item:nth-child(4) { animation-delay: 0.8s; }
.legal-item:nth-child(5) { animation-delay: 1s; }

.legal-item a {
  color: #2a2e45;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.legal-item a:hover {
  color: #007bff;
  transform: translateX(4px);
}

.tick-circle {
  width: 24px;
  height: 24px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.legal-item:hover .tick-circle {
  transform: scale(1.2) rotate(10deg);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInItem {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .legal-links-container {
    text-align: center;
  }

  .legal-links-list.vertical {
    align-items: center;
  }

  .legal-item {
    justify-content: center;
  }
}

.legal-links-section {
  background-color: #f3f6fb;
  padding: 60px 10%;
  border-top: 1px solid #ddd;
  animation: fadeInUp 1s ease-out both;
}

.legal-links-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.legal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a2e45;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.legal-links-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.legal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  opacity: 0;
  animation: fadeInItem 0.6s ease forwards;
}

.legal-item:nth-child(1) { animation-delay: 0.2s; }
.legal-item:nth-child(2) { animation-delay: 0.4s; }
.legal-item:nth-child(3) { animation-delay: 0.6s; }
.legal-item:nth-child(4) { animation-delay: 0.8s; }
.legal-item:nth-child(5) { animation-delay: 1s; }

.legal-item a {
  color: #2a2e45;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.legal-item a:hover {
  color: #007bff;
  transform: translateY(-2px);
}

.tick-circle {
  width: 24px;
  height: 24px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.legal-item:hover .tick-circle {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInItem {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .legal-links-list.horizontal {
    flex-direction: column;
    align-items: center;
  }

  .legal-item {
    justify-content: center;
  }
}



