* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #ffffff;
    box-shadow: 0 3px 2px rgba(12, 12, 12, 0.1);
    position: relative;
    z-index: 10;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1px;
  }
  
  .logo img {
    width: 120px;
    height: 90px;
  }
  
  .brand {
    font-family: 'Stencil', 'Impact', sans-serif;
    font-size: 2rem;
    color: #1b1b1b;
  }
  
  nav {
    display: flex;
    gap: 1.5rem;
  }
  
  nav a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #393939;
    transition: color 0.3s ease;
    margin-right: 10px;
  }
  
  nav a:hover {
    color: #000;
  }
  
  .actions {
    display: flex;
    gap: 0.75rem;
  }
  
  .actions a {
    text-decoration: none;
  }
  
  .actions button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .login-btn {
    background: transparent;
    font-size: 1.3rem;
    color: #161549;
    font-weight: bold;
    padding: 0.6rem 0.6rem;
  }
  
  .register-btn {
    background: #161549;
    font-size: 1.3rem;
    color: white;
    padding: 0.6rem 0.6rem;
  }
  
  
  
  /* === E-Courses Dropdown === */
  .dropdown {
    position: relative;
  }
  
  .dropdown:hover .dropdown-menu {
    display: grid;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.2rem 0.6rem;
    min-width: 520px;
    border-radius: 6px;
    z-index: 100;
  }
  
  .dropdown-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
  }
  
  .dropdown-menu a {
    padding: 0.5rem;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }
  
  
  /* === Internship Dropdown === */
  .dropdownn {
    position: relative;
  }
  
  .dropdownn:hover .dropdownn-menu {
    display: block;
  }
  
  .dropdownn-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 180px;
    border-radius: 6px;
    z-index: 100;
  }
  
  .dropdownn-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.3s ease;
  }
  
  .dropdownn-menu a:hover {
    background-color: #f5f5f5;
  }
  
  
  /* === Common Styles === */
  .arrow {
    font-size: 0.7rem;
    margin-left: 6px;
    vertical-align: middle;
  }
  
  .e-courses-link {
    background: #161549;
    color: white;
    margin-top: -10px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.5;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-decoration: none;
  }
  
  .e-courses-link:hover {
    background: transparent;
    color: #161549;
    border: 1px solid #161549;
  }
  
  .internship-link {
    color: #161549;
    padding: 0.4rem 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
  }

/* === Toggle Button (Hamburger Menu) === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #161549;
  cursor: pointer;
}

/* Hero Section */
.hero {
    background: #222c43;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    margin: 0;
    font-size: 30px;
}

.hero p {
    font-size: 18px;
}

/* Quote Section */
.quote-section {
    display: flex;
    justify-content: center;
    padding: 40px;
    background: #f4f4f4;
}

.quote-section p {
    font-size: 18px;
   
}

.quote {
    text-align: center;
    max-width: 400px;
    margin: 0 20px;
}

.quote img {
    width: 340px;
    height: 280px;
    border-radius: 50%;
    margin-bottom: 10px;
}



/* Get Started Section */
.get-started-section {
    text-align: center;
    padding: 30px;
}
.get-started-section h3 {
    display: inline-block; /* Allows applying margin */
    margin-left: 60px; /* Adjust this value as needed */
    font-size: 25px;
    color:#161549;
}

/* Button Container */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* Button Styles */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    min-width: 200px;
}

/* Different Button Colors */
.btn-brown {
    background-color: rgb(148, 125, 98) !important; /* Dark Brown */
}

.btn-green {
    background-color: #222c43 !important; /* Green */
}

.btn-blue {
    background-color: #222c43 !important; /* Blue */
}



/* Icon Styling */
i {
    font-size: 18px;
}


.video-container {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

.responsive-video {
    width: 100%;
    height: auto; 
    object-fit: contain; 
}

section.banner-section {
    background-color:#222c43;
    color: #ffffff;
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin: 20px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 200px;
    transition: box-shadow 0.3s ease-in-out;
}

.banner-content h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.banner-content p {
    font-size: 1.1rem;
}

.banner-button a {
    text-decoration: none;
    display: inline-block;
}

.banner-button button {
    background-color: #f4f4f4;
    color: #303030;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, box-shadow 0.3s ease-in-out;
}

.banner-button button i {
    margin-left: 10px;
}

.banner-button button:hover {
    background-color: #f4f4f4; 
    box-shadow: 0px 5px 15px rgba(20, 35, 146, 0.15);
}


.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
   
}

p.subtitle {
    
    margin-bottom: 40px;
}

/* Grid Layout */
.plan-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Card Styles */
.plan {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan-header {
    background-color: #222c43;
    color: white;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px -20px;
}

.subtext {
    color: #777;
    font-size: 0.9em;
}

.price {
    font-size: 1.5em;
    margin: 10px 0;
    color: #333;
}

.price small {
    font-size: 0.8em;
    color: #777;
}

.button {
    display: inline-block;
    background-color: rgb(148, 125, 98);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

.button:hover {
    background-color: #555;
}


/* Announcement Section */
.announcement {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #5a4f44; /* Nude/Bold tone */
    font-family: 'Playfair Display', serif;
    margin: 40px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.8);
    animation: zoomFadeIn 1.5s ease-in-out forwards;
}

/* Styling for "Coming Soon!" text */
.coming-soon {
    font-size: 3rem; /* Bigger font for emphasis */
    font-weight: 900; /* Extra bold */
    margin-top: 10px;
    color: #2f265b; /* Slightly darker tone */
}

/* Smooth zoom + fade effect */
@keyframes zoomFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.swiper {
    width: 97vw;  /* Reduced width */
    height: 600px; /* Reduced height */
    position: relative;
    margin-bottom: 10px;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.deal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 120px; /* Reduced padding */
    color: white;
    text-align: left;
    background: none;
}

.deal .content {
    z-index: 1;
    max-width: 350px; /* Slightly reduced width */
    color: #2e2e2e;
}

.deal .title {
    font-size: 3rem; /* Reduced font size */
    margin-bottom: 0.3rem;
    color: #222c43 ;
}

.deal p {
    font-size: 1.2rem; /* Reduced font size */
    margin-bottom: 0.8rem;
    color: #222c43 ;
    font-weight: 700;
}

.deal .btn {
    padding: 10px 20px; /* Reduced width */
    background-color: rgb(148, 125, 98);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem; /* Kept font size the same */
    text-align: center;
    display: inline-block;
}

.deal .btn:hover {
    background-color: #222c43 ;
}

/* Course Section */
.course-selection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #222c43, #4b698a);
    color: white;
    padding: 60px; /* Slightly increased padding */
    gap: 30px;
    margin-bottom: 20px;
    border-radius: 10px; /* Optional: Adds smooth edges */
    flex-wrap: nowrap;
}

/* Left Content */
.course-content {
    max-width: 50%;
}

.course-content h2 {
    font-size: 36px; /* Increased */
    font-weight: bold;
    margin-bottom: 15px;
}

.course-content p {
    font-size: 18px; /* Increased */
    line-height: 1.8;
}

/* Category Buttons */
.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.course-category {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 17px; /* Increased */
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.course-category:hover {
    background-color: white;
    color: #082b52;
}

/* Right Image */
.image-container {
    flex: 1;
    max-width: 50%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50% 0 0 50%;
    object-fit: cover;
}

/* Overlay Effect */
.image-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/*Benefits certificate*/


  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
  }
  .text-section {
    max-width: 50%;
  }
  .text-section h2 {
    color:#222c43;
    font-size: 30px;
    margin-bottom: 20px;
    margin-left: 55px;
  }
  .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .benefit-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .benefit-item h3 {
    color:#222c43;
    margin: 0;
    font-size: 24px;
  }
  .benefit-item p {
    margin: 5px 0 0 0;
    color: #292929;
    font-size: 18px;
  }
  .certificate-image img {
    width: 100%;
    max-width: 500px;
    border: 4px solid #222c43;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

















  .footer {
    background-color:#00072D;
    color: #fff;
    padding: 40px 20px;
   
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column {
    flex: 1 1 30%;
    margin: 20px;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
    color: #fff;
  }
  

  .contact-section p {
    margin: 6px 0;
    color: #ccc;
  }
  
  .contact-section strong {
    color: #fff;
  }
  
  .social-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  margin-top: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

  

  .footer-bottom-full {
    background-color: #00072D;
    color: #ccc;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff;
  }
  
  .footer-bottom-left {
    max-width: 60%;
    flex: 1 1 300px;
  }
  
  .policy-links {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .policy-links a {
    color: white;
    text-decoration: none;
    margin-right: 8px;
  }
  
  .policy-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .policy-links span {
    margin: 0 4px;
    color: white;
  }
  
  .footer-bottom-left .copyright {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-bottom-right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  .app-button {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
    background-color: transparent;
  }
  
  .app-icon {
    width: 30px;  /* Adjust size of the icon */
    margin-right: 10px;  /* Space between the icon and text */
    vertical-align: middle;  /* Align icon with text */
}

  .app-button i {
    font-size: 18px;
    margin-right: 8px;
  }
  
  .app-button:hover {
    background-color: #333;
  }
  
  .logoo {
    width: 150px;  /* Adjust as needed */
    height: auto;  /* Maintains aspect ratio */
  }
  

/* ---------------------- MEDIA QUERIES ---------------------- */

/* Mobile (Android/iOS) */
@media (max-width: 768px) {
    header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .logo-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #161549;
    cursor: pointer;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  nav, .actions {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    gap: 1rem;
  }

  nav.active, .actions.active {
    display: flex;
  }

  nav a, .e-courses-link, .internship-link {
    padding: 0.6rem 1rem;
    text-align: left;
    width: 100%;
  }

  .dropdown-menu, .dropdownn-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdownn:hover .dropdownn-menu {
    display: block;
  }

  .login-btn, .register-btn {
    width: 100%;
    text-align: left;
  }

    .swiper {
        height: 400px;
    }

    .deal {
        padding-left: 20px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .deal .content {
        max-width: 280px;
    }

    .deal .title {
        font-size: 1.8rem;
    }

    .deal p {
        font-size: 1rem;
    }

    .deal .btn {
        font-size: 1rem;
        padding: 8px 16px;
        width: 90%;
    }

    .hero {
        padding: 30px 10px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .quote-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .quote {
        margin: 10px 0;
    }

    .quote img {
        width: 80%;
        height: auto;
    }

    .quote-section p {
        font-size: 16px;
    }
    .get-started-section {
        padding: 20px 0 10px 0;
        margin-top: 0;
    }

    .get-started-section h3 {
        margin-left: 0;
        font-size: 18px;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 90%;
        margin: auto;
    }

    .btn {
        min-width: 100%;
    }

    .course-selection {
        flex-direction: column;
        padding: 30px 20px;
    }

    .course-content {
        max-width: 100%;
        text-align: center;
    }

    .course-content h2 {
        font-size: 24px;
    }

    .course-content p {
        font-size: 16px;
    }

    .category-container {
        justify-content: center;
    }

    .course-category {
        font-size: 14px;
        padding: 10px 16px;
    }

    .image-container {
        display: none; /* Hide image on small screens to focus on content */
    }

    .container {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
    }

    .text-section {
        max-width: 100%;
        text-align: center;
    }

    .text-section h2 {
        font-size: 28px;
        margin-left: 0;
    }

    .benefit-item {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .benefit-item h3 {
        font-size: 20px;
    }

    .benefit-item p {
        font-size: 16px;
    }

    .certificate-image img {
        max-width: 100%;
    }

    .footer {
      padding: 30px 15px;
  }
  .footer-container {
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
  }
  .footer-column {
      width: 100%;
      margin: 15px 0;
  }
  .footer-column h3 {
      font-size: 16px;
  }
  .footer-column ul li {
      margin-bottom: 6px;
  }
  .social-icons {
      justify-content: flex-start;
  }
  .footer-bottom-full {
      flex-direction: column;
      padding: 30px 15px;
      align-items: flex-start;
      gap: 0;
  }
  .footer-bottom-left {
      max-width: 100%;
      margin-bottom: 0;
      padding: 0;
      /* Slight space before buttons */
  }
  .footer-bottom-left * {
      margin: 0 !important;
      /* Force all children to remove margin */
      padding: 0 !important;
      line-height: 1.4;
      /* Optional: tighten line height */
  }
  .footer-bottom-right {
      width: 100%;
      flex-direction: column;
      gap: 10px;
      margin-top: 0;
      padding: 0;
      /* Remove default margin if applied */
  }
  .app-button {
      width: 100%;
      justify-content: center;
      margin-bottom: 10px;
  }

}


/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    header {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
  }

  .logo-toggle-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #161549;
    cursor: pointer;
    margin: 0; /* Prevent margin from pushing */
    padding: 0;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo img {
    width: 100px;
    height: auto;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  nav.active {
    display: flex;
  }

  .actions {
    display: none;
    flex-direction: column;
    margin-top: 1rem;
  }

  .actions.active {
    display: flex;
  }

  .dropdown-menu,
  .dropdownn-menu {
    min-width: 100%;
  }

    .swiper {
        height: 450px;
    }

    .deal {
        padding-left: 40px;
    }

    .deal .content {
        max-width: 320px;
    }

    .deal .title {
        font-size: 2.2rem;
    }

    .deal p {
        font-size: 1.1rem;
    }

    .deal .btn {
        font-size: 1.1rem;
        padding: 10px 18px;
    }

    .quote-section {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .button-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .get-started-section {
        padding: 25px 0 15px 0;
        margin-top: 0;
    }

    .get-started-section h3 {
        margin-left: 0;
        font-size: 20px;
    }

    .button-container {
        flex-direction: row; /* You can change this to column if you also want stacked buttons on tablets */
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 700px;
    }

    .btn {
        flex: 1 1 45%; /* Adjust width for tablets */
        min-width: auto;
    }

    .course-selection {
        flex-direction: column;
        padding: 40px;
    }

    .course-content {
        max-width: 100%;
        text-align: center;
    }

    .course-content h2 {
        font-size: 28px;
    }

    .course-content p {
        font-size: 17px;
    }

    .category-container {
        justify-content: center;
    }

    .course-category {
        font-size: 15px;
        padding: 10px 18px;
    }

    .image-container {
        max-width: 80%;
        justify-content: center;
        margin-top: 20px;
    }

    .image-container img {
        border-radius: 20px;
    }

    .container {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .text-section {
        max-width: 100%;
        text-align: center;
    }

    .text-section h2 {
        font-size: 30px;
        margin-left: 0;
    }

    .benefit-item {
        justify-content: center;
    }

    .benefit-item h3 {
        font-size: 22px;
    }

    .benefit-item p {
        font-size: 17px;
    }

    .certificate-image img {
        max-width: 80%;
    }

    .footer {
      padding: 40px 20px;
  }
  .footer-container {
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer-column {
      flex: 1 1 45%;
      margin: 15px 10px;
  }
  .footer-bottom-full {
      padding: 40px 20px;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .footer-bottom-left {
      flex: 1 1 60%;
  }
  .footer-bottom-right {
      flex: 1 1 35%;
      justify-content: flex-end;
  }
  .app-button {
      font-size: 13px;
  }
  .app-icon {
      width: 26px;
  }

}

/* Laptops */
@media (min-width: 1025px) and (max-width: 1365px) {
    .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
    gap: 1.5rem;
  }

  .dropdown-menu, .dropdownn-menu {
    display: none;
    position: absolute;
  }

  .dropdown:hover .dropdown-menu,
  .dropdownn:hover .dropdownn-menu {
    display: grid;
  }

  .actions {
    display: flex;
  }

    .swiper {
        height: 500px;
    }

    .deal {
        padding-left: 60px;
    }

    .deal .title {
        font-size: 2.5rem;
    }

    .deal p {
        font-size: 1.2rem;
    }

    .deal .btn {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .course-selection {
        padding: 60px;
        flex-direction: row;
    }

    .course-content {
        max-width: 50%;
        text-align: left;
    }

    .course-content h2 {
        font-size: 32px;
    }

    .course-content p {
        font-size: 17px;
    }

    .category-container {
        justify-content: flex-start;
    }

    .course-category {
        font-size: 16px;
        padding: 12px 20px;
    }

    .image-container {
        max-width: 50%;
    }

    .container {
        flex-direction: row;
        padding: 50px;
        gap: 40px;
    }

    .text-section h2 {
        font-size: 33px;
        margin-left: 40px;
    }

    .footer {
      padding: 50px 40px;
  }
  .footer-container {
      flex-wrap: nowrap;
  }
  .footer-column {
      flex: 1 1 30%;
      margin: 20px;
  }
  .footer-bottom-full {
      padding: 60px 40px;
      flex-wrap: nowrap;
  }
  .footer-bottom-left {
      max-width: 60%;
  }
  .footer-bottom-right {
      flex-direction: row;
      justify-content: flex-end;
  }
  .app-button {
      font-size: 14px;
      padding: 12px 20px;
  }

}

/* Large desktops */
@media (min-width: 1366px) {
    .logo-section img {
        height: 120px;
    }
    .logo-text {
        font-size: 28px;
    }
    .associated-text {
        font-size: 16px;
    }
    nav ul li {
        margin: 0 15px;
        font-size: 20px;
    }

    .swiper {
        height: 550px;
    }

    .deal .title {
        font-size: 3rem;
    }

    .deal p {
        font-size: 1.3rem;
    }

    .deal .btn {
        font-size: 1.3rem;
        padding: 14px 28px;
    }

    .course-selection {
        padding: 70px;
        flex-direction: row;
    }

    .course-content h2 {
        font-size: 36px;
    }

    .course-content p {
        font-size: 18px;
    }

    .course-category {
        font-size: 17px;
        padding: 14px 22px;
    }

    .image-container {
        max-width: 50%;
    }

    .container {
        flex-direction: row;
        padding: 60px 80px;
        gap: 50px;
    }

    .text-section h2 {
        font-size: 35px;
        margin-left: 55px;
    }

    .footer-container {
        flex-wrap: nowrap;
        gap: 60px;
    }
}


/* Remove default focus outline and box-shadow from buttons */

/*button:focus, 
.btn:focus, 
.login-btn:focus, 
.register-btn:focus, 
.join-btn:focus {
    outline: none;
    box-shadow: none;
}*/

button:focus,
.btn:focus,
.login-btn:focus,
.register-btn:focus,
.join-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 44, 67, 0.5);
    border-radius: 4px;
}