
@charset "utf-8";

/******* Fonts Import Start **********/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
        :root {
            /* Light Theme (Default) */
            --bg-primary: #f8f9fa;
            --bg-secondary: #ffffff;
            --text-primary: #333333;
            --text-secondary: #6c757d;
            --accent-color: #092129;
            --accent-hover: #25ff98;
            --border-color: #e0e0e0;
            --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            --header-bg: #ffffff;
            --footer-bg: #f1f1f1;
            --input-bg: #ffffff;
            --input-border: #ced4da;
            --success-color: #28a745;
            --warning-color: #ffc107;       
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --sidebar-bg: #f8f9fa;
            --sidebar-active: #e9ecef;
        }

        /* Dark Theme */
        [data-theme="dark"] {
            --bg-primary: #f8f9fa;
            --bg-secondary: #ffffff;
            --text-primary: #f8f9fa;
            --text-secondary: #adb5bd;
            --accent-color: #092129;
            --accent-hover: #5dbd60;
            --border-color: #333333;
            --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            --header-bg: #1e1e1e;
            --footer-bg: #1a1a1a;
            --input-bg: #2d2d2d;
            --input-border: #444444;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #17a2b8;
            --sidebar-bg: #1a1a1a;
            --sidebar-active: #2d2d2d;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: var(--text-primary);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button, .btn {
            cursor: pointer;
            border: none;
            border-radius: 4px;
            padding: 8px 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: white;
        }
        .bannerimg{
            width: 70%;
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--accent-color);
            color: var(--accent-color);
        }

        .btn-outline:hover {
            background-color: var(--accent-color);
            color: white;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--header-bg);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            border-radius: 50px;
             mix-blend-mode: multiply;
            width: 40%;

        }

        .header-actions {
            display: flex;
             justify-content: flex-end;
            gap: 15px;
        }

        .notification-btn, .menu-btn, .theme-toggle {
            background: none;
            border: none;
            font-size: 20px;
            color: var(--text-primary);
            cursor: pointer;
            padding: 5px;
        }

        .notification-btn:hover, .menu-btn:hover, .theme-toggle:hover {
            color: var(--accent-color);
        }

        /* Course Header */
        .course-header {
            background-color: var(--bg-secondary);
            padding: 30px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .breadcrumb a {
            color: var(--text-secondary);
        }

        .breadcrumb a:hover {
            color: var(--accent-color);
        }

        .breadcrumb i {
            font-size: 12px;
        }

        .course-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .course-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .course-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars {
            color: #ffc107;
        }

        .course-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        /* Course Content */
        .course-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
            margin: 30px 0;
        }

        /* Course Main */
        .course-main {
            background-color: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .course-tabs {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            background-color: var(--bg-secondary);
        }

        .tab-btn {
            padding: 15px 20px;
            font-weight: 600;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            position: relative;
        }

        .tab-btn.active {
            color: var(--accent-color);
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background-color: var(--accent-color);
        }

        .tab-content {
            padding: 20px;
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        /* Overview Tab */
        .course-description {
            margin-bottom: 30px;
        }

        .course-description h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .course-description p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .what-you-learn {
            margin-bottom: 30px;
        }

        .what-you-learn h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .learn-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }

        .learn-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 5px 0;
        }

        .learn-item i {
            color: var(--accent-color);
            margin-top: 5px;
        }

        /* Curriculum Tab */
        .curriculum-section {
            margin-bottom: 20px;
        }

        .section-header {
            background-color: #092329;
            color: white;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title {
            font-weight: 600;
        }

        .section-meta {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .section-content {
            display: none;
            padding: 0 15px;
        }

        .section-content.active {
            display: block;
        }

        .lesson-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .lesson-title {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lesson-title i {
            color: var(--text-secondary);
        }

        .lesson-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .preview-badge {
            background-color: var(--accent-color);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        /* Reviews Tab */
        .reviews-summary {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .average-rating {
            text-align: center;
        }

        .rating-number {
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
        }

        .rating-stars {
            font-size: 24px;
            color: #ffc107;
            margin: 10px 0;
        }

        .rating-count {
            color: var(--text-secondary);
        }

        .rating-bars {
            flex: 1;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .bar-label {
            width: 30px;
            text-align: right;
        }

        .bar-outer {
            flex: 1;
            height: 8px;
            background-color: var(--border-color);
            border-radius: 4px;
            overflow: hidden;
        }

        .bar-inner {
            height: 100%;
            background-color: #ffc107;
        }

        .bar-percent {
            width: 40px;
            text-align: right;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .review-list {
            margin-top: 20px;
        }

        .review-item {
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .reviewer-name {
            font-weight: 600;
        }

        .review-date {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .review-rating {
            color: #ffc107;
        }

        .review-content {
            line-height: 1.7;
        }

        /* Instructor Tab */
        .instructor-profile {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .instructor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .instructor-info {
            flex: 1;
        }

        .instructor-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .instructor-title {
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .instructor-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .instructor-bio {
            line-height: 1.7;
        }

        /* Course Sidebar */
        .course-sidebar {
            position: sticky;
            top: 90px;
        }

        .course-card {
            background-color: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            margin-bottom: 20px;
        }

        .course-preview {
            position: relative;
        }

        .course-preview img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .preview-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-preview:hover .preview-overlay {
            opacity: 1;
        }

        .play-btn {
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
        }

        .course-info {
            padding: 20px;
        }

        .course-price {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .price-discount {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--text-secondary);
        }

        .discount-percent {
            background-color: var(--danger-color);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
        }

        .enrollment-btn {
            width: 100%;
            padding: 12px;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .money-back {
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .course-includes {
            margin-bottom: 20px;
        }

        .includes-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .includes-item i {
            color: var(--accent-color);
        }

        .course-share {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--sidebar-bg);
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background-color: var(--accent-color);
            color: white;
        }

        /* Related Courses */
        .related-courses {
            margin-top: 40px;
        }

        .related-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .related-card {
            background-color: var(--bg-secondary);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s ease;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .related-thumbnail {
            position: relative;
            height: 150px;
            overflow: hidden;
        }

        .related-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .related-thumbnail img {
            transform: scale(1.05);
        }

        .related-details {
            padding: 15px;
        }

        .related-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .related-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-secondary);
            font-size: 12px;
            margin-top: 10px;
        }

        .related-price {
            font-weight: 600;
            color: var(--accent-color);
            margin-top: 10px;
        }

        /* Mobile Navigation */
        .mobile-nav {
             display: none; 
           
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .nav-item.active {
            color: var(--accent-color);
        }

        .nav-item i {
            font-size: 20px;
            margin-bottom: 5px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100%;
            background-color: var(--bg-secondary);
            z-index: 1001;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            padding: 20px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
        }

        .menu-items {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .menu-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        .menu-item i {
            width: 20px;
            text-align: center;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Video Modal */
        .video-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1002;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .video-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .video-container {
            width: 80%;
            max-width: 900px;
            position: relative;
        }

        .close-video {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .video-iframe {
            width: 100%;
            aspect-ratio: 16/9;
            border: none;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .animate-fadeIn {
            animation: fadeIn 0.5s ease forwards;
        }

        .animate-slideUp {
            animation: slideUp 0.5s ease forwards;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .course-content {
                grid-template-columns: 1fr;
            }

            .course-sidebar {
                position: static;
                margin-top: 30px;
            }

            .related-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .course-title {
                font-size: 24px;
            }
            .logo{
                width: 70%;
            }
            .header-actions, img{
                width: 100%;

            }
            .course-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
             .mobile-nav {
    display: block; 
     margin: 0px 1% 0px 1%;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
  }
}

            .reviews-summary {
                flex-direction: column;
                gap: 20px;
            }

            .instructor-profile {
                flex-direction: column;
                align-items: left;
                text-align: left;
            }

            .instructor-stats {
                justify-content: center;
            }

            .related-grid {
                grid-template-columns: 1fr 1fr;
            }

            body {
                padding-bottom: 60px; /* Space for mobile navigation */
                font-family: "Quicksand", sans-serif;
            }
        

        @media (max-width: 576px) {
            .course-tabs {
                overflow-x: auto;
                white-space: nowrap;
            }

            .tab-btn {
                padding: 15px 10px;
            }

            .learn-list {
                grid-template-columns: 1fr;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Utility Classes */
        .mt-1 { margin-top: 0.25rem; }
        .mt-2 { margin-top: 0.5rem; }
        .mt-3 { margin-top: 1rem; }
        .mt-4 { margin-top: 1.5rem; }
        .mt-5 { margin-top: 3rem; }

        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 1rem; }
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }

        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .text-left { text-align: left; }

        .d-flex { display: flex; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .justify-center { justify-content: center; }
        .flex-column { flex-direction: column; }
        .gap-1 { gap: 0.25rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 1rem; }
    
    
        .client-slider {
  overflow: hidden;
  width: 100%;
 background-color: #43434330;
border-radius: 5px;
}

.slide-track {
  display: flex;
  width: fit-content;
  animation: scroll 40s linear infinite;
}
.wetrained{
    color :#092129;
    font-size: 30px;
    margin-bottom: 15px;


}
.client-img {
  width: 280px;
  height: 100px;
  object-fit: contain;
  
  margin: 0 15px;
  flex-shrink: 0;

  padding: 10px;

 
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-img {
    width: 300px;
    height: 100px;
  }
}

.clear {
  clear: both;
}
img {
  max-width: 100%;
  border: 0px;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
a:focus,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  outline: none;
}
a:hover {
  color: #e73700;
}
h2 {
  margin-bottom: 48px;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
}
h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 36px;
}
button {
  outline: none !important;
}
/******* Common Element CSS End *********/

/* -------- title style ------- */
.line-title {
  position: relative;
  width: 400px;
}
.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}
.line-title::before {
  width: 100%;
  background: #f2f2f2;
}
.line-title::after {
  width: 32px;
  background: #e73700;
}

/******* Middle section CSS Start ******/
/* -------- Landing page ------- */
.game-section {
  padding: 60px 50px;
}
.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}
.game-section .item {
  margin: 0 15px 60px;
  width: 320px;
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.game-section .item.active {
  width: 500px;
  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
}
.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}
.game-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}
.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}
.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}
/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }
  .game-section .item.active {
    width: 400px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }
  .line-title {
    width: 330px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }
  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }
  .game-section .item.active {
    width: 360px;
  }
  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  h2 {
    margin-bottom: 20px;
  }
  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }
  .line-title {
    width: 250px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }
  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }
  .game-section .item.active {
    width: 270px;
    box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
  }
  .game-section .item-desc {
    padding: 0 14px 5px;
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}


.slider-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin-top: 5%;
    margin-bottom: 4%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-color: white;
}

.slide.active {
    opacity: 1;
}

.content-box {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-box h2 {
    color: #666;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: 1px;
}

.award {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.laurel-left, .laurel-right {
    width: 100px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.laurel-left {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M80,100 C80,70 60,40 30,30 C60,50 70,80 60,100 C70,120 60,150 30,170 C60,160 80,130 80,100 Z" fill="%23e6c34a"/></svg>');
    transform: scaleX(-1);
}

.laurel-right {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 200"><path d="M80,100 C80,70 60,40 30,30 C60,50 70,80 60,100 C70,120 60,150 30,170 C60,160 80,130 80,100 Z" fill="%23e6c34a"/></svg>');
}

.award-title {
    padding: 0 20px;
    text-align: center;
}

.award-title h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #333;
    font-weight: 600;
}

.content-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.image-box {
    position: relative;
    width: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

.blurred-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: 1;
    transform: scale(1.1); /* Prevent edges from showing */
}

.image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
   
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}



/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Navigation Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #4CAF50;
    width: 30px;
    border-radius: 10px;
}
.cert{
   
    border-radius: 15px;
    width: 40%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wetrained{
        font-size: 20px;
    }
    .cert{
   
    border-radius: 5px;
    width: 90%;
}
    .slide {
        flex-direction: column;
    }
    
    .content-box {
        padding: 30px;
    }
    
    .award-title h3 {
        font-size: 22px;
    }
    
    .laurel-left, .laurel-right {
        width: 70px;
        height: 140px;
    }
}

