body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: rgba(236, 235, 235, 0.7); /* Semi-transparent background */
    color: rgb(50, 24, 111);
    backdrop-filter: blur(10px); /* Apply a blur effect */
    -webkit-backdrop-filter: blur(10px); /* Support for Safari */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for depth */
    padding: 10px 0;
    
}

.top-header {
    background-color: rgb(56, 3, 110);
    color: white;
    padding: 5px 0;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    width: 200%;
    animation: marquee 30s linear infinite;
}

.marquee p {
    width: 50%;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.navbar {
    display: flex;
    justify-content: center; /* Center the navbar items */
    align-items: center;
}

.navbar-brand {
    margin-right: auto; /* Align logo to the left */
}

.navbar-nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-item {
    margin: 0 10px;
    font-weight:600;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgb(56, 3, 110);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: rgb(155,20,161)
}

.call-icon i {
    color: white;
    margin-right: 5px;
}
.top-logo {
    height: 50px;
    /* width: 300px; */
}
.quick-btn {
    background-color: rgb(56, 3, 110);
    color: white;
    border-radius: 8px;
    padding: 8px;
    border: none; /* Optional: Remove default border */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Add transition for smooth effect */
}

.quick-btn:hover {
    background-color: rgb(75, 0, 143); /* Darker shade for hover effect */
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Change cursor to pointer */
}
.active {
    color: rgb(155,20,161) !important;
}
/* Custom styles for the navbar-toggler-icon */
.navbar-toggler {
    border: none; /* Remove default border */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgb(56, 3, 110)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E') !important;
}

/* Center align the quick button inside the collapsed menu */
@media (max-width: 992px) {
    .call-icon {
        text-align: center; /* Center align the quick button */
        width: 100%; /* Ensure it takes the full width of the container */
    }
    .call-icon .quick-btn {
        margin-top: 10px; /* Add margin to the top for better spacing */
    }
}
.card-custom {
    position: relative;
    color: white;
    padding: 20px;
    border-radius: 30px;
    margin: 10px;
    overflow: hidden;
    text-align: center;
    transition: border-color 0.5s ease;
}

.card-custom::before, .card-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 15px; /* Ensure border matches the card's border-radius */
    transition: all 0.5s ease;
    box-sizing: border-box;
}

.card-custom::before {
    border-top-color: white;
    border-right-color: white;
    transition-delay: 0s, 0.25s;
}

.card-custom::after {
    border-bottom-color: white;
    border-left-color: white;
    transition-delay: 0.25s, 0s;
}

.card-custom:hover::before {
    top: -2px;
    left: -2px;
    border-top-color: rgb(56, 3, 110);
    border-right-color: rgb(56, 3, 110);
}

.card-custom:hover::after {
    bottom: -2px;
    right: -2px;
    border-bottom-color: rgb(56, 3, 110);
    border-left-color: rgb(56, 3, 110);
}

.card-custom .icon {
    font-size: 40px;
    margin-right: 15px;
}

.card-custom .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.card-custom:hover .arrow {
    transform: translateX(10px);
}

.card-darkblue {
    background-color: rgb(56, 3, 110);
}
.card-pink {
    background-color: rgb(155,20,161) !important;
}
.card-blue {
    background-color: #3498db;
}
.btn-white {
    background-color: white;
    color: rgb(56, 3, 110);
    border-radius: 15px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}
.img {
    max-width: 100%;  /* Make sure the image does not exceed the container width */
    height: auto;     /* Maintain aspect ratio */
    display: block;   /* Remove extra space below the image */
    margin: 0 auto;  /* Center the image horizontally */
}
.card-container {
    display: flex;
    flex-wrap: nowrap;
    margin: 15px 0;
    gap: 20px;
}
.card-text {
    flex: 2;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}
.card-image {
    flex: 1;
    /* padding: 20px; */
    /* background-color: rgb(255, 233, 109); */
    border-radius: 10px;
    margin-left: 10px;
}
.card-image img {
    max-width: 100%;
    border-radius: 8px;
}
.text-overlay {
    position: absolute;
    /* top: 100%;
    left: 100%; */
    transform: translate(50%, -100%);
    color: rgb(56, 3, 110);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke:0.3px white;
    
}
/* Responsive Styles */
@media (max-width: 767px) {
    .card-container {
        flex-direction: column; /* Stack items vertically on small screens */
    }
    .card-text, .card-image {
        flex: none; /* Remove flex-grow/shrink */
    }
    .text-overlay {
        font-size: 18px;
    }
}
.animated-underline {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
}

.animated-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ff6347; /* Change this to your desired color */
    transition: width 0.4s ease, transform 0.4s ease;
    transform: translateY(5px);
}

.animated-underline:hover::after {
    width: 70%;
    transform: translateY(0);
    animation: sketch 1.5s infinite;
}

@keyframes sketch {
    0% {
        transform: translateY(5px) scaleX(0.1);
    }
    50% {
        transform: translateY(0) scaleX(1.1);
    }
    100% {
        transform: translateY(0) scaleX(0.1);
    }
}
.sliding-images {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 300px; Adjust as needed */
}

.sliding-images-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.sliding-images img {
    width: 50%; /* Show 3 images at once */
    height: 150%;
    object-fit: cover; /* Maintains aspect ratio, covers container */
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 10px;
}

.sliding-images-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.sliding-images-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.666%); /* Move the container to show the next set of images */
    }
}
@media (max-width: 768px) {
    .sliding-images img {
        width: 100%; /* Show 1 image at once on mobile */
    }
}
.video-slider {
    overflow: hidden;
    position: relative;
}
.video-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.video-slider-wrapper .video-wrapper {
    width: 33.3333%;
    flex-shrink: 0;
    padding: 0 10px;
}
.video-wrapper iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}
.video-slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}
.video-slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}
@media (max-width: 767.98px) {
    .video-slider-wrapper .video-wrapper {
        width: 100%;
        padding: 0;
    }
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* gap: 20px; */
    padding: 20px;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-title {
    font-size: 1.5rem;
    margin: 15px;
    color: #333;
}

/* .card-text {
    font-size: 1rem;
    margin: 0 15px 15px;
    color: #777;
} */

.card-button {
    display: block;
    text-align: center;
    background-color: rgb(56, 3, 110);
    color: white;
    padding: 10px;
    margin: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: rgb(75, 0, 143);
}

.contact-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.contact-image {
    width: 50%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #777;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-image, .contact-form {
        width: 100%;
    }
    .contact-image img {
        height: 200px;
    }
}
.autoslider-container {
    width: 100%;
    overflow: hidden;
}

.autoslider-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.autoslide {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    animation: slide 80s linear infinite;
}

.left-to-right .autoslide {
    animation-direction: reverse;
}

.autoslider-row img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes autoslide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.footer {
    background-color: rgb(56, 3, 110);
    color: white;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-logo {
    /* width: 50px; */
    height: 50px;
    margin-bottom: 10px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ddd;
}

.google-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
        text-align: center;
    }
}
.footer-copyright{
    background-color: #ffee00;
    padding-top: 5px;
    padding-bottom: 5px;
}
.quick_contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.quick_contact a {
    display: block;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: shake 1s infinite alternate 3s; /* Add shake animation after 3 seconds */
}

.quick_contact a:nth-child(2) {
    animation-delay: 5s; /* Add delay for the second icon */
}

.quick_contact a:hover {
    transform: scale(1.1);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.3);
}

.qwhtsapp {
    background-color: #25d366;
}

.qcall {
    background-color: #2196f3;
}

.quick_contact_icon {
    font-size: 24px;
    line-height: 50px;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-image {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.faq-section {
    max-width: 70%;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq {
    margin-bottom: 10px;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6200ea;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-label:hover {
    background-color: #4b00b5;
}

.faq-toggle {
    display: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 5px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-toggle:checked ~ .faq-content {
    max-height: 200px;
    padding: 15px;
}

.faq-toggle:checked + .faq-label .arrow::before {
    content: "▲";
}

.arrow::before {
    content: "▼";
    font-size: 16px;
    transition: transform 0.3s ease;
}
.animated-text {
    font-size: 3rem;
    font-weight: bold;
    color: rgb(56, 3, 110);
}

@keyframes circle {
    0% {
        stroke-dasharray: 0, 100;
    }
    100% {
        stroke-dasharray: 100, 0;
    }
}

@keyframes pencil {
    0% {
        transform: rotate(0deg) translate(-10px, -10px);
    }
    100% {
        transform: rotate(360deg) translate(-10px, -10px);
    }
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    fill: none;
    stroke: #ff6347;
    stroke-width: 4;
    stroke-dasharray: 0, 100;
    animation: circle 3s ease forwards, pencil 3s ease forwards;
}
.container-animation {
    position: relative;
    display: inline-block;
}
.breadcrums-header{
    text-align: center;
    color: rgb(50, 24, 111);
    font-size: 30px;
    text-decoration: underline;
    font-weight:600;
}
.course-container {
    max-width: 90%; /* Adjusted for smaller screens */
    margin: 50px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .course-container {
        max-width: 80%; /* Wider on tablets and small desktops */
    }
}

@media (min-width: 1024px) {
    .course-container {
        max-width: 67%; /* As specified for larger screens */
    }
}

/* Additional styling for very small screens */
@media (max-width: 480px) {
    .course-container {
        padding: 10px; /* Reduced padding for very small screens */
    }
}

.course-details h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.details p, .syllabus p, .course-structure p {
    margin: 10px 0;
    color: #555;
}

.details p strong, .syllabus h3, .course-structure h3 {
    color: #333;
}

.syllabus, .course-structure {
    margin-top: 20px;
}

.syllabus h3, .course-structure h3 {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .course-details {
        margin: 20px;
        padding: 15px;
    }
}
.sticky-icon  {
	z-index:1;
	position:fixed;
	top:15%;
	right:0%;
	width:220px;
	display:flex;
	flex-direction:column;}  
.sticky-icon a  {
	transform:translate(160px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size:22px;
	font-family:'Oswald', sans-serif;
	transition:all 0.8s;}
.sticky-icon a:hover  {
	color:#FFF;
	transform:translate(0px,0px);}	
.sticky-icon a:hover i  {
	transform:rotate(360deg);}
/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook  {
	background-color:#2C80D3;
	color:#FFF;}
	
.Youtube  {
	background-color:#fa0910;
	color:#FFF;}
	
.Twitter  {
	background-color:#53c5ff;
	color:#FFF;}
	
.Instagram  {
	background-color:#FD1D1D;
	color:#FFF;}
	
.Google  {
	background-color:#d34836;
	color:#FFF;}						
.sticky-icon a i {
	background-color:#FFF;
	height:40px;
	width:40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;}
.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#2C80D3;}
	
.sticky-icon a i.fa-google-plus-g  {
	background-color:#FFF;
	color:#d34836;}
	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:#FD1D1D;}
	
.sticky-icon a i.fa-youtube  {
	background-color:#FFF;
	color:#fa0910;}
	
.sticky-icon a i.fa-twitter  {
	background-color:#FFF;
	color:#53c5ff;}
.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}
.contact-details {
    padding: 20px;
    /* background-color: #f4f4f4; */
}

.map-container {
    flex: 1 1 100%;
}

.contact-info {
    flex: 1 1 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-top: 0;
}

.address, .phone, .email {
    margin-bottom: 20px;
}

.address h3, .phone h3, .email h3 {
    margin-bottom: 10px;
    color: #333;
}

.address p, .phone p, .email p {
    margin: 0;
    color: #666;
}

.email a {
    color: #1a73e8;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}