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;
}

.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 */
    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 .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 .social-icons {
        text-align: center;
        margin-top: auto;
        margin-bottom: 3px; /* Even less bottom margin */
    }

    .side-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;
}

/* Hero Section Styling */
.hero-section {
    background: url('Bg-img/a+.certification\ \ 5.png') no-repeat top center/cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 10px;
}

.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;
}

/*---step section css------*/
.step-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(32, 32, 32, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.step.active {
    display: flex;
}

.step h2 {
    font-size: 1.5rem;
    color: #466ece;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

button {
    padding: 0.8rem 2rem;
    background-color: #466ece;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #21867a;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default to two columns */
    gap: 1rem;
}

@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: 1fr; /* Change to one column on mobile */
    }
}

.option-card {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    background-color: white;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.option-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.option-card.active {
    border-color: #466ece;
    background-color: #e9f7f5;
}

.step-indicator {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.step-indicator li {
    background-color: #ddd;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
}

.step-indicator li.active {
    background-color: #466ece;
}

#recommendation-section {
    display: none;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

#recommendation-section.active {
    display: flex;
    flex-direction: column; /* Stack content vertically */
}

#recommendation-section h2 {
    font-size: 2rem;
    color: #466ece;
    margin-bottom: 2rem; /* Add margin below heading */
    text-align: center; /* Center the heading */
}

/* Flex container for recommendations and signup form */
.recommendation-layout {
    display: flex;
    justify-content: space-between; /* Align sections next to each other */
    gap: 1rem;
}

/* First column for course recommendation */
.recommendation-card {
    padding: 1.5rem;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    flex: 1; /* Allows this section to take up available space */
}

.recommendation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.skill-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    background-color: #466ece;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    margin: 5px;
}

.key-points {
    text-align: left;
    margin-bottom: 1rem;
}

.key-points ul {
    list-style-type: disc;
    padding-left: 20px;
}
.skill-badges, .key-points {
    display: block;
}
/* Second column for signup form */
.signup-form {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    flex: 1; /* Allows this section to take up available space */
}

.signup-form h3 {
    margin-bottom: 1.5rem;
    color: #466ece;
}

.signup-form input, .signup-form button {
    width: 100%;
    margin-bottom: 1rem;
}

.signup-form button {
    background-color: #466ece;
    color: white;
}

.hide{
    display: none;
}

@media (max-width: 768px) {
    .recommendation-layout {
        flex-direction: column; /* Stack columns on smaller screens */
    }
}
.tab-section.active {
    display: block; /* Show the active tab section */
}
 /* Container */
 .custom-learning-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    
}

.custom-content-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* Left side navigation buttons */
.custom-button-navigation {
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    
}

.custom-tab-btn {
    background-color: transparent;
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    padding: 12px 20px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background-color 0.4s, border-left 0.4s;
    border-left: 3px solid transparent;
}

.custom-tab-btn:hover,
.custom-tab-btn.custom-active {
    background-color: #e9e9e9;
    border-left: 3px solid #e89f00;
    font-weight: 500;
}

/* Right side content area */
.custom-tabs-content {
    width: 60%;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-tab-content {
    display: none;
}

.custom-tab-content.custom-active {
    display: block;
}

.custom-tab-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.custom-tab-content p {
    font-size: 16px;
    line-height: 1.8;
}

.custom-tab-content img {
    max-width: 100%;
    border-radius: 6px;
    margin-top: 25px;
}

/* Action buttons at bottom */
.custom-action-buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.custom-action-buttons a {
    text-decoration: none;
    color: #000000;
    background-color: #e89f00;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.custom-action-buttons a:hover {
    background-color: #ffb300;
}

/* Dropdown for mobile view */
.custom-dropdown {
    display: none;
    width: 100%;
}

.custom-dropdown select {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    background-color: #152032;
    color: #fff;
}

/* Hiding dropdown on desktop and showing it on mobile */
@media (max-width: 768px) {
    .custom-button-navigation {
        display: none;
    }

    .custom-dropdown {
        display: block;
        margin-bottom: 20px;
    }

    .custom-tabs-content {
        width: 100%;
    }

    .custom-action-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}

/* Hiding the dropdown on desktop */
@media (min-width: 769px) {
    .custom-dropdown {
        display: none;
    }
}
/*-----------tabs css----------*/
.tab-section {
    margin: 40px 0;
    width: 100%;
}

.tab-content {
    max-width: 100%;
    width: 90%; /* You may adjust this to fit your layout */
    background-color: white; /* Background color for better contrast */
    padding: 20px; /* Inner spacing */
    margin: 20px auto; /* Centering the tab content */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.tab-content h3 {
    font-size: medium; /* Consistent heading size */
    font-weight: 700; /* Bold font weight for headings */
}

.course-content h3 {
    font-size: 1.2em; /* Size for course content headings */
    margin-bottom: 20px; /* Space below course content headings */
    text-align: right; /* Align course content headings to the right */
}

.course-highlights, .hands-on-tools, .certifications, .job-roles {
    margin-bottom: 20px; /* Spacing between sections */
}

.course-highlights strong,
.hands-on-tools strong,
.certifications strong,
.job-roles strong {
    display: block; /* Each strong element takes full line */
    margin-bottom: 10px; /* Space below strong elements */
    font-weight: bold; /* Emphasized font weight */
}

.course-highlights ul {
    padding-left: 20px; /* Indent for lists */
    margin: 0; /* Remove margin */
}

.tools, .cert-icon {
    display: flex; /* Flex layout for tools and certifications */
    padding-left: 10px; /* Left padding for alignment */
    justify-content: left; /* Align items to the left */
    align-items: left; /* Vertical alignment */
    gap: 20px; /* Space between items */
    flex-wrap: wrap; /* Wrap items to new line if needed */
}

.tool-item, .cert-item {
    text-align: center; /* Center-align text in items */
    margin: 1px; /* Margin around items */
}

.tool-item img, .cert-item img {
    display: block; /* Images as block elements */
    margin: 0 auto; /* Center images */
    width: 150px; /* Fixed width for images */
    height: 120px; /* Fixed height for images */
}

.tool-item span, .cert-item span {
    display: block; /* Text below images */
    margin-top: 5px; /* Space between image and text */
}

#tab-navigation .nav-pills .nav-link {
    font-size: 4px; /* This seems unusually small; consider adjusting */
}

/* Responsive Design: Display in column layout on mobile devices */
@media (max-width: 768px) {
    .tools, .cert-icon {
        flex-direction: column; /* Column layout for mobile */
        align-items: center; /* Center items in column */
    }

    .course-content h3 {
        text-align: center; /* Center headings on mobile */
        font-size: 1em; /* Adjust font size for mobile */
    }

    .tab-content {
        width: 95%; /* Wider tab content on mobile */
        padding: 15px; /* Reduced padding on mobile */
    }

    .tools {
        justify-content: center; /* Center tools on mobile */
    }
}

.job-roles .role {
    display: inline-block; /* Inline display for job roles */
    background-color: #e0e0e0; /* Background color for roles */
    padding: 5px 10px; /* Inner padding for roles */
    border-radius: 15px; /* Rounded corners for roles */
    margin-right: 10px; /* Space between roles */
    margin-top: 5px; /* Space above roles */
    font-size: 0.9em; /* Smaller font size for roles */
}

.nav-pills .nav-link {
    border-radius: 0; /* No rounding for navigation links */
    padding: 12px 20px; /* Padding for links */
    font-weight: bold; /* Bold font for links */
    text-align: center; /* Center text in links */
    font-size: 14px; /* Font size for links */
}

.nav-pills .nav-link.active {
    background-color: #0056b3; /* Active tab background color */
    color: white; /* Active tab text color */
    border-bottom: 3px solid #E7943C; /* Active tab bottom border */
}

/* Responsive handling for dropdowns */
@media (max-width: 768px) {
    .nav-pills {
        display: none; /* Hide pills on mobile */
    }

    .nav-tabs-dropdown {
        display: block; /* Show dropdown on mobile */
    }

    .mobile-select-heading {
        display: block; /* Show mobile select heading */
        text-align: center; /* Center align */
        font-size: 1.2rem; /* Font size for mobile heading */
        margin-bottom: 10px; /* Space below heading */
        font-weight: bold; /* Bold font weight */
    }
}

@media (min-width: 769px) {
    .nav-tabs-dropdown {
        display: none; /* Hide dropdown on desktop */
    }

    .mobile-select-heading {
        display: none; /* Hide mobile select heading on desktop */
    }
}

/* Container to hold the dropdown and arrow */
.dropdown-container {
    position: relative; /* Relative positioning */
    display: inline-block; /* Inline-block for layout */
    width: 100%; /* Full width */
}

/* Style the select element */
.nav-tabs-dropdown {
    width: 100%; /* Full width for dropdown */
    padding-right: 30px; /* Space for arrow */
    appearance: none; /* Remove default arrow */
    background-color: white; /* Dropdown background */
}

/* Position the Font Awesome arrow */
.dropdown-arrow {
    position: absolute; /* Absolute positioning for the arrow */
    right: 10px; /* Space from the right */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust to center */
    pointer-events: none; /* Prevent arrow from blocking */
    color: #000; /* Arrow color */
}

/* Hide the arrow on desktop (min-width: 768px) */
@media (min-width: 768px) {
    .dropdown-arrow {
        display: none; /* Hide arrow on desktop */
    }
}
/* Experience Section */
.experience-section {
   margin-top: 4%;
   margin-bottom: 5%;
}

.experience-header {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.experience-header h2 {
    font-size: 40px;
    font-weight: 500;
}

.experience-section img {
    object-fit: cover; /* Cover the area */
    height: 100%; /* Half the height */
    width: 100%; /* Full width */
}

.experience-section .box {
    width: 50%; /* Half the width */
    height: 50%; /* Half the height */
    padding: 20px; /* Padding around the content */
   
}

.experience-section .box1 {
    background-color: #F3F2F2;
    color: black;
    
}

.experience-section .box2 {
    background-color: #E7943C;
    color: white;
}

.experience-section .box3 {
    background-color: #466ECE;
    color: white;
}

.experience-section .box4 {
    background-color: #F3F2F2;
    color: black;
}

.experience-section h5 {
    font-size: 32px;
    font-weight: 500;
}

.experience-section p {
    font-size: 16px;
    font-weight: 400;
}
/* Call to Action Section Styling */
.cta-section {
    margin-top: 10px;
    background-color: #466ECE;
    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: #E7943C;
    color: #000;
}
/*---------news and posts css------------*/
.post-section{
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 20px;
}
.post-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* To keep the sections neat */
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9); /* Light gradient background */
}

.carousel-section {
    width: 70%;
    overflow: hidden; /* Hide overflow for the carousel */
    position: relative;
    padding: 20px; /* Add padding for aesthetics */
}

.partner-section {
    width: 30%;
    padding: 20px; /* Add padding for aesthetics */
    background-color:#466ECE; /* Blue background */
    color: white;
    text-align: center;
    border-radius: 0 10px 10px 0; /* Rounded corners */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: relative; /* For positioning the icon */
    overflow: hidden; /* To handle overflow of child elements */
}

.partner-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
}

.partner-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #E7943C; /* Gold accent color */
    margin: 10px auto; /* Center the line */
    border-radius: 5px; /* Rounded edges */
}

.partner-section p {
    margin: 10px 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
}

.partner-section .contact-us {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background:#E7943C; /* Gold button */
    color: white; /* Blue text */
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s; /* Smooth transition for hover effect */
}

.partner-section .contact-us:hover {
    background: #E7943C; /* Darker gold on hover */
    color: white; /* Change text color on hover */
}

.partner-icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ffdd57; /* Icon color */
}

@media (max-width: 768px) {
    .step-container {
        flex-direction: column; /* Stack sections in mobile view */
    }

    .carousel-section,
    .partner-section {
        width: 100%; /* Full width in mobile view */
    }

    .carousel {
        flex-direction: row; /* Maintain row format */
    }

    .carousel-post {
        flex: 0 0 100%; /* Show 1 post in mobile view */
        margin: 10px 0; /* Margin for mobile view */
    }
}

.carousel {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition for movement */
}

.carousel-post {
    flex: 0 0 calc(50.0% - 20px); /* Show 3 posts in desktop view with margin */
    margin: 0 10px; /* Left and right margin */
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Add transition for hover effect */
}

.carousel-post img {
    width: 100%; /* Make images responsive */
    height: auto;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.carousel-post:hover {
    transform: translateY(-5px); /* Raise post on hover */
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.carousel-post img:hover {
    transform: scale(1.1); /* Image zoom on hover */
}

.carousel-post h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #007bff; /* Match the partner section color */
    font-weight: bold;
    text-align: left;
}

.carousel-post p {
    margin: 10px 0;
    font-size: 24px;
    color: #666; /* Darker grey for text */
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #007bff; /* Green button */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-weight: bold;
}

.learn-more:hover {
    background: #007bff; /* Darker green on hover */
}

.arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    
  }
  
  .arrow {
   background-color: transparent;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #007bff; /* Arrow color */
    padding: 0px 0px 4px 0px;
  }
  
  .arrow:hover {
    color: #007bff; /* Darker blue on hover */
    background-color: transparent;
  }


@media (max-width: 768px) {
    .post-container {
        flex-direction: column; /* Stack sections in mobile view */
    }

    .carousel-section,
    .partner-section {
        width: 100%; /* Full width in mobile view */
    }

    .carousel {
        flex-direction: row; /* Maintain row format */
    }

    .carousel-post {
        flex: 0 0 100%; /* Show 1 post in mobile view */
        margin: 10px 0; /* Margin for mobile view */
    }
}
/* Steps Section */
.steps-section {
    
    background-color: #ffffff;
}
.steps-container {
    position: relative;
}

/* Create a vertical line on mobile view */

.steps-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}
.steps-section p{
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

/* Add lines between steps */


.steps-section .steps 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;
    background-color: #ffffff;
    margin: 15px;
}
.steps-button{
    text-align: center;
    margin-bottom: 4%;
   
}
.steps-button a{
   
    font-weight: 500;
}
/*-----------Videos section ------------*/

  #video-section {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
  }
  
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .video-item {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  }
  
  .video-item iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 12px 12px 0 0;
  }
  
  .video-info {
    padding: 15px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
  }
  
  .video-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s;
  }
  
  .video-title:hover {
    color: #cc0000;
  }
  
  .video-meta {
    font-size: 14px;
    color: #777;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 28px;
    }
    .video-item iframe {
      height: 200px;
    }
  }
  
/* 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;
}

/*----------mobile css----------*/
@media (max-width: 480px) {
    .logo img {
        padding-top: 0;
        padding-bottom:0 ;
        max-height: 80px; /* Limit logo height */
        text-align: center;
    }
    .hero-section{
        height: 80vh;
    }
    .side-menu {
        width: 80%; /* Full width on mobile */
    }
    .hero-section h1 {
        font-size: 34px;
        font-weight: 3500;
        margin-bottom: 10px; 
    }
    .hero-section h2 {
        font-size: 24px;
        font-weight: 2500;
        margin-bottom: 10px; 
    }
    
    .hero-section p {
        margin-bottom: 10px; /* Bottom margin */
        font-size: 20px;
        font-weight: 400;
    }
    /* Experience Section */
    .experience-section .box {
        width: 100%; /* Full width on mobile */
        height: 10%; /* Auto height on mobile */
        margin: 0;
        padding: 10px !important;
    }
   
    .experience-header {
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .experience-header h2 {
        font-size: 20px;
        font-weight: 500;
    }
    
    .experience-section img {
        object-fit: cover; /* Cover the area */
        height: 100%; /* Half the height */
        width: 100%; /* Full width */
    }
    
    
    
    .experience-section h5 {
        font-size: 16px;
        font-weight: 500;
    }
    
    .experience-section p {
        font-size: 12px;
        font-weight: 400;
        text-align: center;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    /* Steps Section */
    .steps-section {
        margin-top: 10%;
        margin-bottom: 1%;
        background-color: #ffffff;
        height: auto;
    }
    
    
    .steps-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: 100vh;
        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 */
    }

    
}

/*----------------tabs css-------------------*/
.phase-tabs-section {
    background-color: #ffffff;
    color: #222;
    padding: 2rem clamp(1rem, 5vw, 4rem);
  }

  .tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .tabs-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    
  justify-content: center; /* This centers the tab buttons */
  }

  .en-tab-button {
    background: #f3f3f3;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-content: center;
    color: #000000;
  }

  .en-tab-button:hover,
  .en-tab-button.active {
    background: #4d7afb;
    color: #fff;
  }

  .tabs-content {
    background: #f9f9f9;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    border-radius: 12px;
  }

  .tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .tab-panel.active {
    display: block;
  }

  .tab-panel h3 {
    font-size: 28px;
    font-weight: 500;
    color: #4d7afb;
    margin-bottom: 1rem;
  }

  .tab-panel p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
    
  }

  .tab-panel ul {
    list-style: disc inside;
    padding-left: 1rem;
  }

  .tab-panel li {
    margin-bottom: 0.5rem;
    font-size: 16px;
  
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  .tab-short {
    display: none;
  }
  
  .tab-full {
    display: inline;
  }
  
  @media (max-width: 768px) {
    .tab-short {
      display: inline;
    }
    .tab-full {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .tabs-menu {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    }
  
    .en-tab-button {
      flex: 0 0 auto; /* Prevent shrinking */
      white-space: nowrap;
    }
    .en-tab-button {
      padding: 0.5rem 0.75rem; /* Or use padding: 0; for no padding at all */
    }
  }