/* General body styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Noto Sans", Arial, "Odoo Unicode Support Noto", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0; /* Remove default margin */
}

/* Header styling */
.header {
    background-color: white; /* White background for the header */
    padding: 10px 20px; /* Padding around the content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for the header */
    position: fixed; /* Fix position to the top */
    width: 100%; /* Full width */
    top: 0; /* Align to the top */
    z-index: 1000; /* Ensure header is on top of other content */
}

.header .container {
    display: flex; /* Flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Center items horizontally */
}

/* Hamburger menu icon styling */
.hamburger {
    font-size: 24px; /* Font size of the icon */
    cursor: pointer; /* Pointer cursor on hover */
    color: #333; /* Dark color */
}

/* Logo styling */
.logo {
    flex: 1;
    text-align: center;   
}

.logo img {
    padding-top: 0;
    padding-bottom:0 ;
    max-height: 80px; /* Limit logo height */
    text-align: center;
}


/* Side menu styling */
.side-menu {
    position: fixed; /* Fixed position */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 350px; /* Fixed width */
    height: 100vh; /* Full viewport height */
    color: #333;
    background: #ffffff; /* Dark background */
    transform: translateX(-100%); /* Hide off-screen */
    transition: transform 0.3s ease; /* Smooth transition for opening */
    z-index: 1100; /* Ensure menu is above other content */
}

/* Active state of the side menu */
.side-menu.active {
    transform: translateX(0); /* Slide into view */
}

/* Logo inside side menu */
.side-menu .logo {
    padding: 20px; /* Padding around the logo */
    text-align: center; /* Center the logo */
    color: white; /* White color for text */
    font-size: 1.5rem; /* Font size */
}
.side-menu .logo img {
    height: 70px;  
}

/* Menu items inside side menu */
.side-menu .menu-items {
    padding: 20px; /* Padding around the menu items */
    color: rgb(0, 0, 0); /* White color for text */
    text-align: center; /* Center text */
}
.side-menu .menu-items p{
    font-size: 16px;
    font-weight: 500;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: rgb(17, 17, 17);
}

/* Button for appointments in side menu */
.side-menu .appointment-button {
    display: block;
    margin: 20px auto;
    width: 90%;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: center;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
/* Navbar Styling */
.navbar {
    padding: 15px 0;
}

.navbar-brand img.logo {
    height: 40px; /* Adjust height for logo */
}

/**/
.side-menu .menu-items {
    padding: 10px; /* Reduced padding */
    text-align: center;
}

.side-menu .menu-items p {
    font-size: 14px; /* Slightly smaller font */
    font-weight: 500;
    margin: 5px 0; /* Reduced margin */
    text-align: left;
    padding-left: 50px; /* Reduced left padding */
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    border-radius: 6px; /* Slightly rounded edges */
    overflow: hidden;
    position: relative;
}

/* Background hover effect */
.side-menu .menu-items p:hover {
    background: linear-gradient(90deg, #f8f8f8, #eaeaea);
    transform: translateX(3px);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

/* Links inside menu items */
.side-menu .menu-items p a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 5px 10px; /* Reduced padding */
    transition: color 0.3s ease-in-out;
    position: relative;
    font-size: 16px; /* Slightly smaller font */
}

/* Underline animation on hover */
.side-menu .menu-items p a::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 3px;
    width: 0%;
    height: 2px; /* Thinner underline */
    background: #E7943C;
    transition: width 0.3s ease-in-out;
}

.side-menu .menu-items p a:hover::after {
    width: 70%;
}

/* Active state */
.side-menu .menu-items p a.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.08);
    border-left: 3px solid #007bff; /* Slightly thinner border */
    padding-left: 12px; /* Adjust padding to align */
    font-weight: 600;
}

/* Smooth transition for active state */
.side-menu .menu-items p a.active::after {
    width: 70%;
}


.side-menu .menu-items ul li{
    list-style: none;
}
/* Social icons inside side menu */
.side-menu .menu-social-icons {
   
    bottom: 120px; /* Place above the appointment button */
    left: 50%; /* Center horizontally */
   display: block;
    text-align: center; /* Align icons in the center */
    width: 90%; /* Limit width */
}

.side-menu .menu-social-icons a {
    display: inline-block; /* Inline for spacing */
    margin: 0 8px; /* Add spacing between icons */
    color: #333; /* Icon color */
    font-size: 18px; /* Icon size */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.side-menu .menu-social-icons a:hover {
    color: #007bff; /* Change icon color on hover */
}
/* Mobile Responsive */
/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Adjust side menu */
    .side-menu {
        width: 85%;
        max-width: 260px; /* Slightly narrower */
        height: 100vh;
        padding: 5px; /* Minimal padding */
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    /* Close button (smaller size) */
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 10px; /* Smaller icon */
        cursor: pointer;
    }

    /* Logo */
    .side-menu .logo {
        text-align: center;
        margin-bottom: 5px;
    }

    .side-menu .logo img {
        width: 180px; /* Slightly smaller logo */
        height: auto;
    }

    /* Menu items */
    .side-menu .menu-items {
        text-align: left;
        flex-grow: 1;
        padding: 0; /* No extra padding */
    }

    .side-menu .menu-items p {
        font-size: 12px; /* Smaller text */
        padding-left: 8px; /* Reduced left padding */
        margin: 3px 0;
    }

    .side-menu .menu-items p a {
        font-size: 14px;
        padding: 6px 8px; /* Less padding */
        display: block;
    }

    /* Submenu (Courses) */
    .side-menu .submenu {
        padding-left: 10px;
    }

    .side-menu .submenu li {
        list-style: none;
        padding: 2px 0;
    }

    /* Social icons */
    .side-menu .emnu-social-icons {
        text-align: center;
        margin-top: auto;
        margin-bottom: 3px; /* Even less bottom margin */
    }

    .side-menu .menu-social-icons a {
        font-size: 13px; /* Smaller icons */
        margin: 0 4px;
    }

    /* Button */
    .appointment-button {
        font-size: 12px;
        padding: 6px 10px;
        width: 90%;
        margin: 0 auto 5px; /* Minimum spacing */
        display: block;
    }
}

/* Hero Section */


.hero-section::before {
    content: ''; /* Empty content */
    position: absolute; /* Position the overlay absolutely within the hero-section */
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: rgba(7, 7, 7, 0.541); /* Black overlay with 50% opacity */
    z-index: 2; /* Make sure the overlay is above the background image but below the text */
}

.hero-section > * {
    position: relative; /* Ensure that text and other content appear above the overlay */
    z-index: 2; /* Text and other content should be above the overlay */
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
     padding-top: 20px;
}

.hero-section p {
    padding-top: 20px;
    font-size: 20px;
    font-weight: 400;
}
/* Navbar Styling */
.navbar {
    padding: 15px 0;
}

.navbar-brand img.logo {
    height: 40px; /* Adjust height for logo */
}

/* Hero Section Styling */
.hero-section {
    background: url('img/cyber.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-section .btn-primary {
    font-weight: 500;
    padding: 10px 20px;
}
/* Custom styles */
  .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .heading-section {
    max-width: 50%;
  }

  .main-heading {
    font-size: 38px;
    font-weight: 700;
    color: #466ECE;
    letter-spacing: 2px;
  }

  .subheading {
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
  }

  .gradient-button {
    background: linear-gradient(90deg, #466ECE, #7AA4F7, #466ECE);
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
  }

  .gradient-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  }

  .info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    max-width: 50%;
  }

  .info-box {
   background: linear-gradient(90deg, #466ECE, #7AA4F7, #466ECE);
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    height: 220px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  

  .info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .info-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .info-box p {
    font-size: 16px;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .main-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .heading-section {
      max-width: 100%;
    }

    .main-heading {
      font-size: 36px;
    }

    .info-boxes {
      width: 100%;
      grid-template-columns: 1fr 1fr;
      grid-gap: 5px;
    }

    .info-box {
      height: 200px;

    }
  }

  @media (max-width: 576px) {
    .info-boxes {
      grid-template-columns: 1fr;
      max-width: 100%;
    }

    .info-box {
      margin: 1%;
      max-width: 100%;
    }
  }
/* Call to Action Section Styling */
.cta-section {
    background-color: #0056b3;
    padding: 60px 0;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.cta-section p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    font-weight: 500;
    padding: 10px 20px;
    background-color: #ddd;
    color: #000;
}
/*level section */

.tab-section {
    margin: 40px 0;
}

.tab-content {
    max-width: 100%;
    width: 90%;
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.tab-content h3{
    font-size: medium;
    font-weight: 700;
}
.course-content h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: right;
}

.course-highlights, .hands-on-tools, .certifications, .job-roles {
    margin-bottom: 20px;
}

.course-highlights strong, .hands-on-tools strong, .certifications strong, .job-roles strong {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.course-highlights ul {
    padding-left: 20px;
    margin: 0;
}

.tools, .cert-icon {
    display: flex;
    padding-left: 10px;
    justify-content: left; /* Centers the items horizontally */
    align-items: left; /* Aligns items vertically in the middle */
    gap: 20px; /* Adds space between items */
    flex-wrap: wrap; /* Allows items to wrap if they don't fit in a single row */
}

.tool-item, .cert-item {
    text-align: center; /* Center-aligns text within each item */
    margin: 1px; /* Adds some margin around each item */
}

.tool-item img, .cert-item img {
    display: block; /* Makes the image a block element */
    margin: 0 auto; /* Centers the image */
    width: 170x;
    height: 120px;
    object-fit: contain;
    
}

.tool-item span, .cert-item span {
    display: block; /* Makes the text appear below the image */
    margin-top: 5px; /* Adds a small gap between the image and the text */
}
#tab-navigation .nav-pills .nav-link {
    font-size: 4px;
}

/* Responsive Design: Display in column layout on mobile devices */
@media (max-width: 768px) {
    .tools, .cert-icon {
        flex-direction: column; /* Changes the direction to column for smaller screens */
        align-items: center; /* Centers items in the column layout */
    }
}
.job-roles .role {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .course-content h3 {
        text-align: center;
        font-size: 1em;
    }

    .tab-content {
        width: 95%;
        padding: 15px;
    }

    .tools {
        justify-content: center;
    }
}

.nav-pills .nav-link {
    border-radius: 0;
    padding: 12px 20px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}
.nav-pills .nav-link.active {
    background-color: #0056b3;
    color: white;
    border-bottom: 3px solid #E7943C; /* Active tab bottom border */
}
@media (max-width: 768px) {
    .nav-pills {
        display: none;
    }
    .nav-tabs-dropdown {
        display: block;
    }
    .mobile-select-heading {
        display: block;
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: bold;
    }
}
@media (min-width: 769px) {
    .nav-tabs-dropdown {
        display: none;
    }
    .mobile-select-heading {
        display: none;
    }
}
/* Container to hold the dropdown and arrow */
.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Style the select element */
.nav-tabs-dropdown {
    width: 100%;
    padding-right: 30px; /* Space for the arrow */
    appearance: none; /* Remove default arrow */
    background-color: white;
}

/* Position the Font Awesome arrow */
.dropdown-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent the arrow from blocking the select */
    color: #000;
}
/* Hide the arrow on desktop (min-width: 768px) */
@media (min-width: 768px) {
    .dropdown-arrow {
        display: none;
    }
}
/* Accordion Section */
.accordion-section{
    margin-bottom: 10px;
}
.accordion-section .accordion-button {
    color: #000;
    background-color: #f8f9fa;
    font-weight: bold;
}

.accordion-section .accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: white; /* White text color */
    background-color: #466ece; /* #466ECE background */
}

.accordion-section h2 {
    font-size: 32px;
    font-weight: 500;
}

.accordion-button h2 {
    font-size: 24px;
    font-weight: 700;
}
.accordion-body{
    text-align: left;
}
/* Steps Section */
.steps-section {
    height: 50vh;
    background-color: #f9f9f9;
}
.step-container {
    position: relative;
}

/* Create a vertical line on mobile view */

.steps-section h2, p {
    font-size: 24px;
    font-weight: 500;
}

/* Add lines between steps */


.steps-section .step i {
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    object-fit: cover;
    border: 1px solid #ddd; /* Border around the image */
    border-radius: 50%;
    padding: 20px;
}
.steps-button{
    text-align: center;
    margin-bottom: 4%;
   
}
.steps-button a{
   
    font-weight: 500;
}
/* Partners Section */
.partners-section {
    text-align: center;
}

.partners-section img {
    margin-top: 10px;
    width: 100%;
    height: 80%;
   justify-content: center;
   object-fit: fill ;
}

.partners-section h2 {
    margin-bottom: 50px;
}

.partners-section .button {
    margin-top: 40px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.testimonial-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #333; /* Adjust color as needed */
}

.testimonial-image {
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Adjust size as needed */
    object-fit: cover;
    border: 2px solid #ddd; /* Border around the image */
}
.blockquote p{
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}
/* Footer Styling */
.footer {
    color: #fff;
    background-color: #121a26; /* Dark background */
    padding: 40px 0;
}

footer h5 {
    font-size: 20px;
    font-weight: 500;
}

footer p {
    font-size: 16px;
    font-weight: 400;
}

.footer a {
    color: #fff; /* White links */
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #121a26;
    background-color: #fff;
    border-radius: 10%;
    padding: 15px;
    display: inline-block;
    margin: 5px;
    font-size: 16px;
}

.powered-by {
    color: #ddd; /* Light gray for powered by text */
    margin-top: 20px;
    font-size: 14px;
}

.powered-by a {
    color: #ddd;
}

.footer .divider {
    width: 100%;
    height: 1px;
    background-color: #ddd; /* Light gray divider */
    margin: 30px 0;
}

/* Section styling for full height and centering content */
.section {
   
    padding-bottom: 10px;
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    text-align: center; /* Center text */
}
/* Hidden popup container */
.popup-container {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show popup animation */
.show-popup {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 480px) {
    .logo img {
        padding-top: 0;
        padding-bottom:0 ;
        max-height: 80px; /* Limit logo height */
        text-align: center;
    }
    
    .side-menu {
        width: 80%; /* Full width on mobile */
    }
 
    
    .side-menu .appointment-button {
        position: absolute; /* Absolute positioning */
        bottom: 50px; /* Align to the bottom */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Center button */
        width: 90%; /* Button width */
        border-radius: 20px;/* Border */
    }
    .hero-section h1 {
        font-size: 18px;
        font-weight: 650;
        margin-bottom: 20px; 
        margin-top: 10px;
    }
    .hero-section h2 {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 10px; 
    }
    
    .hero-section h3 {
        margin-bottom: 10px; /* Bottom margin */
        font-size: 10px;
        font-weight: 300;
    }
    .accordion-section .accordion-button:focus {
        box-shadow: none;
    }
    
    .accordion-button:not(.collapsed) {
        color: white; /* White text color */
        background-color: #466ece; /* #466ECE background */
    }
    
    .accordion-section h2 {
        font-size: 20px;
        font-weight: 500;
    }
    
    .accordion-button h2 {
        font-size: 24px;
        font-weight: 900;
    }
    .tools, .cert-icon {
        display: flex;
        justify-content: left; /* Centers the items horizontally */
        align-items: left; /* Aligns items vertically in the middle */
        gap: 20px; /* Adds space between items */
        flex-wrap: wrap; /* Allows items to wrap if they don't fit in a single row */
    }
    /* Steps Section */
    .steps-section {
        margin-top: 10%;
        margin-bottom: 1%;
        background-color: #ffffff;
        height: auto;
    }
    
    
    .step-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .steps-section h2 {
        font-size: 24px;
        font-weight:600;
    }
    .steps-section  p {
        font-size: 16px;
        font-weight:500;
    }
    
    
    
    /* Testimonial Section */
    .testimonial-section {
        height: 50vh;
        padding: 0;
        background-color: #f5f5f5;
        text-align: center;
    }
    .blockquote p{
        font-size: 16px;
        font-style: italic;
        font-weight: 200;
    }
    .testimonial-title {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
        color: #333; /* Adjust color as needed */
    }

    
}
/* Styling for the cookie popup */
#cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    animation: slideUpCenter 0.5s ease-out;
}

/* Smooth slide-up animation from the center bottom */
@keyframes slideUpCenter {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Text styling */
#cookieConsent p {
    font-size: 16px;
    margin: 0;
    color: #000000;
    flex-basis: 70%;
    text-align: center;
}

/* Link styling */
#cookieConsent a {
    color: #1e90ff;
    text-decoration: underline;
    font-weight: bold;
}

/* Button container */
#cookieConsent .btn-container {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    flex-basis: 30%;
    justify-content: center;
}

/* Styling for buttons */
#cookieConsent .btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    background-color: #eeeded;
    color: #000000;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cookieConsent .btn:hover {
    background-color: #c4c4c4;
    transform: scale(1.05);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    #cookieConsent {
        flex-direction: column;
        padding: 10px;
        max-width: 95%;
    }

    #cookieConsent p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 10px;
        flex-basis: 100%;
    }

    #cookieConsent .btn-container {
        flex-basis: 100%;
        justify-content: center;
    }

    #cookieConsent .btn {
        font-size: 12px;
        padding: 6px 15px;
    }
}

@media (max-width: 480px) {
    #cookieConsent p {
        font-size: 12px;
    }

    #cookieConsent .btn {
        font-size: 10px;
        padding: 5px 10px;
    }
}
