/* ==========================================
   CloudKampus Learning Centre - Master CSS
   Clean, Organized, No Duplicates bbbbbbbbbbbbbbbbbbbb
   ========================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --primary-blue: #0056b3;
  --accent-orange: #ff6600;
  --light-gray: #f5f5f5;
  --dark-gray: #333;
  --navbar-gradient: linear-gradient(to right, #ffffff 0%, #e8f2fa 100%);
  /* --body-bg: #8797c2; */
}

/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', 'Poppins', sans-serif;
  color: var(--dark-gray);
  background-color: var(--body-bg);
  padding-top: 115px;
}

/* ===== HEADER SECTION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: #8797c2;
  padding: 0.45rem 0;
  width: 100%;
  z-index: 2001;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}

.top-bar .btn {
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Quicksand', sans-serif;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call {
  background-color: #4a6a8f;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/*added from by sezhian*/

.text-gradient 
{ 
    background:linear-gradient(60deg, #5b5bd6, #2ec4b6); -webkit-background-clip:text;  -webkit-text-fill-color: transparent;
}
.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    /*background-color: #007bff;*/
    /*background-color: #5b5bd3;*/
    /*background-color: #526aa8;    color: #fff;*/
    background-color: #fff;
    color: #526aa8;
    border: none;
}

.btn-primary:hover {
 /*   background-color: #0056b3;*/
    background-color:#e8a170;
    color: #fff;
}

.btn-outline-primary {
    background-color: transparent;
   /* color: #007bff;*/
   color: #526aa8;
   /* color: #5b5bd3;*/
    /*border: 1px solid #007bff;*/
    /*border: 1px solid #5b5bd3;*/
      border: 1px solid #526aa8;
}

.btn-outline-primary:hover {
  /*  background-color: #007bff;*/
    background-color:#e8a170;
    color: #fff;
    border: 1px solid #e8a170;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

.btn-outline-danger {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}
/* added till here by Sezhian */
.btn-call:hover {
  background-color: #3d5a7f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-reach {
  background-color: white;
  color: #4a6a8f;
  border: 1px solid white;
}

.btn-reach:hover {
  background-color: #f0f5fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #4a6a8f;
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background: var(--navbar-gradient);
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 2000;
  position: relative;
}

.main-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.08);
}

/* ===== NAVIGATION LINKS ===== */
.navbar-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
  background-color: rgba(0, 86, 179, 0.1);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
  font-weight: 700;
  background-color: #c1d3e6;
  box-shadow: 0 3px 10px rgba(0, 86, 179, 0.2);
}

/* ===== HAMBURGER MENU ===== */
.navbar-toggler {
  border: 2px solid #4a6a8f;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 106, 143, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 106, 143, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin: 60px 0 40px;
}

.section-header h2 {
  color: var(--primary-blue);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-header p {
  color: #2c64b0;
  font-size: 1.5rem;
}

.section-title {
  font-weight: 700;
  /* color: #1f2e3a; */
    color: #2c3e50;

  letter-spacing: 1px;
}

/* ===== BANNER SECTIONS ===== */
.banner-section {
  /* background-color: var(--body-bg) !important; */
  text-align: center;
  padding: 80px 0;
  height: 180px;
}

.banner-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2b3a49;
}

.banner-section p {
  color: #555;
  font-size: 1.1rem;
}

.bannerings {
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('../assets/images/about-banner.jpg') center/cover no-repeat;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(90deg, #003366, #00509e);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

/* ===== CARDS - UNIFIED STYLES ===== */
.card,
.blog-card,
.course-card,
.domain-card,
.event-card,
.media-card,
.gallery-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.blog-card:hover,
.course-card:hover,
.domain-card:hover,
.event-card:hover,
.media-card:hover,
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ===== BLOG CARDS ===== */
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.blog-summary {
  color: #555;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* ===== COURSE CARDS ===== */
.course-card {
  padding: 25px;
  line-height: 17px;
  border: 1px solid #e1e1e1;
}

.course-title {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.2rem;
}

.course-card p {
  color: #555;
  font-size: 0.95rem;
}

.course-desc-card {
  background: #fff;
  transition: 0.3s ease;
  border: 1px solid #e0e0e0;
}

.course-desc-card:hover {
  box-shadow: 0 6px 18px rgba(255, 123, 0, 0.3);
}

/* ===== DOMAIN CARDS ===== */
.domain-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
}

.domain-card h5 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== EVENT CARDS ===== */
.event-card img,
.event-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.event-body {
  padding: 20px;
}

.event-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #704214;
}

.event-date {
  color: #a07956;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 5px;
}

.event-description,
.event-desc {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #555;
}

/* ===== GALLERY CAROUSEL ===== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 0.5rem;
}

.day-card,
.gallery-card {
  flex: 0 0 auto;
  width: 320px;
  border-radius: 15px;
  overflow: hidden;
}

.day-card img,
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.day-card:hover img,
.gallery-card:hover img {
  transform: scale(1.1);
}

.meta {
  padding: 1rem;
  text-align: center;
}

.meta h2 {
  color: #c59d32;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.meta p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ===== CAROUSEL BUTTONS ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-orange);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* ===== OVERLAY EFFECTS ===== */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 86, 179, 0.7);
  opacity: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: all 0.4s ease;
}

.gallery-card:hover .overlay {
  opacity: 1;
}

.overlay h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background-color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: var(--primary-blue) !important;
  border-color: var(--primary-blue) !important;
}

.btn-outline-primary:hover {
  background-color: var(--accent-orange) !important;
  border-color: var(--accent-orange) !important;
  color: #fff !important;
}

.btn-secondary {
  background-color: var(--primary-blue) !important;

  background-color: #ef963a;

  border: none;
  color: #fff !important;
}

.btn-secondary:hover {
  background-color: var(--accent-orange) !important;
  color: #fff !important;
}

.btn-brown,
.btn-success1,
.read-more-btn {
  background-color: var(--accent-orange);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 16px;
  transition: background 0.3s ease;
}

.btn-brown:hover,
.btn-success1:hover,
.read-more-btn:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

/* ===== TEXT UTILITIES ===== */
.text-brown {
  color: var(--primary-blue) !important;
}

.text-gold {
  color: var(--accent-orange) !important;
}

.text-gradient {
  background: linear-gradient(60deg, #5b5bd6, #2ec4b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-brown {
  background-color: var(--primary-blue) !important;
}

/* ===== LINKS ===== */
a {
  color: var(--primary-blue);
  text-decoration: none;
}

a:hover {
  color: var(--accent-orange);
}

.view-link {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
}

.view-link:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 15px;
}

.modal-header {
  background-color: var(--primary-blue);
  color: #fff;
}

/* ===== CATEGORY DIVIDER ===== */
.category-divider {
  width: 100px;
  height: 4px;
  background: #b8926d;
  margin: 10px auto 40px;
  border-radius: 2px;
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 15px;
}




.gallery-carousel-section{


  background-color: #f8f9fb;
}
.stat-item h3 {
  background: linear-gradient(135deg, #ff8c00, #ff6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  body {
    padding-top: 105px;
  }

  .top-bar {
    padding: 0.4rem 0;
  }

  .top-bar .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .top-bar .btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navbar-gradient);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .banner-section h1 {
    font-size: 2rem;
  }

  .day-card,
  .gallery-card {
    width: 260px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    display: none;
  }
}

@media (max-width: 768px) {
  .gallery-card {
    width: 80%;
    margin: 0 auto;
  }
}























































/* lates ful css */


/* =========================================================
   ======================= ABOUT PAGE =======================
   ========================================================= */

.styled-quote {
  background: linear-gradient(135deg, #f3f3f3, #ffffff);
  border-left: 6px solid #6a5acd;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  animation: fadeIn 1.2s ease-in-out;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.5;
}

.quote-author {
  text-align: right;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* =========================================================
   ==================== PLACEMENT SECTION ===================
   ========================================================= */

.placement-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.placement-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 40px;
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 45px 60px;
  justify-items: center;
  align-items: center;
}

.placement-grid img {
  width: 150px;
  height: 80px;
  object-fit: contain;
  padding: 15px 20px;
  border-radius: 14px;

  background: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  
  transition: all 0.35s ease;
  position: relative;
}

.placement-grid img:hover {
  transform: translateY(-10px) scale(1.07);
  box-shadow: 
    0 18px 40px rgba(0, 91, 187, 0.28),
    0 0 35px rgba(255, 122, 0, 0.25);
}

.placement-grid img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0)
  );
  
  transform: skewX(-25deg);
  transition: 0.7s ease;
  pointer-events: none;
}

.placement-grid img:hover::after {
  left: 160%;
}

@media (max-width: 768px) {
  .placement-grid img {
    width: 130px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .placement-grid {
    gap: 30px;
  }
  .placement-grid img {
    width: 110px;
    height: 60px;
  }
}



/* =========================================================
   ======================== BLOG PAGE =======================
   ========================================================= */

body { 
  font-family: 'Poppins', sans-serif;
  background-color:#f8faf9;
}

.banner-section {
  background-color:#8797c2 ;
  padding: 70px 0;
  text-align: center;
}

.banner-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003366;
}

.banner-section p {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin: 50px 0 30px;
}
.section-header p {
  color: #003366 !important;
  font-size: 20px;
}

/* BLOG CARDS */
.blog-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0056b3;
}

.blog-summary {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

/* READ MORE BUTTON */
.read-more-btn {
  background: #ff7b00;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 7px 18px;
  font-size: 0.9rem;
  transition: all .3s ease;
}
.read-more-btn:hover {
  background: #0056b3;
}

/* MODAL */
.modal-content {
  border-radius: 15px;
}
.modal-header {
  background: #0056b3;
  color: #fff;
}



/* =========================================================
   ===================== DOMAIN SECTION =====================
   ========================================================= */

.domain-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  position: relative;
  overflow: hidden;
}
.domain-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(0,91,187,0.1), rgba(255,122,0,0.05));
  filter: blur(80px);
  animation: floatGlow 8s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  0% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(-30px); opacity: 0.8; }
}
.domain-title {
  font-size: 2.4rem;
  color: #002147;
}
.domain-title span {
  color: #ff7a00;
}

.domain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.domain-card {
  width: 260px;
  min-height: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e9f2;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;

  display: flex;
  flex-direction: column;    
  justify-content: flex-start;
}

.domain-card:hover {
  transform: rotateY(8deg) rotateX(6deg) scale(1.04);
  box-shadow: 0 20px 40px rgba(0,91,187,0.25);
}

.domain-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  transform: skewX(-25deg);
  transition: 0.8s;
}
.domain-card:hover::after {
  left: 120%;
}

.domain-card h5 {
  color: #002147;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}

.domain-card p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.domain-card .view-link {
  margin-top: auto;  
  display: inline-block;
  font-weight: 600;
  color: #ff7a00;
  
  text-decoration: none;
  padding-top: 10px;
  transition: 0.3s ease;
}

.domain-card .view-link:hover {
  color: #005bbb;
  text-decoration: underline;
}

.icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #005bbb, #007bff);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 12px rgba(0,91,187,0.25);
}
.domain-card:hover .icon-wrap {
  transform: rotateY(15deg) rotateZ(-10deg) scale(1.1);
  background: linear-gradient(135deg, #ff7a00, #ff9f40);
  box-shadow: 0 8px 20px rgba(255,122,0,0.35);
}

.view-link {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
}
.view-link:hover {
  color: #005bbb;
  text-decoration: underline;
}

.all-courses {
  background: #1a88ff;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 91, 187, 0.35);
}
.all-courses .icon-wrap {
  background: linear-gradient(135deg, #ff7a00, #ff9f40);
  box-shadow: 0 8px 20px rgba(255,122,0,0.4);
}
.all-courses h5, .all-courses p, .all-courses .view-link { color: #fff !important; }

.btn-outline-primary {
  color: #005bbb;
  border-color: #005bbb;
}
.btn-outline-primary:hover {
  background: #005bbb;
  color: #fff;
}
.btn-primary {
  background: #ff7a00;
  border-color: #ff7a00;
}
.btn-primary:hover {
  background: #e56a00;
  border-color: #e56a00;
}

.course-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  border-radius: 15px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-diploma { background: linear-gradient(135deg, #007bff, #0056b3); }
.badge-certification { background: linear-gradient(135deg, #ffcc00, #d4af37); color: #000; }

@media (max-width: 768px) {
  .domain-card { width: 220px; height: auto; }
  .domain-title { font-size: 1.9rem; }
}
@media (max-width: 576px) {
  .domain-grid { gap: 1.2rem; }
  .domain-card { width: 100%; max-width: 320px; margin: 0 auto; }
}



/* =========================================================
   ======================== COURSE PAGE =====================
   ========================================================= */

.text-brown { color: #5a3e2b; }
.blog-card {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.read-more-btn {
  background: #8B4513;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 12px;
  font-size: 0.9rem;
}
.read-more-btn:hover { background: #A0522D; }
aside ul li { line-height: 1.5; }

.course-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--blue, #0056b3);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
}

.btn-custom-primary {
  background-color: var(--orange, #f7931e);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}
.btn-custom-primary:hover {
  background-color: #e67e00;
  color: #fff;
  transform: scale(1.05);
}



/* =========================================================
   ======================== EVENTS PAGE ======================
   ========================================================= */

.hero-section {
  background: white;
  padding: 120px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section  h1 ,p{
  color: #2c3e50;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.features-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #4a7bb7 0%, #3d5a8c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.courses-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.section-title::after {}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.course-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-card img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover img {
  transform: scale(1.1);
}

.course-card .card-body {
  padding: 1.5rem;
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #4a7bb7 0%, #3d5a8c 100%);
  color: white;
}

.testimonial-card {
  background: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  margin: 1rem;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color:#5b7fa3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #d68f4cff 0%, #ff6347 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-custom-primary {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-custom-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
  color: white;
}

.btn-custom-secondary {
  background: white;
  color: #4a7bb7;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
  background: transparent;
  color: orange;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-item h3 {
    font-size: 2rem;
  }
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #ff7a00; 
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: 0.3s ease;
}

.arrow-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff7a00;
  transition: width 0.3s ease;
}

.arrow-link:hover {
  color: #005bbb;
}

.arrow-link:hover::after {
  width: 100%;
  background: #005bbb;
}

.arrow-link:hover::before {
  transform: translateX(6px);
  color: #005bbb;
}

.contact-arrow-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #003366 !important;
  transition: 0.3s ease;
}

.contact-arrow-btn::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  transition: 0.3s ease;
  position: relative;
  top: 1px;
}

.contact-arrow-btn:hover {
  background: #003366 !important;
  color: #fff !important;
}

.contact-arrow-btn:hover::after {
  transform: translateX(6px);
  color: #fff;
}

.contact-arrow-btn:hover::before {
  width: 80%;
}



/* =========================================================
   ======================= LANDING PAGE ======================
   ========================================================= */

.testimonial-section-new {
  padding: 60px 0;
}

.testimonial-wrapper-new {
  background: #27c7efff;
  padding: 25px;
  border-radius: 20px;
}

.testimonial-card-new {
  background: #2072a8ff;
  color: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.big-quote-left,
.big-quote-right {
  position: absolute;
  font-size: 110px;
  font-weight: 800;
  color: white;
  opacity: 0.13;
  z-index: 1;
  line-height: 0.8;
}

.big-quote-left {
  top: -5px;
  left: 15px;
}

.big-quote-right {
  bottom: -20px;
  right: 15px;
}

.profile-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.profile-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #c9ef27;
}

.name {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.role {
  font-size: 0.9rem;
  margin: 0;
  color: #b8b8b8;
}

.testimonial-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e8e8e8;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.rating-box {
  background: white;
  padding: 6px 15px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #000;
  position: relative;
  z-index: 2;
}

.rating-box i {
  color: black;
}
/* Poster block */
.poster-frame {
  width:100%; height:420px; padding:8px;
  background:#fff; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.poster-img {
  max-width:100%; max-height:100%;
  object-fit:contain; border-radius:8px;
  transition:0.2s;
}
.poster-img:hover { transform:scale(1.03); }

/* Share icon on poster */
.share-single-btn {
  position:absolute; top:12px; right:12px;
  width:44px; height:44px;
  border-radius:50%; background:rgba(0,0,0,0.65);
  color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  z-index:50;
}
.share-single-btn:hover { background:rgba(0,0,0,0.85); }

/* SHARE BOX */
#simpleShareBox {
  position:fixed; right:18px; bottom:20px;
  width:240px; background:#fff; border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  padding:12px; display:none; z-index:999999;
}
#simpleShareBox .btn-sm-share { width:100%; margin-bottom:8px; }
#simpleShareBox .title { font-weight:700; text-align:center; }
#simpleShareBox .close-share {
  width:100%; margin-top:10px;
}




/* ===== TOP BAR WITH CALL & REACH US BUTTONS ===== */
/* ===== TOP BAR WITH CALL & REACH US BUTTONS ===== */
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== HEADER (TOP BAR + NAVBAR) ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000; /* ⬆️ Keep both sections above all page content */
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* ===== TOP BAR ===== */
.top-bar {
  padding: 0.45rem 0;
  width: 100%;
  z-index: 2001;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
}

.top-bar .btn {
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  /* font-size: 0.9rem; */
  /* font-weight: 600; */
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call {
  /*background-color: #4a6a8f;*/
  background-color:#526aa8;
  color: white;
}
.btn-call:hover {
  background-color: #3d5a7f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-reach {
  background-color: white;
  color:#526aa8;
  /*color: #4a6a8f;*/
}
.btn-reach:hover {
  background-color: #f0f5fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
  background: linear-gradient(to right, #ffffff 0%, #e8f2fa 100%);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 2000;
  position: relative;
}

.navbar-brand img {
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

/* ===== NAV LINKS ===== */
.navbar-nav {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #0056b3 !important;
  background-color: rgba(0, 86, 179, 0.1);
}
.navbar-nav .nav-link.active {
  color: #0056b3 !important;
  background-color: #c1d3e6;
  box-shadow: 0 3px 10px rgba(0, 86, 179, 0.2);
}

/* ===== HAMBURGER MENU ===== */
.navbar-toggler {
  border: 2px solid #4a6a8f;
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(74, 106, 143, 0.25);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 106, 143, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .top-bar {
    padding: 0.4rem 0;
  }

  .top-bar .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .top-bar .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .navbar-collapse {
    background: linear-gradient(to right, #ffffff 0%, #e8f2fa 100%);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.6rem;
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: center;
  }
}

/* ===== BODY CLEANUP ===== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.sticky-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.btn-call{
  font-size: 14px !important;
  font-weight: 500;

}

.btn-reach{

  font-size: 14px !important;
  font-weight: 500;

}/* Box for logo + tagline */
.brand-logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* left aligned */
  text-decoration: none;
}

/* Logo size */
.brand-logo {
  height: 50px;
  width: auto;
}

/* Tagline text */
.brand-tagline {
  font-size: 12px;
  color: #4a6a8f;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.3px;
  line-height: 1;
}









