/*
Theme Name: Digital Marketing Landing Page Theme
Author: Digital Computer Classes
Description: A custom WordPress theme with Bootstrap 5 and Google Fonts.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    font-family: 'Lexend', sans-serif;
	margin:0;
	padding:0;
}
.extra-bold {
    font-weight: 900;
}
.container{
	width:1300px !important;
}
/* ========================Header Css=============================== */

.top-bar {
    background: #000000;
    color: white;
    padding: 5px 0;
    text-align: center;
}

.top-bar span{
    font-size: 0.8rem;
}
.top-bar a {
    color: black;
    font-weight: 500;
    font-size: 0.8rem;
}

.btn-apply {
    background-color: #FDBD56;
    color: #000;
    border-radius: 5px;
    padding: 5px 12px;
}

.btn-apply:hover{
    background-color: #FDBD56;
}

.navbar {
    padding: 10px 0;
    z-index: 999;
    top: 0;
   
}

/* Custom rounded background navbar */
.dm-navbar {
    background: transparent;
}

.dm-navbar .container {
    background: #f8b652; /* warm orange like screenshot */
    border-radius: 22px;
    padding: 18px 28px;
}

.dm-navbar .navbar-brand img {
    max-height: 52px;
}

/* Centered menu with pill active item */
.dm-navbar .navbar-nav {
    gap: 28px;
}

.dm-navbar .navbar-nav .nav-link {
    color: #0b0b0b;
    font-weight: 700;
    padding: 10px 26px; /* ensure same height for all items */
    border-radius: 28px;
    display: inline-block;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease;
}

.dm-navbar .navbar-nav .nav-link:hover {
    color: #000;
    background: #fff; /* white pill on hover */
}

.dm-navbar .navbar-nav .current-menu-item > a,
.dm-navbar .navbar-nav .current_page_item > a,
.dm-navbar .navbar-nav .nav-link.active {
    background: #fff;
    color: #000;
    border-radius: 28px;
    padding: 10px 26px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .dm-navbar .container {
        border-radius: 16px;
        padding: 12px 16px;
    }
    .dm-navbar .navbar-nav .current-menu-item > a,
    .dm-navbar .navbar-nav .current_page_item > a,
    .dm-navbar .navbar-nav .nav-link.active {
        display: inline-block;
        margin: 6px 0;
        padding: 8px 16px;
    }
}

/* .navbar-brand img {
    max-height: 70px;
    object-fit: cover;
} */

.menu-item a{
	font-size:18px;
	font-weight:700;
}

.navbar-nav .nav-link {
    color: #034772;
    font-weight: 700;
}

.navbar-nav .nav-link:hover {
    color: #f0a500;
}

nav .navbar-brand {
    width:200px ;
}
nav .navbar-brand img{
    width: 100%;
    object-fit: cover;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info a {
    text-decoration: none;
    color: #034772;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid rgba(11, 205, 240, 1) ;
    border-radius: 5px;
    display: flex;
    align-items: center;
	
}

.m-num-btn{
	  transition: transform 0.3s ease;
  animation: buttonPulse 2s infinite; /* Applying the animation */
}
.contact-info a:first-child :hover{
	background: #000000;
}

.contact-info a:last-child{
    color:white;
    font-size: 1rem;
	background: #000000;
}
.contact-info a:last-child:hover{
    color:white;;
    font-size: 1rem;
	background-color:white !important;
	border: 2px solid #034772;
}
contact-info a:first-child{
    color:white;
	
    font-size: 1rem;
}


.contact-info a:hover {
    background: #000000;
    color: white;
}

.contact-info i {
    margin-right: 10px;
	color: rgba(11, 205, 240, 1);
}
.navbar-nav{
	display:flex;
	gap:20px;
}

.navbar-nav li:not(:first-child):hover {
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border-radius: 28px;
  padding: 10px 26px;
}

.navbar-nav li a{
	text-decoration:none;
	color:black;
	font-weight:600px;
	font-size:15px;
	
}
/* Submenu/Dropdown Styling - Enhanced Version */
.navbar-nav .menu-item-has-children {
    position: relative;
}

/* Dropdown menu container with smooth animation */
.navbar-nav .sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: white;
    min-width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 8px;
    padding: 12px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    border-top: 3px solid rgba(11, 205, 240, 1);
}

/* Show dropdown on hover with smooth animation */
.navbar-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

/* Submenu items with hover effects */
.navbar-nav .sub-menu li {
    display: block;
    width: 100%;
    padding: 0;
    transition: background-color 0.2s ease;
}

.navbar-nav .sub-menu li a {
    padding: 10px 20px;
    display: block;
    font-size: 12px;
    color: #034772;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Attractive hover effect for submenu items */
.navbar-nav .sub-menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: transparent;
    transition: width 0.3s ease;
}

.navbar-nav .sub-menu li:hover a:before {
    width: 100%;
	background:#000;
}

.navbar-nav .sub-menu li:hover > a {
    color: rgba(36, 36, 225, 1);
    padding-left: 25px;
    background-color: rgba(11, 205, 240, 0.05);
}

/* Add beautiful dropdown indicator */
.navbar-nav .menu-item-has-children > a:after {
    content: '▾';
    font-size: 12px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar-nav .menu-item-has-children:hover > a:after {
    transform: rotate(180deg);
}

/* For nested submenus with smooth animation */
.navbar-nav .sub-menu .menu-item-has-children > .sub-menu {
    left: 105%;
    top: 0;
}

.navbar-nav .sub-menu .menu-item-has-children:hover > .sub-menu {
    left: 100%;
}

.navbar-nav .sub-menu .menu-item-has-children > a:after {
    content: '▸';
    position: absolute;
    right: 15px;
}
/* Mobile Menu Specific Fixes */
@media (max-width: 991px) {
    /* Reset some properties for mobile */
    .navbar-nav .menu-item-has-children {
        position: static;
    }
    
    .navbar-nav .sub-menu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        border-left: 2px solid rgba(11, 205, 240, 1);
        margin: 5px 0 5px 15px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    
    /* Show submenu when toggled */
    .navbar-nav .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }
    
    /* Style mobile submenu items */
    .navbar-nav .sub-menu li a {
        padding: 8px 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Mobile dropdown toggle indicator */
    .navbar-nav .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 40px; /* Space for the toggle button */
    }
    
    /* Create a separate toggle button for mobile */
    .navbar-nav .menu-item-has-children:after {
        content: '+';
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 20px;
        color: #034772;
        cursor: pointer;
        width: 30px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        z-index: 10;
    }
    
    .navbar-nav .menu-item-has-children.submenu-open:after {
        content: '-';
    }
    
    /* Remove hover behavior on mobile */
    .navbar-nav .menu-item-has-children:hover > .sub-menu {
        display: none;
        top: auto;
    }
    
    .navbar-nav .menu-item-has-children.submenu-open:hover > .sub-menu {
        display: block;
    }
    
    /* Remove the arrow from the links on mobile */
    .navbar-nav .menu-item-has-children > a:after {
        display: none;
    }
}
/* Mobile menu enhancements */
@media (max-width: 991px) {
    .navbar-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid rgba(11, 205, 240, 1);
        padding: 0 0 0 15px;
        margin: 5px 0 5px 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .navbar-nav .menu-item-has-children.show > .sub-menu {
        max-height: 500px;
    }
    
    .navbar-nav .menu-item-has-children > a:after {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-nav .menu-item-has-children.show > a:after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .navbar-nav .sub-menu li a {
        padding: 8px 15px;
    }
    
    .navbar-nav .sub-menu li:hover > a {
        padding-left: 20px;
    }
}
@media (max-width: 992px) {
    .contact-info {
		margin: 10px auto;
    }
}

@media (max-width: 767.98px) {
	.top-bar{
	display:none;
	}
	.contact-info{
		display:none !important;
	}
	.contact-info:last-child{
		display:none !important;
		margin:auto;
	}
	
}
@media (max-width: 576px) {
	.contact-info{
		display:none !important;
	}
}

@media (min-width: 992px) {
  
	.contact-info:first-child{
		display:none !important;
	}
}



/* ================================== Hero Section Css ======================================= */
.hero-section {
    background: #000000;
}

.text-white {
    color: white !important;
	text-align:left;
}

.card {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.card h4 {
    font-weight: bold;
    color: #000;
}

.fas,
.fab {
    margin-right: 5px;
}

.info-section {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hero-section .homeform {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease-in-out;
}

.wpcf7 form textarea{
	height:100px;
}
.wpcf7 form input[type="submit"] {
    background-color: #ffc107 !important;
    color: #000000;
    font-size: 18px;
    padding: 12px 20px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease-in-out;
}
.wpcf7 form .wpcf7-not-valid-tip {
    display:none;
}

@media (max-width: 991.98px) {
    .hero-section .info-section .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .info-section div {
        margin-bottom: 15px;
    }

    .info-section div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .info-section h4 {
        font-size: 1.25rem;
    }

    .info-section p {
        font-size: 0.9rem;
    }
	.hero-section .row{
		width:100%;
		margin: auto;
	}
	.container{
		width:100% !important;
	}
}


/* ============================== Training-Section Css ====================================== */

.training-section h2 {
    color: #001f3f; 
}

.box {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

.box h5 {
    color: #001f3f; 
}
.box p {
    color: #4e4e4e;
}

.fa-3x {
    color: #000; 
}

.box:hover {
    background-color: #f9f9f9; 
    transition: background-color 0.3s ease;
}

/* ============================ About Us Css ==================================== */

/* ============================ About Us Css ==================================== */

.digital-marketing-section {
    background: #ffffff;
    padding: 80px 0;
}

.digital-marketing-section .about-content {
    padding-right: 40px;
}

.digital-marketing-section .about-badge {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.digital-marketing-section .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.digital-marketing-section .about-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.digital-marketing-section .about-features {
    margin-bottom: 30px;
}

.digital-marketing-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.digital-marketing-section .feature-item i {
    color: #ffc107;
    margin-right: 12px;
    font-size: 1.1rem;
}

.digital-marketing-section .btn-learn-more {
    background: #ffc107;
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.digital-marketing-section .btn-learn-more:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Image Collage Styles */
.digital-marketing-section .image-collage {
    position: relative;
    height: 500px;
}

.digital-marketing-section .main-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.digital-marketing-section .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digital-marketing-section .secondary-images {
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.digital-marketing-section .top-image,
.digital-marketing-section .bottom-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.digital-marketing-section .top-image img,
.digital-marketing-section .bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .digital-marketing-section {
        padding: 60px 0;
    }
    
    .digital-marketing-section .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .digital-marketing-section .about-title {
        font-size: 2rem;
    }
    
    .digital-marketing-section .image-collage {
        height: 400px;
    }
    
    .digital-marketing-section .main-image {
        width: 100%;
        height: 60%;
    }
    
    .digital-marketing-section .secondary-images {
        width: 100%;
        height: 35%;
        flex-direction: row;
        top: 65%;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .digital-marketing-section .about-title {
        font-size: 1.8rem;
    }
    
    .digital-marketing-section .image-collage {
        height: 350px;
    }
}

   




.why-choose-us {
    padding: 40px 20px;
    background: #000000;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.why-choose-us .feature-image {
    width: 50px; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto 20px;
}

.why-choose-us .feature-image img {
    width: 100%; /* Make the image responsive */
    border-radius: 10px; /* Optional: add some border-radius */
}
/* Ensure that feature cards look good with the new layout */
.why-choose-us .feature-card {
    text-align: center; /* Center align text */
	min-height:200px;
}


.section-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeIn 1s ease forwards;
}

.title-icon {
    margin-right: 10px;
    font-size: 2rem;
    color: white;
    animation: bounceIcon 2s ease infinite;
}

/* Feature card design */
.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
    margin: 20px auto;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: #004065;
}

/* Feature icon design */
.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #002a47; /* Blue color */
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 91, 181, 0.6);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.4rem;
}

.feature-icon:hover {
    transform: scale(1.15);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.course-module{
    background-color: #F0F8FF;
}

.course-module .col .image-box{
    background-color:white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-right: 10px;
}


.course-module .col img{
    width: 30px;
    object-fit:cover;
   margin: 10px;
}

.course-module .btn{
	background: #000000;
	padding:12px 20px;
	  transition: transform 0.3s ease;
  animation: buttonPulse 2s infinite; /* Applying the animation */
}

/* .course-module .btn:hover{
	background-color:#F0F8FF !important;
	color:#034772;
	border:2px solid #034772;
} */


/* .course-module {
    background-color: #e7f0f7;
    color: #034078;
}

.course-module h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.decorative-image {
    width: 150px;
    height: auto;
    margin: 20px auto;
}

.course-module p {
    font-size: 1.1rem;
}

.course-feature {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.course-feature i.icon {
    font-size: 40px;
    color: #034078;
    margin-bottom: 10px;
}

.course-feature p {
    font-size: 16px;
    margin: 0;
    text-wrap: nowrap;
}

.btn-primary {
    background-color: #034078;
    border-color: #034078;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 25px;
}

.btn-primary:hover{
    background-color: white;
    border: 2px solid #034078;
    color: #003456;
} */

.tools-container {
    background-color: #DCF1FD;
    padding: 20px;
}


.tools-container h2 {
    font-size: 2rem;
    color: #002a47;
    margin-bottom: 20px;
	
}
.tools-container .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 2px solid black;
}

.tools-container .slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.tools-container .slider-items img {
    width: 10%;
    margin: 10px;

}
.job-opportunities {
    background-color: #f0f8ff;
    text-align: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.job-opportunities h2 {
    font-size: 2em;
    color: #002a47;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.job-card {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #003456;
    border-radius: 12px;
    transition: all 0.5s ease;
    min-height: 300px;
	overflow:hidden;
    width: 100%;  /* Ensures all cards have the same width */
    min-width: 250px; /* You can adjust the max width as per your design */
    margin: auto; /* Center the cards */
}


.job-card h3{
    font-size: 1.3rem;
}
.job-card p{
    font-size: 1rem;
}

.job-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-box {
/*     background: #002a47; */
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.job-opportunities i {
    font-size: 1.3rem;
}

/* Ensure uniform grid for all boxes */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


.course-highlights {
   background:#000000;
    color: white;
}

.course-highlights h2 {
    font-weight: bold;
	color:white;
}

     .speciality-card {
            background-color: white;
            color: white;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
		 	min-height:250px;
        }
.speciality-card p{
	color:black;
}
.book-btn{
	border:2px solid white;
	color:white;
	
	
}
.book-btn:hover{
	background-color:white;	
	color:black;
}
        .speciality-card img {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
        }

        .speciality-title {
            font-size: 1.25rem;
            font-weight: bold;
			color:black;
        }
.carousel-item {
    padding: 20px 0;
}

.certification-img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-img:hover {
    transform: scale(1.05);
}

.carousel-item .col-md-4 {
    padding: 0 15px; /* Adds gap between columns */
}

/* Adjusting the slider controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
    padding: 10px;
}

/* Responsive padding */
@media (max-width: 768px) {
    .carousel-item .col-md-4 {
        padding: 0 5px;
    }
}

.tools-section {
    padding: 60px 0;
    color: #fff;
}
.tools-section h2 {
    font-size: 36px;
    font-weight: bold;
}
.tools-section p {
    font-size: 18px;
    margin-bottom: 40px;
}
.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.tool-box {
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.tool-box:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}
.tool-logo {
    max-width: 100px; /* Limit logo width */
    height: auto;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
  }

.learn-dm-course{
    background-color: #DCF1FD;
    width: 100%;
}
.digital-course-section {
    text-align: center;
    padding: 50px 0;
   
}
.course-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.course-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}
.img-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
	object-fit:cover;
	background-position:center;
}
.btn-view-more {
    background-color: #007bff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
.btn-view-more:hover {
    background-color: #0056b3;
    color: #fff;
}
.faq-section {
    padding: 50px 0;
}
.faq-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.nav-tabs .nav-link {
    font-weight: bold;
    color: #333;
}
.nav-tabs .nav-link.active {
    color:rgba(36, 36, 225, 1);
    border-color: rgba(36, 36, 225, 1);
}
.accordion-button {
    font-weight: bold;
    color: #333;
}
   .footer {
        background-color: #000;
        padding: 50px;
        color: #333;
        width: 100%;
    }
    .footer .container {
        background-color: #000000;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
		max-width:fit-content;
    }
    .footer-logo img {
        width: 250px;
        height: auto;
    }
    .footer p, .footer a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }
    .footer a:hover {
        color: #004d80;
    }
    .footer h5 {
        font-size: 16px;
        font-weight: bold;
        color: #ffc107;
        margin-bottom: 15px;
    }
    .footer .social-icons a {
        color: white;
        background: #000000;
        font-size: 16px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 8px;
        transition: transform 0.3s, background-color 0.3s;
    }
    .footer .social-icons a:hover {
        background-color: black;
        transform: scale(1.1);
    }
    .footer .line {
        height: 1px;
        width: 100%;
        background-color: #ddd;
        margin: 20px 0;
    }
    .footer .popular-tags a {
        display: inline-block;
        margin: 5px;
        padding: 5px 15px;
        font-size: 13px;
        color: black;
        background: #ffc107;
		
        border-radius: 20px;
        text-decoration: none;
        transition: background-color 0.3s, transform 0.3s;
    }
    .footer .popular-tags a:hover {
        background-color: black;
        transform: translateY(-2px);
    }
    .footer-bottom {
       background: #000000;
        padding: 10px 20px;
        text-align: center;
        font-size: 14px;
        color: white;
    }
    .footer-bottom .container p {
        margin: 0;
    }
    @media (max-width: 767px) {
        .footer .container, .footer-bottom .container {
            padding: 20px;
        }
        .footer h5 {
            font-size: 14px;
        }
        .footer p, .footer a {
            font-size: 12px;
        }
    }
.certification-seciton{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px ;
}

.certification-seciton h2{
    margin:10px 0 40px 0;
}
.slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 0 50px; /* Left and right padding */
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slides img {
    width: 33.33%; /* 3 images shown at a time */
    border-radius: 10px;
    flex-shrink: 0; /* Prevent image shrinkage */
    border: 2px solid black;
}

.nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: lightgray;
    border-radius: 50%;
    cursor: pointer;
}

.active {
    background-color: gray;
}

@media (max-width: 768px) {
    .slides img {
        width: 100%; /* Full width on smaller screens */
    }
    .slider {
        padding: 0 20px; /* Reduce padding on smaller screens */
    }
}

.slider-section {
    padding: 50px 0;
    background-color: #004673;
}

.slider-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.slider-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: white;
}

.slider-section .slider-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: hidden; /* Hide overflow to prevent seeing clones */
}

.slider-section .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* Width adjusted dynamically in JS based on image count */
}

.slider-section .slider img {
    width: 150px; /* Fixed width for images */
    margin: 0 10px; /* Margin around images */
    background-color: white;
    padding: 10px; /* Padding inside image */
    border-radius: 10px; /* Rounded corners */
}

.slider-section .indicators {
    margin-top: 20px; /* Space above the dots */
    text-align: center; /* Center the dots */
}

.slider-section .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb; /* Default dot color */
    border-radius: 50%;
    display: inline-block;
}

.slider-section .active {
    background-color: #49bfe0; /* Active dot color */
}


.student-reviews h2 {
    font-size: 2.5rem;
    color: #0d0d61; /* Your preferred color */
  }
  
  .student-reviews p {
    font-size: 1rem;
  }
  
  .student-reviews .card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .student-reviews .carousel-inner {
    display: flex;
  }
  
  .student-reviews .carousel-item {
    display: flex;
  }
  
  .student-reviews .card-body img {
    object-fit: cover;
  }
  
  .carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(100%);
  }
  .splide__slide img{
    width: 100% !important;
    border: 3px solid black;
}

 .splide__track{
    padding: 20px;
}
.certification-section{
	padding:50px 0;	
}
.certification-section h2,p{
	text-align:left;
}

.enroll-now-btn{
	background: #000000;
	color:white;
	padding:12px 25px;

}
.enroll-now-btn i{
	margin-left:2px;
}

.enroll-now-btn:hover{
	background:#000000;
	color:white;
	border:2px solid #034772;
}


#popup-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90%;
    max-width: 500px; /* Adjust max width as needed */
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #333;
}

#popup-form .wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
	max-height:500px;
}

/* #popup-form .wpcf7-not-valid-tip,.wpcf7-response-output {
   display:none;
}
 */
#popup-form .wpcf7-form input[type="text"],
#popup-form .wpcf7-form input[type="email"],
#popup-form .wpcf7-form input[type="tel"],
#popup-form .wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#popup-form .wpcf7-form textarea {
  	height:100px;
}

#popup-form .wpcf7-form input[type="text"]:focus,
#popup-form .wpcf7-form input[type="email"]:focus,
#popup-form .wpcf7-form input[type="tel"]:focus,
#popup-form .wpcf7-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}

#popup-form .wpcf7-form input[type="submit"] {
    background-color: #005177;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
	width:100%;
}

#popup-form .wpcf7-form input[type="submit"]:hover {
    background-color: white;
	border:1px solid #005177;
	color:#005177;
}

.page-header {
     background: #F5B65C !important; 
    padding: 60px 0;
    text-align: center;
    color: white;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
	text-align:center !important;
	color :black
}
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex !important;
	flex-direction:row;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #ffffffb3;
}
.breadcrumb-item a {
    color: #ffffffb3;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: white;
	background-color:transparent;
}

.our-course-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.our-course-section .course-box {
  height: 320px;
  border-radius: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.our-course-section .course-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.our-course-section .image-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-course-section .image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.our-course-section h5 {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #07466b;
}

.our-course-section p {
  font-size: 0.95rem;
  color: #555;
  padding: 0 10px;
  line-height: 1.4;
text-align:center;
	
}

.our-course-section a{
	text-decoration:none;
}


.contact-info-box h2{
	font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: black;
}
.contact-info-box a{
	font-weight: 400;
    font-size: 14px;
    line-height: 1.69;
    letter-spacing: 0.5px;
    color: #000;
    opacity: 0.8;
    margin-bottom: 0;
    margin-top: 0px;
    display: block;
	text-decoration:none;
}

.contact-info-box p{
	   font-weight: 400;
    font-size: 14px;
    line-height: 1.69;
    letter-spacing: 0.5px;
    color: #000;
    opacity: 0.8;
    margin-bottom: 0;
    margin-top: 0px;
    display: block;
	text-decoration:none;
}
.contact-info-box:hover{
	  background: #000000;
	color:white !important;
	border:none !important;
}
.contact-info-box:hover h2{
	color:white;
}
.contact-info-box:hover p{
	color:white;
}
.contact-info-box:hover a{
	color:white;
}

    .blog-box {
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
            background-color: #f9f9f9;
            transition: box-shadow 0.3s;
        }
        .blog-box:hover {
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }
		
.blog-box a:first-child{
	width:100%;
}

        .blog-box img {
            width: 100%;
            height: auto !important;
			object-fit:contain;
        }
        .blog-content {
            padding: 15px;
        }
        .category-tag {
            background-color:  rgba(36, 36, 225, 1);
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            position: absolute;
            bottom: 15px;
            left: 15px;
        }
        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #666;
            margin-top: 10px;
        }
        .blog-footer i {
            margin-right: 5px;
        }


.main-blog-section .blog-title{
	text-decoration:none;
	color:black;
	
}
.pagination{
	display:flex;
	justify-content:center;
	gap:10px;
}
.pagination a{
	text-decoration:none;
	background-color:#07466b;
	color:white;
	padding:5px 10px;
}.post-meta {
    font-size: 14px;
    color: #555;
}

.post-thumbnail img {
    border-radius: 5px;
}

.post-tags {
    margin-top: 20px;
}

.comments-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}
  .digital-marketing-tools {
            background:#000000;
            color: white;
            padding: 50px 0;
        }

        .digital-marketing-tools h2 {
            color: #ffffff;
            font-weight: bold;
        }

        .digital-marketing-tools .splide__slide img {
            width: 100%;
            height: auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
			border:none;
        }
       
.section-background {
      background-color: #d0e8ff;
      padding: 50px 0;
    }
.section-background .container{
	text-align:center;
}
    .section-background .section-title {
      color: #0d0d61;
      font-weight: bold;
      text-align: center;
    }
    .section-description {
      color: #333;
      text-align: center;
      margin-bottom: 30px;
    }
    .img-container {
      border-radius: 10px;
      overflow: hidden;
    }
.img-container img{
	object-fit:cover;
	height:300px;
	width:100%;
}

    .view-more-btn {
      display: inline-block;
      margin: 30px auto;
     background: #000000;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
    }
    .view-more-btn:hover {
      background:#000000;
      color: white;
		border:1px solid #034772;
    }



 .our-course-section {
      padding: 60px 0;
      background-color: white;
    }

    .our-course-section .row {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
		align-items:center;
    }

    .our-course-section .col-md-3 {
      flex: 1 1 22%;
      max-width: 22%;
    }

    .our-course-section .card {
      position: relative;
      background-color: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #e0e0e0;
	  Width:300px;
      height: 400px; /* Set a fixed height to manage card layout */
    }

    .our-course-section .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .our-course-section .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .our-course-section .card-body {
      padding: 10px;
      text-align: center;
    }

    .our-course-section .card h3 {
      font-size: 1.2rem;
      color: #333;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .our-course-section .card p {
      color: #777;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    .our-course-section .card-footer {
      position: absolute;
      bottom: -60px; /* Initially hide the footer below the card */
      left: 0;
      right: 0;
       background:#000000;
      color: #fff;
      text-align: center;
      padding: 10px;
      font-weight: bold;
      letter-spacing: 1px;
      transition: bottom 0.3s ease, background-color 0.3s ease;
    }

    .our-course-section .card:hover .card-footer {
      bottom: 0; /* Move it to the visible position when the card is hovered */
      background: #000000;/* Change the background color on hover */
    }

    /* Responsiveness */
@media (max-width: 1400px){
	.our-course-section .col-md-3 {
        flex: 1 1 100%;
        max-width:25%;
		
		 
      }
}
    @media (max-width: 768px) {
      .our-course-section .col-md-3 {
        flex: 1 1 100%;
        max-width:40%;
		
		 
      }
		.our-course-section{
			width:100%;
		}
		.our-course-section .container{
	margin:0 ;
	padding:0;
}
		.our-course-section .row{
			margin:0;
			padding:0;
			width:700px;
			
		}
    }

    @media (max-width: 480px) {
      .our-course-section .col-md-3 {
        flex: 1 1 100%;
        max-width: 100%;
		display:flex;
		justify-content:center;
      }
		.our-course-section .container .row {
			margin: 0 auto !important;
			width:100%;
			
			
		}
    }

@media (max-width: 1024px) {  
	.our-course-section {
		width:100%;
	}
}

/* Define the pulse and vibration animation */
@keyframes buttonPulse {
  0% {
    transform: scale(1) rotate(0deg); /* Normal size */
  }
  25% {
    transform: scale(1.1) rotate(2deg); /* Slightly bigger, rotate a little */
  }
  50% {
    transform: scale(0.9) rotate(-2deg); /* Slightly smaller, rotate opposite */
  }
  75% {
    transform: scale(1.1) rotate(2deg); /* Slightly bigger, rotate again */
  }
  100% {
    transform: scale(1) rotate(0deg); /* Back to normal size */
  }
}

/* Apply animation to the button */
.enroll-btn {
  padding: 12px 25px;
  background-color: #002a47;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: buttonPulse 2s infinite; /* Applying the animation */
}

/* Optional: Hover effect to make the button more interactive */
.enroll-btn:hover {
  animation: buttonPulse 1.5s infinite; /* Faster animation on hover */
}

#form-heading{
	text-align:center;
	font-size:20px;
}


.header-course-section {
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-course-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: rgba(0, 0, 0, 0.6); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
	width:100%;

}
.header-course-section .overlay h1{
	text-align:center;
}

.header-course-section img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.header-course-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.header-course-section .breadcrumb-item a:hover {
    color: #000;
}

.header-course-section .breadcrumb-item.active {
    color: #000;
}

@media (max-width:768px){
	.header-course-section .overlay h1{
		font-size:1.5rem;	
}
	.header-course-section{
		height:150px;
	}
}

.course-page-duration .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 220px;
        }
        .course-page-duration .card:hover {
            transform: translateY(-8px);
            box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
        }
        .course-page-duration .card-header {
            font-size: 1rem;
            font-weight: bold;
             background:#000000;
            color: #fff;
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .course-page-duration .card-header i {
            font-size: 1.5rem;
        }
        .course-page-duration .badge-custom {
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            display: inline-block;
        }
        .course-page-duration .btn-custom {
            width: 100%;
            font-weight: bold;
            margin-top: 0.5rem;
            transition: background 0.3s;
			background-color: rgba(36, 36, 225, 1);
			color:white;
        }
        course-page-duration .btn-custom:hover {
              background: linear-gradient(
    90deg,
    rgba(36, 36, 225, 1) 35%,
    rgba(11, 205, 240, 1) 100%
  ) !important;
            color: #fff;
        }
        .course-page-duration .info-text {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.8rem;
        }
        .course-page-duration .card-body p, .card-body span {
            margin-bottom: 0.5rem;
        }

.course-introduction {
  margin: 50px auto;
}
.course-introduction ul{
	text-align:left;
}
.course-introduction ol{
	text-align:left;
}

.course-introduction img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  width: 100%; /* Ensures the image scales properly */
}

.course-introduction h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  color:  rgba(36, 36, 225, 1);
  text-align:left;
}

.course-introduction h1 {
  text-align: left !important;
}


.course-introduction .single-course-content p{
	text-align:justify;
}

/* Responsive adjustments */
@media (max-width: 992px) { /* Medium to small devices */
	.course-introduction h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) { /* Tablets */
	.course-introduction .row{
		flex-direction:column !important;
	}
	.course-introduction img{
		width:100%;
	}
	.course-introduction h1 {
    font-size: 1.8rem;
  }
	.course-introduction .col-4{
		width:100% !important;
	}
}

@media (max-width: 576px) { /* Mobile phones */
 	.course-introduction .row{
		flex-direction:column !important;
	}
	.course-introduction img{
		width:100%;
	}
	
	.course-introduction h1 {
    font-size: 1.5rem;
  }
	.course-introduction .col-4{
		width:100% !important;
	}
}
.page-course-modules{
	background-color:#F5F7FF;
	padding:50px 100px;
	width:100%;
}
.page-course-modules h2 {
    font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid black;
  color: rgba(36, 36, 225, 1) ;
  text-align:left;
}
.page-course-modules .course-modules-des{
	text-align:justify !important;
}
.page-course-modules .module {
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
	border:2px solid black;
}
.page-course-modules span{
	color:black;
}
.page-course-modules .module:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.page-course-modules .module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #007BFF;
    font-size: 1.1em;
    font-weight: 600;
	
}

.page-course-modules .module-content {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    animation: slideDown 0.3s ease;
}
.page-course-modules .module.open .module-content {
    display: block;
}
.page-course-modules .arrow {
    font-size: 1.5em;
    color: rgba(36, 36, 225, 1)!important ;
    transition: transform 0.3s;
	border:1px solid black;
	width:40px ;
	height:40px ;
	border-radius:50%;
}
.page-course-modules .module.open .arrow {
    transform: rotate(180deg);
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) { /* Tablets */
	.page-course-modules{
		width:100%;
		padding:10px 15px;
	}
	.page-course-modules .module-header span:nth-child(1){
	width:300px;
}
}

@media (max-width: 576px) { /* Mobile phones */
 	.page-course-modules{
		width:100%;
		padding:10px 15px;
	}
}


.course-working-process{
	padding:50px 0;
}


 .course-working-process .process-section {
      text-align: center;
      max-width: 1200px;
      margin: auto;
      position: relative;
    }
    .course-working-process .process-title {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      margin-bottom: 40px;
    }
    .course-working-process .step-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      position: relative;
      gap: 20px;
    }
    .course-working-process .step-box {
      background-color: white;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      width: 140px;
      text-align: center;
      transition: transform 0.3s;
      cursor: pointer;
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
    }
    .course-working-process .step-box:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }
    .course-working-process .step-icon {
      font-size: 30px;
      color: #fff;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4a90e2, #0056b3);
      transition: background 0.3s ease;
    }
    .course-working-process .step-icon:hover {
      background: linear-gradient(135deg, #5cb85c, #028a3b);
    }
    .course-working-process .step-title {
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }
    .course-working-process .step-number {
      font-size: 12px;
      color: #777;
      margin-top: 5px;
    }
    .course-working-process .connector-line {
      position: absolute;
      top: 50%;
      left: 10%;
      right: 10%;
      height: 4px;
      background: repeating-linear-gradient(90deg, #4a90e2, #4a90e2 10px, transparent 10px, transparent 20px);
      animation: dash 2s linear infinite;
      z-index: 0;
      transform: translateY(-50%);
    }
    @keyframes dash {
      0% { background-position: 0; }
      100% { background-position: 20px; }
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
     .course-working-process .step-container {
        gap: 15px;
      }
      .course-working-process .step-box {
        width: 130px;
      }
    }
    @media (max-width: 992px) {
      .course-working-process .step-container {
        justify-content: space-around;
      }
    }
    @media (max-width: 768px) {
      .course-working-process .connector-line {
        top: auto;
        bottom: 10px;
        left: 10%;
        right: 10%;
      }
      .course-working-process .step-box {
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
      }
    }
    @media (max-width: 576px) {
      .course-working-process .step-container {
        flex-direction: column;
      }
      .course-working-process .connector-line {
        width: 4px;
        height: 90%;
        left: 50%;
        top: 5%;
        right: auto;
        transform: translateX(-50%);
        background: repeating-linear-gradient(180deg, #4a90e2, #4a90e2 10px, transparent 10px, transparent 20px);
      }
    }
 
.certificate-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px;
       background: #000000;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
      margin: 40px auto;
    }
    .certificate-section .certificate-image {
      width: 45%;
      max-width: 600px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      animation: zoomIn 1s ease-out;
    }
    .certificate-section .certificate-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .certificate-section .certificate-image:hover img {
      transform: scale(1);
    }
    .certificate-section .content {
      width: 50%;
      color: white;
    }
    .certificate-section .content h2 {
      font-size: 36px;
      margin-bottom: 20px;
      animation: slideIn 1s ease-out;
    }
    .certificate-section .content p {
      font-size: 18px;
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeIn 2s ease-out forwards;
      animation-delay: 1s;
    }
    .certificate-section .content ul {
      list-style: none;
      padding: 0;
    }
    .certificate-section .content ul li {
      font-size: 16px;
      margin-bottom: 15px;
      opacity: 0;
      animation: fadeIn 2s ease-out forwards;
      animation-delay: 1.5s;
    }
    .certificate-section .content ul li i {
      color: #ffcc00;
      margin-right: 10px;
    }
    @keyframes zoomIn {
      0% {
        transform: scale(0);
      }
      100% {
        transform: scale(1);
      }
    }
    @keyframes slideIn {
      0% {
        transform: translateX(-50px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
        opacity: 1;
      }
    }
    @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

@media (max-width: 768px) { /* Tablets */
	.certificate-section{
		flex-direction:column;
		padding:0;
	}
	.certificate-section .content{
		padding:10px;
		width:100%;
		text-align:left;
		
	}
	.certificate-section .content h2{
		font-size:1.7rem;
		margin:10px auto;
	}
	.certificate-section .content p{
		font-size:1rem;
	}
	.certificate-section .certificate-image{
		width:100%;
		padding:10px;
		border:none;
		margin-top:20px;
	}
}

.why-choose-us-page ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .why-choose-us-page img {
    max-width: 100%;
    height: auto;
}
.why-choose-us-page span, a, a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.why-choose-us-page .section-head {
  margin-bottom: 60px;
}
.why-choose-us-page .section-head h4 {
  position: relative;
  padding:0;
  color: rgba(36, 36, 225, 1);
  line-height: 1;
  letter-spacing:0.3px;
  font-size: 34px;
  font-weight: 700;  
  text-align:center;
  text-transform:none;
  margin-bottom:30px;
}
.why-choose-us-page .section-head h4:before {
  content: '';
  width: 60px;
  height: 3px;
  background:  rgba(36, 36, 225, 1);
  position: absolute;
  left: 0px;
  bottom: -10px;
  right:0;  
  margin:0 auto;
}
.why-choose-us-page .section-head h4 span {
  font-weight: 700;
  padding-bottom: 5px;
  color: rgba(36, 36, 225, 1);
}
.why-choose-us-page p.service_text{
  color:#cccccc !important;
  font-size:16px;
  line-height:28px;
  text-align:center;    
}
.why-choose-us-page .section-head p, p.awesome_line{
  color:#818181;
  font-size:16px;
  line-height:28px;
  text-align:center;  
}

.why-choose-us-page .extra-text {
    font-size:34px;
    font-weight: 700;
    color:#2f2f2f;
    margin-bottom: 25px;
    position:relative;
    text-transform: none;
}
.why-choose-us-page .extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}
.why-choose-us-page .extra-text span {
    font-weight: 700;
    color:#f91942;
}
.why-choose-us-page .item {
    background: #fff;
    text-align: center;
    padding: 30px 25px;
    -webkit-box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow:0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border:5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.why-choose-us-page .item:hover{
    background: rgba(36, 36, 225, 1);
    box-shadow:0 8px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.why-choose-us-page .item:hover .item, .item:hover span.icon{
    background:#fff;
    border-radius:10px;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.why-choose-us-page .item:hover h6, .item:hover p{
    color:#fff;
    -webkit-transition: all .5s ease 0;
    transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}
.why-choose-us-page .item .icon {
    font-size: 40px;
    margin-bottom:25px;
    color:  rgba(36, 36, 225, 1);   
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}
.why-choose-us-page .item .feature_box_col_one{
   background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item .feature_box_col_two{
   background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item .feature_box_col_three{
    background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item .feature_box_col_four{
   background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item .feature_box_col_five{
    background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item .feature_box_col_six{
    background:rgba(0, 147, 38, 0.15);
    color: rgba(36, 36, 225, 1);
}
.why-choose-us-page .item p{
    font-size:15px;
    line-height:26px;
}
.why-choose-us-page .item h6 {
    margin-bottom:20px;
    color:#2f2f2f;
}
.why-choose-us-page .mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}
.why-choose-us-page .mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}
.why-choose-us-page .mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}
.why-choose-us-page .skills {
    padding-top:0px;
}
.why-choose-us-page .skills .prog-item {
    margin-bottom: 25px;
}
.why-choose-us-page .skills .prog-item:last-child {
    margin-bottom: 0;
}
.why-choose-us-page .skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}
.why-choose-us-page .skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius:20px;
    position: relative;
}
.why-choose-us-page .skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.why-choose-us-page .skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight:600;    
    color: #fff;
    background:rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}


.faq-section-page {
   
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.faq-section-page .faq-item {
    border-bottom: 1px solid #ddd;
}
.faq-section-page .faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    cursor: pointer;
    transition: background 0.2s;
	font-size:1rem;
}
.faq-section-page .faq-title:hover {
    background-color: #f1f1f1;
}
.faq-section-page .faq-title i {
    color: #666;
}
.faq-section-page .faq-content {
    display: none;
    padding: 15px 20px;
    background-color: #fafafa;
    color: #333;
	text-align:left !important;
}
.faq-section-page .faq-content p {
    margin: 0;
	text-align:left !important;
}


#sidebar ul{
	list-style-type:none;
	text-align:left;
}

#sidebar ul li a{
	text-decoration:none;
	color:black;
	text-align:left;
}
#sidebar #searchform input[type="submit"]{
	background:#034772;
	padding:2px 20px;
	color:white;
}



.error-404 .wrapper {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.error-404 svg{
	width: 50%;
  max-height: 225px;
  height: auto;
  margin: 0 0 15px;
}
.error-404 h1{
	font-size:48px;
	margin:0;
}
.error-404 p{
	 font-size: 16px;
  width: 35%; 
  margin: 16px auto 24px;
  text-align: center;
}
.error-404 button {
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 16px;
  cursor: pointer;
  background: #034772;
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px 0 #ccc;
}

 .next-level-section {
      background: #000000;
      padding:50px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      font-weight: bold;
	 font-size:20px;
    }
    .next-level-button {
      background-color: white;
      color: #004d80;
      font-weight: bold;
      border-radius: 5px;
      padding: 8px 16px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }
    .next-level-button:hover {
      color: #004d80;
    }
    .next-level-button i {
      margin-left: 5px;
    }
   @media (max-width: 767.98px) {
	 .next-level-section{
	display:none;
	}
	
}

 .whatsapp-chat {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        z-index: 1000;
        animation: bounce 2s infinite;
    }
    .whatsapp-chat img {
        width: 100%;
        height: 100%;
    }
    .whatsapp-chat:hover {
        transform: scale(1.1);
        transition: transform 0.3s;
    }

    /* Bounce Animation */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }

.wpcf7-response-output{
	margin-top:0px;
	padding-top:0px;
	position:relative;
	top:-50px;
}

        .form-container-download {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            width: 100%;
            position: relative;
        }

        .form-container-download h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
            text-align: center;
        }

        .form-container-download label {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
            color: #555;
        }

        .form-container-download input, 
        .form-container-download textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-container-download input:focus, 
        .form-container-download textarea:focus {
            border-color: #004d80;
        }

        .form-container-download textarea {
            resize: none;
        }

        .form-container-download .submit-btn {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            background: rgba(36, 36, 225, 1);
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-container-download .submit-btn:hover {
            background: #003a61;
        }

        .error {
            color: red;
            font-size: 13px;
            margin-bottom: 10px;
        }

        /* Modal Styling */
        .modal-download {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-download.active {
            display: flex;
        }

        .close-btn-download {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #004d80;
            font-size: 20px;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            line-height: 26px;
            text-align: center;
            cursor: pointer;
        }


.thank-you-box{
	width:420px;
	text-align:center;
	margin:50px auto;
	padding:20px 40px;
	box-shadow:0px 4px 12px rgba(0,0,0,0.2);
	border-radius:17px;
	line-height:30px;
	
}
.thank-you-box i{
	font-size:50px;
	color:rgba(36, 36, 225, 1);
}
.thank-you-box #backToSiteBtn{
	background-color:rgba(36, 36, 225, 1);
	padding:10px 20px;
	color:white;
	border:none;
	border-radius:10px;
}
.awards-section {
      background: linear-gradient(135deg, #f5f7fa, #e3eff9);
      padding: 40px 20px;
    }

    .awards-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      font-weight: bold;
      color: #333;
    }

    .awards-section .award-box {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      margin-bottom: 20px;
      height: 250px;
      width: 400px;
	  border:4px solid white;
    }

    .awards-section .award-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .awards-section .award-box:hover img {
      transform: scale(1.1);
    }

    .awards-section .award-box:hover .award-text {
      opacity: 1;
      bottom: 0;
    }

    .awards-section .award-box:hover {
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      transform: translateY(-5px);
    }

    .awards-section .award-text {
      position: absolute;
      bottom: -100%;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 15px;
      text-align: center;
      font-size: 1rem;
      opacity: 0;
      transition: opacity 0.3s ease, bottom 0.3s ease;
    }

    .awards-section .award-text h5 {
      font-size: 1.3rem;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .awards-section .award-text p {
      font-size: 0.9rem;
    }


    .awards-section .center-image img {
      display: block;
      margin: auto;
      max-width: 70%;
      border-radius: 20px;
    }
.single-blog-container{
	 padding:20px;
	 background: #f9f9f9;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	
}

.single-blog-container h1 {
    font-size: 32px !important;
}

.single-blog-container h2 {
    font-size: 24px !important;
}
.single-blog-container h3 {
    font-size: 20px !important;
}
.single-blog-container  h4 {
    font-size: 18px !important;
}

.single-blog-container  p {
    font-size: 16px !important;
}
.single-blog-container ul {
    font-size: 16px !important;
}
.single-blog-container ol {
    font-size: 16px !important;
}
.single-blog-container li {
    font-size: 16px !important;
}
.single-blog-container  a  {
    font-size: 16px !important;
    color: #007bff !important;
}
.single-blog-container  a:hover {
    color: #0056b3 !important;
}


.toc-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.toc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2424e1 0%, #0bcdf0 100%);
}

.toc-section #ez-toc-container {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.toc-section .ez-toc-title-container {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(36,36,225,0.1);
    position: relative;
}

.toc-section .ez-toc-title {
    font-size: 24px;
    background: linear-gradient(90deg, #2424e1 0%, #0bcdf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.toc-section nav {
    margin-top: 20px;
}

.toc-section ul.ez-toc-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.toc-section ul.ez-toc-list li {
    margin: 12px 0;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.4s ease;
    background: rgba(255,255,255,0.7);
}

.toc-section ul.ez-toc-list li:hover {
    background: rgba(36,36,225,0.05);
    transform: translateX(10px);
}

.toc-section ul.ez-toc-list li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    display: block;
}

.toc-section ul.ez-toc-list li a:hover {
    color: #2424e1;
    padding-left: 5px;
}

.toc-section ul.ez-toc-list li.active > a {
    color: #2424e1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .toc-section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .toc-section .ez-toc-title {
        font-size: 20px;
    }
    
    .toc-section ul.ez-toc-list li {
        padding: 6px 12px;
    }
    
    .toc-section ul.ez-toc-list li a {
        font-size: 15px;
    }
}





.single-blog-container .blog-header {
  padding: 20px;
  border-radius: 8px;
  text-align: left;
}

.single-blog-container .breadcrumb {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.single-blog-container .breadcrumb a {
  color: #007bff;
  text-decoration: none;
}

.single-blog-container .breadcrumb a:hover {
  text-decoration: underline;
}

.single-blog-container .blog-title {
  font-size: 28px;
  color: #333;
  margin: 10px 0;
  font-weight: bold;
}

.single-blog-container .blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
  align-items: center;
}

.single-blog-container .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-blog-container .meta-item i {
  color: #007bff;
  font-size: 16px;
}

.single-blog-container .blog-thumbnail {
    margin: 0;
    background: #f9f9f9;
    border-radius: 10px;
/*     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}


.single-blog-container .image-container img {
    width: 100%;
    height: 100% !important;
	object-fit:cover;
    border-radius: 10px;
}

.single-blog-container .form-container {
    padding: 20px;
	background-color:white;
	  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	 border-radius:20px;
}

.single-blog-container .form-heading {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.single-blog-container .form-group {
    margin-bottom: 15px;
}

.single-blog-container .form-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.single-blog-container .form-group input,
.single-blog-container .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.single-blog-container .form-group textarea {
    resize: none;
}

.single-blog-container .btn-submit {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.single-blog-container .btn-submit:hover {
    background: #0056b3;
}


.single-blog-container  .blog_introduction p{
	text-align:justify;
}

.single-blog-container .blog-content p{
	text-align:justify
}

.cta-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1542744174-7c97c32b00b4?q=80&w=2047&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Replace with actual background image URL */
    background-size: cover;
    background-position:20% 70%;
    padding: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-top: 30px;
	margin-bottom:30px;
  
  }
  
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: bold;
  }
  
  .cta-content span {
    color: #f08b0c; /* Highlight color for "Top Crew Aviation" */
  }
  
  .cta-button {
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
  }
  
  .cta-button a {
    background-color: white;
    color: black;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .cta-button a:hover {
    background-color: #d0750a;
  }
  
  @media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }
  
    .cta-button {
        margin-top: 20px;
    }
  }
  
  @keyframes pulse {
  0% {
    transform: scale(1); /* Original size */
  }
  50% {
    transform: scale(1.4); /* Slightly bigger */
  }
  100% {
    transform: scale(1); /* Back to original size */
  }
  }
  
  @media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-button {
    margin-top: 20px;
  }
}

.page-content-container p{
	text-align:left;
}
#ez-toc-container{
	width:100% !important;
	margin-top:20px;
}
#ez-toc-container a{
	font-size:20px;
}

.content-scroll-box{
	   width: 100% !important; 
    max-width: 1200px; 
    margin: 20px auto; 
    padding: 22px; 
    background-color: white; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
    overflow-y: auto; 
    height: 200px; 
	text-align:left;
}
.content-scroll-box p{
	text-align:left;
		white-space: nowrap;
}
.content-scroll-box::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.content-scroll-box::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 10px; /* Rounded scrollbar thumb */
}

.content-scroll-box::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker color on hover */
}

.content-scroll-box::-webkit-scrollbar-track {
    background: white; /* Track color of the scrollbar */
    border-radius: 10px;
}

.faq-section {
  padding: 16px 32px;
}

.faq-section h2 {
  font-size: 25px;
}

.faq-section .line {
  width: 200px;
  height: 4px;
  background-color: rgb(3, 71, 114);
  margin: 10px 0 20px 0;
}

.faq-section .accordion{
	margin-bottom:20px;
}
.faq-section .accordions {
  background-color: white;
  text-align: left;
  padding: 16px 32px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.faq-section .accordions .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}

.faq-section .accordions .question h4 {
  font-size: 18px;
}

.faq-section .accordions .ans {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: all 0.3s ease;
}

.faq-section .accordions .ans p {
  text-align: left;
  margin: 0;
}

.faq-section .accordions .ans.activefaq {
  max-height: 200px; /* Ensure enough space to reveal the content */
  padding: 10px 0;
}

.faq-section .icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-section .icon.activefaq {
  transform: rotate(-180deg);
}


.hero-banner-section {
    color: white;
    padding: 50px 0;
}

.hero-banner-section .banner-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Content container to hold image and form */
.hero-banner-section .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
	gap:20px;
}

/* Image Banner Styles */
.hero-banner-section .image-banner {
    width: 70%;
}

.hero-banner-section .image-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Container Styles */
.hero-banner-section .form-container {
    width: 30%;
   background:#000000;
    padding: 30px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
	height:100%;
}

.hero-banner-section .form-container .g-recaptch{
	display:none !important;
}

.hero-banner-section .form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
	color:white;
}

.hero-banner-section .form-group {
    margin-bottom: 20px;
}

.hero-banner-section .form-group input {
    width: 100%;
    padding: 12px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
}

.hero-banner-section .form-group input:focus {
    border-color: #034772;
    outline: none;
}

.hero-banner-section .submit-btn {
    background-color: white !important;
    color: white;
    border: none;
    padding: 15px 30px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.hero-banner-section .wpcf7 form input[type="submit"]{
	background:white !important;
	color:black;
}

.hero-banner-section .submit-btn:hover {
    background-color: #025a89;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-banner-section .content {
        flex-direction: column;
        align-items: center;
    }

    .hero-banner-section .banner {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-banner-section .form-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-banner-section .form-container {
        width: 90%;
    }

    .hero-banner-section .submit-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
	.hero-banner-section .image-banner{
		width:90%;
	}
}

   .placement-section {
            text-align: center;
            padding: 50px 20px;
        }
        .placement-section h1 {
            font-size: 2.5rem;
            color:  rgba(36, 36, 225, 1);
            margin-bottom: 10px;
        }
        .placement-section p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 40px;
        }
        .placement-section .card-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .placement-section .card {
            width: 320px;
            background: #ffffff;
            border: 2px solid #034772;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
			display:flex;
			justify-content:center;
			align-items:center;
        }
        .placement-section .card:hover {
            transform: translateY(-10px);
        }
        .placement-section .card .profile {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-bottom: 15px;
            border: 3px solid #034772;
			object-fit:cover;
        }
        .placement-section .card h3 {
            font-size: 1.2rem;
            color: #034772;
            margin-bottom: 10px;
        }
        .placement-section .card p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 10px;
        }
        .placement-section .card img.logo {
            width: 80px;
            margin: 10px auto;
        }
.placement-section .card .company-logo{
	width:30%;	
	margin:10px auto;
}
        .placement-section .watch-button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: #ffffff;
            background-color:  rgba(36, 36, 225, 1);
            border: none;
            border-radius: 5px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .placement-section .watch-button:hover {
            background-color:  rgba(36, 36, 225, 1);
        }

        @media (max-width: 768px) {
            .placement-section .card {
                width: 100%;
                max-width: 300px;
            }
        }
   .about-company-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 40px;
/*             background-color: #004d80; */
            color: white;
        }

        .about-company-section .about-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
		
        }

        .about-company-section .about-image img {
           	width: 100%;
			border:4px solid #2424E1 ;
        }

        .about-company-section .about-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .about-company-section .about-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
			color:#2424E1;
			text-align:left;
        }

        .about-company-section .about-content p {
            line-height: 1.6;
            margin-bottom: 20px;
			color:black;
			text-align: justify;
        }

        .about-company-section .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 20px;
			place-items:center;
        }

        .about-company-section .stat-box {
            background-color: #fff;
            color: #004d80;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
			max-width:250px;
        }

        .about-company-section .stat-box:hover {
            transform: translateY(-5px);
        }

        .about-company-section .stat-box i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #004d80;
        }

        .about-company-section .stat-box h3 {
            font-size: 1.5rem;
            margin: 10px 0;
        }

        .about-company-section .stat-box p {
            font-size: 0.8rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .about-company-section {
                flex-direction: column;
                text-align: center;
            }

            .about-company-section .about-image, .about-content {
                padding: 10px;
            }
			.about-company-section .about-content h2{
				font-size:2rem;
			}
        }

@media (max-width:550px){
	.about-company-section .about-content h2{
				font-size:1.5rem;
			}
	.about-company-section{
		padding:0;
	}
	.about-company-section .about-content p{
				text-align:justify;
				white-space:normal;
			}
}

   .team-section {
            text-align: center;
            padding: 50px 20px;
             background: #000000;
            color: white;
	   		display:flex;
	   		justify-content:center;
	   		align-items:center;
	   		flex-direction:column;
        }

.team-section .profile_container{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:40px;
}
     .team-section .profile-card{
    position: relative;
    width: 220px;
    height: 220px;
    background-color: #fff;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: 0.5s;
		 margin-top:30px;
}

.team-section .profile-card .img{
    width: 100%;
    height: 100%;
    position: relative;
    transition: 0.5s;
    z-index: 99;
}

.team-section .profile-card{
    border-radius: 10px !important;
    height: 280px;
}

.team-section .profile-card .img{
    transform:translateY(-60px);
}

.team-section .profile-card img{
    border-radius: 10px;
}

.team-section .img img{
    width: 100%;
   
    transition: 0.5s;
	object-fit:cover;
   
}

.team-section .caption{
    text-align: center;
    transform: translateY(-80px);
    opacity: 0;
    transition: 0.5s;
}


.team-section .profile-card .caption{
    opacity: 1;
}

.team-section .caption h3{
    font-size: 16px;
	color:black;
}
.team-section .caption p{
    font-size: 14px;
    color: #0c52a1;
    margin: 2px 0 6px 0;
}

.team-section .caption .social-links a{
    color: #333;
    margin-right: 8px;
    font-size: 18px;

}

.team-section .social-links a{
    color: #0c52a1;
}
@media (max-width: 768px){
	.team-section .profile_container{
	grid-template-columns:repeat(2,1fr);
	}
}
@media (max-width:480px){
	.team-section .profile_container
	{
		grid-template-columns:repeat(1,1fr);
	}
}
/* General Section Styles */
.count-batch-section {
     background: #000000;
    color: white;
    text-align: center;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
	border-radius:20px;
}

/* Animated Glow Background */
.count-batch-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
    animation: glow-animation 8s infinite linear;
    z-index: 0;
}

@keyframes glow-animation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50%, 50%);
    }
}

/* Content Wrapper */
.count-batch-section .batch-container {
    position: relative;
    z-index: 1;
}

/* Title and Subtitle Styling */
.count-batch-section .batch-title {
    font-size: 48px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-in-out;
	color:white;
}

.count-batch-section .batch-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f0f0f0;
    animation: fadeIn 2s ease-in-out;
	text-align:center !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Countdown Timer */
.count-batch-section .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.count-batch-section .time-box {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.count-batch-section .time-box span:first-child {
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.count-batch-section .time-box span:last-child {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Claim Button with Moving Effect */
.count-batch-section .claim-button {
    background: white;
    color: black;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    animation: moveButton 3s infinite ease-in-out;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.count-batch-section .claim-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.6);
}

@keyframes moveButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .count-batch-section .batch-title {
        font-size: 32px;
    }

    .count-batch-section .batch-subtitle {
        font-size: 16px;
    }

    .count-batch-section .time-box {
        padding: 10px 15px;
    }

    .count-batch-section .claim-button {
        font-size: 16px;
        padding: 12px 20px;
    }

    .count-batch-section {
        display:none;
    }
}
/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.author-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto;
}

.author-banner .author-info {
    display: flex;
    align-items: center;
}

.author-banner .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-banner .author-details {
    display: flex;
    flex-direction: column;
}

.author-banner .author-name {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.author-banner .author-designation {
    margin: 0;
    font-size: 1rem;
    color: #777;
	text-align:left;
}

.author-banner .buttons {
    display: flex;
    gap: 10px;
}

.author-banner .btn {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.author-banner .btn i {
    margin-right: 8px;
}

.author-banner .view-more {
    background-color: rgba(11, 205, 240, 1) !important;
    color: #fff !important;
}

.author-banner .view-more:hover {
    background-color: rgba(11, 205, 240, 1) !important;
}

.author-banner .linkedin {
    background-color:rgba(36, 36, 225, 1) !important;
    color: #fff !important;
}

.author-banner .linkedin:hover {
    background-color:  rgba(36, 36, 225, 1) !important;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .author-banner {
        flex-direction: column;
        text-align: center;
    }

    .author-banner .author-info {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .author-banner .avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .author-banner .buttons {
        flex-direction: column;
        width: 100%;
    }

    .author-banner .btn {
        justify-content: center;
    }
}


/* General Author Archive Styles */
.author-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;

}

.author-archive .author-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.author-archive .author-header h1 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.author-archive .author-info p {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.author-archive .post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.author-archive .post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    opacity: 1;
}

.author-archive .post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
}

.author-archive .post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.author-archive .post-thumbnail img:hover {
    transform: scale(1.05);
}

.author-archive .post-content {
    padding: 25px;
}

.author-archive .post-content h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
	text-align:left;
}

.author-archive .post-content p{
	text-align:left;
}

.author-archive .post-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease-in-out;
}

.author-archive .post-content h2 a:hover {
    color: #3498db;
}

.author-archive .post-excerpt {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-archive .read-more {
    font-size: 16px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 5px 10px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.author-archive .read-more:hover {
    background-color: #3498db;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .author-archive .author-header h1 {
        font-size: 30px;
    }

    .author-archive .post-list {
        grid-template-columns: 1fr;
    }

    .author-archive .post-card {
        margin-bottom: 30px;
    }
}

/* Category Filter Styles */
.blog-categories-filter {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.blog-categories-filter h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-btn:hover, 
.category-btn.active {
    background:  rgba(36, 36, 225, 1);
    color: #fff;
    border-color: #034772;
}

/* Pagination Wrapper Styles */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: inline-block;
    padding: 8px 16px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers .current {
    background:  rgba(36, 36, 225, 1);
    color: #fff;
    border-color:  rgba(36, 36, 225, 1);
}

.pagination-wrapper .page-numbers a:hover {
    background: #034772;
    color: #fff;
    border-color: #034772;
}
.single-course-content-scroll-box {
    max-height: 400px;
    overflow-y: auto;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(3, 71, 114, 0.08);
    margin: 30px auto;
    border: 2px solid #034772;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect */
.single-course-content-scroll-box:hover {
    box-shadow: 0 12px 30px rgba(3, 71, 114, 0.12);
    transform: translateY(-3px);
}

/* Custom scrollbar */
.single-course-content-scroll-box::-webkit-scrollbar {
    width: 8px;
}

.single-course-content-scroll-box::-webkit-scrollbar-track {
    background: #f5f7ff;
    border-radius: 10px;
}

.single-course-content-scroll-box::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #034772, #0468a3);
    border-radius: 10px;
    border: 2px solid #f5f7ff;
}

.single-course-content-scroll-box::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #023557, #034772);
}

/* Content styling */
.single-course-content-scroll-box h2,
.single-course-content-scroll-box h3,
.single-course-content-scroll-box h4 {
    color:  rgba(36, 36, 225, 1);
    margin: 20px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.single-course-content-scroll-box h2::after,
.single-course-content-scroll-box h3::after,
.single-course-content-scroll-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
      background: #000000;
    border-radius: 2px;
}

.single-course-content-scroll-box p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: left;
    font-size: 15px;
    white-space: pre-line; 
}

.single-course-content-scroll-box ul,
.single-course-content-scroll-box ol {
    padding-left: 20px;
    margin: 15px 0;
}

.single-course-content-scroll-box li {
    margin-bottom: 10px;
    color: #444;
    position: relative;
    padding-left: 8px;
    line-height: 1.6;
}

.single-course-content-scroll-box ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.single-course-content-scroll-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: rgba(36, 36, 225, 1);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(3, 71, 114, 0.2);
    transition: all 0.3s ease;
}

.single-course-content-scroll-box ul li:hover::before {
    transform: scale(1.2);
    background: #0468a3;
    box-shadow: 0 0 0 3px rgba(3, 71, 114, 0.3);
}

.single-course-content-scroll-box ol {
    counter-reset: item;
    list-style: none;
    padding-left: 25px;
}

.single-course-content-scroll-box ol li {
    counter-increment: item;
    padding-left: 25px;
    position: relative;
}

.single-course-content-scroll-box ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #034772;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-course-content-scroll-box {
        padding: 20px;
        margin: 15px auto;
        max-height: 350px;
    }

    .single-course-content-scroll-box h2,
    .single-course-content-scroll-box h3,
    .single-course-content-scroll-box h4 {
        font-size: 1.1em;
        margin: 15px 0 10px 0;
    }

    .single-course-content-scroll-box p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
	
    }

    .single-course-content-scroll-box ul li,
    .single-course-content-scroll-box ol li {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

.wpcf7-submit{
	background:#000000;
}
.wpcf7-submit:hover{
	color:white;
}
.google_map{
	width:100% !important;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 2rem 0;
}

.video-container .video-card {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    justify-content: center;
}

.video-container .video-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 150px;
    height: 450px;
    flex-shrink: 0;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.video-container .video-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 1rem;
    z-index: -1;
    margin: 3px;
}

.video-container .play-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 1);
    cursor: pointer;
}

.video-container .play-icon i {
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-container .video-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    z-index: 2;
}

.video-container .video-item.active {
    width: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-container .video-item:hover {
    width: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.video-container .video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container .video-item.active .video-image,
.video-container .video-item:hover .video-image {
    transform: scale(1.15);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container .video-item.active .video-overlay,
.video-container .video-item:hover .video-overlay {
    transform: translateY(0);
}

.video-container .video-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-container .video-description {
    font-size: 1rem;
    color: #ffffff;
    display: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-container .video-item.active .video-description,
.video-container .video-item:hover .video-description {
    display: block;
}

@media (max-width: 768px) {
    .video-container {
        padding: 1rem 0;
    }
}

/* Video Modal Styles */
     .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 400px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    aspect-ratio: 9/16;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 13px;
    position: relative;
    z-index: 1;
}

 .video-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container .close-modal:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .video-container .video-modal-content {
        width: 90vw;
        height: auto;
    }
}

/* Remove overlay from video controls */
 .video-modal-content video::-webkit-media-controls {
    background: transparent;
}

 .video-modal-content video::-webkit-media-controls-panel {
    background: transparent;
}

.video-modal-content video::-webkit-media-controls-enclosure {
    background: transparent;
}

/* Ensure video controls are visible */
.video-modal-content video::-webkit-media-controls-play-button,
.video-modal-content video::-webkit-media-controls-timeline,
.video-modal-content video::-webkit-media-controls-current-time-display,
.video-modal-content video::-webkit-media-controls-time-remaining-display,
.video-modal-content video::-webkit-media-controls-mute-button,
.video-modal-content video::-webkit-media-controls-volume-slider,
.video-modal-content video::-webkit-media-controls-fullscreen-button {
    color: white;
    background: transparent;
}

.video-container .play-icon:hover {
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .video-container {
        padding: 1.5rem;
    }
    
    .video-container .video-card {
        gap: 1.2rem;
    }
    
    .video-container .video-item {
        width: 180px;
        height: 280px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 360px;
    }
}

@media (max-width: 992px) {
    .video-container {
        padding: 1.2rem;
    }
    
    .video-container .video-card {
        gap: 1rem;
    }
    
    .video-container .video-item {
        width: 160px;
        height: 260px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 320px;
    }

    .video-container .video-title {
        font-size: 1.1rem;
    }

    .video-container .video-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .video-container {
        padding: 1rem;
    }
    
    .video-container .video-card {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .video-container .video-item {
        width: 140px;
        height: 240px;
        margin-bottom: 1rem;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 280px;
    }

    .video-container .play-icon {
        width: 35px;
        height: 35px;
    }

    .video-container .play-icon i {
        font-size: 16px;
    }

    .video-container .video-title {
        font-size: 1rem;
    }

    .video-container .video-description {
        font-size: 0.75rem;
    }

    .video-container .video-modal-content {
        width: 90vw;
        height: auto;
    }
}

@media (max-width: 576px) {
    .video-container {
        padding: 0.8rem;
    }

    .video-container .video-card {
        gap: 0.6rem;
    }
    
    .video-container .video-item {
        width: 120px;
        height: 220px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 240px;
    }

    .video-container .play-icon {
        width: 30px;
        height: 30px;
    }

    .video-container .play-icon i {
        font-size: 14px;
    }

    .video-container .video-title {
        font-size: 0.9rem;
    }

    .video-container .video-description {
        font-size: 0.7rem;
    }

    .video-container .video-modal-content {
        width: 95vw;
    }

    .video-container .close-modal {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .video-container .video-item {
        width: 100px;
        height: 200px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 200px;
    }

    .video-container .video-title {
        font-size: 0.8rem;
    }

    .video-container .video-description {
        font-size: 0.65rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .video-container {
        padding: 0.5rem;
    }
    
    .video-container .video-card {
        gap: 0.5rem;
    }
    
    .video-container .video-item {
        width: 120px;
        height: 180px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 240px;
    }

    .video-container .video-modal-content {
        width: 60vh;
    }
}

/* High Resolution Screens */
@media (min-width: 1920px) {
    .video-container {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .video-container .video-item {
        width: 240px;
        height: 340px;
    }
    
    .video-container .video-item.active,
    .video-container .video-item:hover {
        width: 480px;
    }

    .video-container .play-icon {
        width: 50px;
        height: 50px;
    }

    .video-container .play-icon i {  
        font-size: 24px;
    }

    .video-container .video-title {
        font-size: 1.4rem;
    }

    .video-container .video-description {
        font-size: 1rem;
    }
}

.training-container {
    max-width: 1400px;
    margin: 0 auto;
    
    .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: #000;
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .batch-container {
            background: white;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
        }

        .batch-item {
            padding: 40px 20px;
            text-align: left;
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: flex-start;
            min-height: 200px;
            gap: 20px;
        }

        .batch-item:last-child {
            border-right: none;
        }

        .icon {
            width: 60px;
            height: 60px;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #ffc107;
            padding: 15px;
            flex-shrink: 0;
        }

        .icon svg {
            width: 40px;
            height: 40px;
            fill: #000;
        }

        .batch-title {
            font-size: 20px;
            font-weight: bold;
            color: #000;
            margin-bottom: 15px;
        }

        .batch-content {
            font-size: 14px;
            color: #000;
            line-height: 1.4;
            text-align: left;
        }

        .batch-text-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            flex: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .batch-container {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr);
            }

            .batch-item {
                border-right: 2px solid #000;
                border-bottom: 2px solid #000;
                min-height: 180px;
                padding: 30px 15px;
                flex-direction: row;
                gap: 15px;
            }

            .batch-item:nth-child(2),
            .batch-item:nth-child(4) {
                border-right: none;
            }

            .batch-item:nth-child(3),
            .batch-item:nth-child(4) {
                border-bottom: none;
            }

            .section-title {
                font-size: 28px;
            }

            .batch-title {
                font-size: 18px;
            }

            .batch-content {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .batch-container {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 1fr);
            }

            .batch-item {
                border-right: none;
                border-bottom: 2px solid #000;
                min-height: 160px;
                padding: 25px 15px;
                flex-direction: row;
                gap: 15px;
            }

            .batch-item:last-child {
                border-bottom: none;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .batch-title {
                font-size: 16px;
            }

            .batch-content {
                font-size: 12px;
            }

            .icon {
                width: 50px;
                height: 50px;
                padding: 12px;
            }
            
            .icon svg {
                width: 30px;
                height: 30px;
            }
        }
}

/* Online Course Component Styles */
.online-course-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.online-course-card {
    display: block;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.online-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.course-card-content {
    display: flex;
    align-items: center;
    padding: 25px;
    gap: 20px;
}

.course-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e8f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 24px;
    color: #2e7d32;
}

.online-course-card:hover .icon-circle {
    background-color: #2e7d32;
    transform: scale(1.1);
}

.online-course-card:hover .icon-circle i {
    color: #ffffff;
}

.course-text {
    flex: 1;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.course-description {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-card-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .course-title {
        font-size: 18px;
    }
    
    .course-description {
        font-size: 13px;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle i {
        font-size: 20px;
    }
}