



@import url('https://fonts.googleapis.com/css2?family=Alkatra&family=Special+Gothic+Expanded+One&family=Tiro+Bangla:ital@0;1&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tiro Bangla", serif;
}
body {
  background: #fff;
  color: #222;
}

/* ======= NAVBAR ======= */
header {
  background-color: white;
  padding: 1rem 5%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;

}

.nav-links li a {
  text-decoration: none;
  color: #3c3636;
 font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: red;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

/* ======= HERO SECTION ======= */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem 5%;
  background: linear-gradient(145deg, #fff0f0, #ffecec);
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin: 2rem auto;
  max-width: 1300px;
  border: 1px solid #c40710;
}



.text-content {
  flex: 1 1 50%;
  padding-right: 2rem;
}

.text-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

.text-content .highlight {
  color: red;
}

.text-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 1.5s ease;
}

.cta-button {
  background-color: red;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
  animation: fadeInUp 2s ease;
}

.cta-button:hover {
  background-color: darkred;
}

.students {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.avatars {
  margin-top: 0.5rem;
  display: flex;
  gap: 10px;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ======= SLIDESHOW ======= */
.slideshow-container {
  flex: 1 1 40%;
  max-width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 4 rgba(0, 0, 0, 0.1);
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 20px;
}

.fade {
  animation-name: fade;
  animation-duration: 1.2s;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

.dots {
  margin-top: 15px;
  text-align: center;
}



/* ======= ANIMATIONS ======= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 2rem;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: white;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links.active {
    max-height: 450px;
    padding: 1rem 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }
}

/* ====== COUNTER SECTION ====== */
.counter-section {
  background-color: #e50914;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.counter-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.counter-section .subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.counter-box {
  background-color: white;
  color: #e50914;
  border-radius: 12px;
  padding: 2rem;
  min-width: 200px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.counter-box p {
  font-size: 1rem;
  color: #000;
}

.course-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.course-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* ====== COURSE SECTION ====== */
.courses {
  padding: 3rem 2rem;
  text-align: center;
}

.courses h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.courses .subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.course-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.course-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.course-card h3 {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 0.5rem;
}

.course-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.course-card .price {
  font-weight: bold;
  color: #e50914;
  margin-bottom: 0.3rem;
}

.course-card .enrolled {
  font-size: 0.85rem;
  color: #e50914;
  margin-bottom: 1rem;
}

.details-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #e50914;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.details-btn:hover {
  background-color: #c40710;
}


/* ======services  SECTION ====== */


.services-wrapper {
  
  background: #fff;
  padding: 60px 20px;
}

.services-wrapper .services-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-wrapper .services-section h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}

.services-wrapper .services-section h2 span {
  color: red;
}

.services-wrapper .services-section p {
  font-size: 18px;
  color: #444;
  margin-bottom: 40px;
}

.services-wrapper .service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in a row always on large screen */
  gap: 20px;
  justify-items: center;
}

.services-wrapper .service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 4 20px;
  transition: transform 0.3s ease;
  text-align: center;
}

.services-wrapper .service-card:hover {
  transform: translateY(-5px);
}

.services-wrapper .service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.services-wrapper .service-title {
  font-size: 20px;
  font-weight: bold;
  color: red;
  margin-bottom: 10px;
}

.services-wrapper .service-description {
  color: #333;
  font-size: 16px;
}

@media (max-width: 900px) {
  .services-wrapper .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-wrapper .service-cards {
    grid-template-columns: 1fr;
  }
}

/* যে ভাবে স্টুডেন্টদের কাজ নিয়ে দেই */

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-top: 40px;
}

h1 span {
  color: red;
}

p.subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 40px 80px;
}

.video-card {
  background: #f8f8f8;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.8rem;
  }

  .video-card iframe {
    height: 180px;
  }
}


/* আমাদের কোর্স করার সুবিধা গুলো হলো */

.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 10%;
  animation: fadeIn 1s ease-in;
}

.text {
  flex: 1 1 500px;
  animation: slideInLeft 1s ease forwards;
  text-align: center;
}

.text h1 {
  font-size: 2.5rem;
  color: #000;
}

.text h1 span {
  color: red;
}

.text p {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.text ul {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  text-align: left;
  display: inline-block;
}

.text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.text ul li::before {
  content: '\25B6';
  position: absolute;
  left: 0;
  color: black;
}

.image {
  flex: 1 1 400px;
  text-align: center;
  animation: slideInRight 1s ease forwards;
}

.image img {
  max-width: 100%;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


/* আমাদের সম্পর্কে - Digital it */

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  margin-top: 100px;
}
.image-container {
  flex: 1 1 300px;
  animation: slideInLeft 1s ease forwards;
}
.image-container img {
  width: 100%;
  max-width: 400px;
}
.content-container {
  flex: 1 1 400px;
  animation: slideInRight 1s ease forwards;
}
h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h1 span {
  color: red;
}
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
ul {
  list-style: none;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
}
@keyframes slideInLeft {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  0% { transform: translateX(50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .content-container {
    order: -1;
  }
}

.content-container li i{
margin-right: 10px;
}


/* একজন ফ্রিল্যান্সার - Digital it */
.profile-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  animation: fadeInUp 1.2s ease-in-out;
  margin-top: 100px;
}

.text-section {
  flex: 1 1 60%;
  font-family: 'Noto Sans Bengali', sans-serif;
  animation: slideInLeft 1s ease-in-out;
}

.image-section {
  flex: 1 1 35%;
  text-align: center;
  animation: slideInRight 1s ease-in-out;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-section img:hover {
  transform: scale(1.05);
}

.highlighted-link {
  color: red;
  font-weight: bold;
}

.founder {
  font-weight: bold;
  color: red;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    text-align: center;
  }

  .text-section,
  .image-section {
    flex: 1 1 100%;
  }
}

/* === Admission Section Styles === */
/* === Admission Section Styles === */
.admission-section {
  padding: 3rem 2rem;
  font-family: 'Noto Sans Bengali', sans-serif;
  background-color: #fff;
  text-align: center;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Title and Highlight */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title .highlight {
  color: red;
}

/* Subtitle */
.sub-title {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Container for video + text */
.admission-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

/* Responsive YouTube iframe */
.admission-video {
  flex: 1 1 400px;
  max-width: 400px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.admission-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Text Section */
.admission-text {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
}

/* Highlighted red text */
.highlighted-red {
  color: red;
  font-weight: bold;
}

/* Note Text */
.note {
  font-weight: bold;
  color: red;
  margin-top: 1rem;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: Stack on smaller screens */
@media (max-width: 768px) {
  .admission-container {
    flex-direction: column;
    text-align: center;
  }

  .admission-text {
    text-align: center;
  }
}

/* === Contact Section Styling === */
section.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.contact-left img {
  max-width: 100%;
  height: auto;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.contact-right h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.contact-right h1 span {
  color: red;
}

.contact-right p {
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 45%;
}

input, textarea {
  padding: 12px;
  font-size: 1rem;
  border: 2px solid red;
  border-radius: 5px;
  width: 100%;
  outline: none;
}

textarea {
  resize: vertical;
  height: 120px;
}

button {
  padding: 12px;
  font-size: 1rem;
  background-color: red;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: darkred;
}

/* WhatsApp button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  section.contact-wrapper {
    flex-direction: column;
  }

  .form-row input {
    flex: 1 1 100%;
  }
}

/* === marketplace Styling === */
.marketplace-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.marketplace-card {
  border: 1.5px solid red;
  border-radius: 15px;
  padding: 20px 30px;
  width: 140px;
  transition: transform 0.3s ease;
}

.marketplace-card:hover {
  transform: translateY(-5px);
}

.marketplace-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketplace-icon img {
  width: 80px;
  height: 80px;
 
}

.marketplace-name {
  font-weight: bold;
  color: #000;
}



@media (max-width: 600px) {
  .marketplace-card {
    width: 45%;
  }
}

@media (max-width: 400px) {
  .marketplace-card {
    width: 100%;
  }
}


/* === Footar Styling === */
/* General Footer Styles */
.footer-section {
  background-image: linear-gradient(to right, #e50914 ,rgb(34, 34, 34));
  color: rgb(210, 14, 14);
  padding: 40px 20px;
 margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1 1 300px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-quote {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ff4c4c;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Footer Links */
.footer-middle h4,
.footer-right h4 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 2px solid red;
  display: inline-block;
}

.footer-middle ul,
.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-middle ul li,
.footer-right ul li {
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-middle ul li a {
  text-decoration: none;
  color: red;
  font-weight: bold;
}

.footer-middle ul li a:hover {
  text-decoration: underline;
}

.contact-info ul li {
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1 1 100%;
  }

  .social-icons a {
    margin: 0 8px;
  }
}

.bank-details {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.bank-details h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.title-black {
  color: black;
}

.title-red {
  color: red;
}

.subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.bank-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.bank-card {
  flex: 1 1 250px;
  max-width: 280px;
  border: 1px solid red;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  background-color: #fff;
}

.bank-card:hover {
  transform: translateY(-5px);
}

.bank-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 15px;
  display: block;
}

.bank-card h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.bank-card ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #111;
}

.bank-card ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .bank-card {
    max-width: 100%;
  }

  .bank-details h2 {
    font-size: 26px;
  }
}
footer a i{
  color: #f8f8f8;
  
  
}

footer a{
  text-decoration: none;
}


.araf{
  color: #f8f8f8;
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 500px;
  border-top: 2px  solid white;
  background-color: #ea1f29;
  height: 70px;
  align-items: center;
}

.araf a{
  color: white;
}


