/* Full-Screen Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
/* Spinner (Using Your Code) */
.loader {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}

.loader:before, .loader:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #6ca2a5;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}

.loader:after {
    animation-delay: 1s;
}

@keyframes push {
    0% {
        transform: translate(-50%, 100%) scale(1);
    }
    15%, 25% {
        transform: translate(-50%, 50%) scale(1);
    }
    50%, 75% {
        transform: translate(-50%, -30%) scale(0.5);
    }
    80%, 100% {
        transform: translate(-50%, -50%) scale(0);
    }
}
/* Main Content (Initially Hidden) */
#content {
    display: none;
    text-align: center;
    padding: 50px;
}
/* Reset Margin and Padding for All Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body and Global Styles */
body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f4f4; /* Unified background */
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.navbar-left {
    display: flex;
    align-items: center;

}

.logo {
    height: 70px;
    width: auto;
     
    margin: auto;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.info i {
    color: #FF6B6B;
    margin-right: 7px;
    font-size: 16px;
}

.register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background-color:#FF6B6B;
}

.nav-links {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 12px;
    margin-bottom: 0;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
    font-size: 15px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover, .nav-links a.active {
    color: #FF6B6B;
}

/* Mobile Styles */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color:white;
    position: absolute;
    right: 20px;
    top: 15px;
    border: none;
    border-radius: 4px;
    width:35px;
    margin-top: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease-in-out;

}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: #FF6B6B;
}

/* Close Button (X) */
.close-menu {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    border: none;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    width: 120px;
}


.mobile-register-btn:hover {
    background-color:#FF6B6B;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .nav-links, .register-btn {
        display: none;
    }
    .navbar-right .info {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

@media (min-width:769px) {
    .mobile-menu{
        display: none;
    }
}
/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    margin-top: 110px; /* Adjusted for fixed navbar */
    overflow: hidden;
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    transition: opacity 1s ease-in-out;
}
.slide img {
    width: 100%;
    height: auto;
     
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* Fix Mobile Menu Overlay Issue */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 1000; /* Ensure menu is above other elements */
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
}

.mobile-menu {
    align-items: flex-start; /* Aligns items to the left */
}

.mobile-menu a {
    text-align: left; /* Ensures text is aligned left */
    display: block; /* Ensures full-width clickable links */
}
  
/* Ensure Slider Does Not Cover the Menu */
.slider-container {
    position: relative;
    z-index: 1; /* Keep below mobile menu */
}

/* Remove Gap Between Navbar and Slider */
.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
}
.slider-container {
    margin-top: 0;
}
 
/* Course Card Section - Adjust gap between navbar and course cards */
.course-container {
    margin-top: 10px; /* Gap between navbar and course cards */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
    padding: 0 20px;
    align-items: stretch;
}
.course-heading{
    text-align: center;
    font-size: 2rem;
    color: #222222;
    margin-top: 40px;
}

.course-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease,box-shadow 0.3s ease;
}
.course-card:hover {
    transform: translateY(-10px); /* Slightly raise the card */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); /* Add a stronger shadow */
}

.course-image img {
    width: 100%;
    height: auto;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.3s ease;
}
.course-card:hover .course-image img {
    transform: scale(1.05); /* Slight zoom effect on the image */
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    font-weight: 600;
    color: #0a0a0a;
}

.course-content p {
    color: #555;
    font-size: 14px;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f8f8;
    font-size: 14px;
    color: #666;
    align-items: center;
    margin-top: auto;
}

.course-footer i {
    margin-right: 5px;
}

.enroll-btn {
    background-color: #556BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.enroll-btn:hover {
    background-color: darkblue;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .course-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
        gap: 20px;
         

    }
    .course-heading{
        text-align: center;
        font-size: 1.6rem;
        color: #222222;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .course-card {
        max-width: 90%;
         
        
    }
}

@media (max-width: 480px) {
    .course-container {
        grid-template-columns: 1fr; /* 1 column for extra small screens */
        gap: 15px;
        align-items: center;
        flex-direction: column;
         
    }

    .course-card {
        max-width: 85%;
         text-align: center;
         margin: auto;
         
    }
    
    .course-footer {
        flex-direction: column;
        text-align: center;
    }

    .course-footer p {
        margin-bottom: 5px;
    }
}




@media (min-width: 1400px) {
    .course-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly; /* Center the course cards */
        gap: 30px;
        padding: 0 50px;
    }

    .course-card {
        max-width: 350px; /* Ensure cards maintain their size */
        flex: 1 1 calc(33.33% - 30px); /* Keep 3 cards per row */
    }
}

.sub-courses {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 10px 0;
}

.course-card:hover .sub-courses {
    opacity: 1;
    transform: translateY(0);
}

.sub-course {
    padding: 10px;
    border-bottom: 1px solid #444;
    cursor: pointer;
}

.sub-course:last-child {
    border-bottom: none;
}

.sub-course:hover {
    background: crimson;
}

/* Call-to-Action Button */
.btn {
    display: inline-block;
    width: 220px;
    padding: 14px;
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    font-size: 18px;
    text-decoration: none;
    align-items: center;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
    margin-bottom: 30px;
    margin: auto;
}
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.btn:hover {
    background: linear-gradient(45deg, #556BFF, #FF6B6B);
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}
/*career section*/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.career-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
}
.Aira{
    color: rgb(187, 206, 84);
}

.subheading {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    position: relative;
}

.subheading::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff5722;
    margin: 10px auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    
}

h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #555;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

 
body {
    background: #f8f8f8;
    text-align: center;
    padding: 20px;
}

.learn-container {
    max-width: 1000px;
    margin: auto;
    
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
}

.box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.text-box {
    background: #000c29;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 410px;
}

.text-box h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.text-box h2 span {
    color: #ff8a65;
}

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}



/* for google location */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #fff;
}
.google-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
    border:#444 solid 1px;
    padding: 30px;
    border-radius: 6px;
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.contact-info h2 {
    font-size: 28px;
    font-weight: bold;
}
.contact-info h2 span {
    color: purple;
}
.contact-info p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}
.contact-info p strong {
    color: black;
}
.contact-info a {
    text-decoration: none;
    color: black;
    border-bottom: 1px solid black;
}
.map-container {
    flex: 1;
    min-width: 300px;
}
iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    border: none;
}

/* 🔥 Responsive Design for Mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .map-container {
        margin-top: 20px;
    }
}
 /* Marquee Container */
 .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #f8f8f8;
    padding: 20px 0;
}

/* Marquee Scrolling Effect */
.marquee {
    display: flex;
    animation: scroll 15s linear infinite;
    align-items: center;
}

/* Logo Styling */
.marquee img {
    height: 60px; /* Adjust for desktop */
    margin: 0 20px;
}

/* Infinite scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Mobile View (Adjust Logo Size and Speed) */
@media (max-width: 768px) {
    .marquee img {
        height: 40px; /* Smaller logos */
        margin: 0 10px;
    }

    .marquee {
        animation: scroll 10s linear infinite; /* Faster scrolling for small screens */
    }
}

/* 🔹 Main Styling */
.social-section {
    text-align: center;
    margin: 40px 0;
}

.social-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #02042B; /* Dark navy blue */
    margin-bottom: 10px;
}

.social-section p {
    font-size: 18px;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
}

/* 🔹 Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.social-icons a img {
    width: 50px; /* Icon size */
    height: 50px;
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease-in-out;
}

.social-icons a img:hover {
    transform: scale(1.1); /* Slight zoom effect */
}

/* 🔹 Responsive Design */
/* Large Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .social-section h2 {
        font-size: 28px;
    }
    .social-section p {
        font-size: 16px;
    }
    .social-icons a img {
        width: 45px;
        height: 45px;
    }
}

/* Small Tablets & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .social-section h2 {
        font-size: 24px;
    }
    .social-section p {
        font-size: 14px;
    }
    .social-icons {
        gap: 10px;
    }
    .social-icons a img {
        width: 40px;
        height: 40px;
    }
}

/* Phones (max-width: 480px) */
@media (max-width: 480px) {
    .social-section h2 {
        font-size: 20px;
    }
    .social-section p {
        font-size: 12px;
    }
    .social-icons {
        gap: 8px;
    }
    .social-icons a img {
        width: 35px;
        height: 35px;
    }
}

.custom-footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.custom-footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.custom-footer-section {
    max-width: 300px;
    margin: 10px;
}

.custom-footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-footer-text {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

.custom-footer-links {
    list-style: none;
    padding: 0;
}

.custom-footer-links li {
    margin: 5px 0;
}

.custom-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-links a:hover {
    color: #00aaff;
}

.custom-footer-icons a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.custom-footer-icons a:hover {
    color: #00aaff;
}

.custom-footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}
 
.custom-footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.custom-footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.custom-footer-section {
    max-width: 300px;
    margin: 10px;
}

.custom-footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.custom-footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-footer-text {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

.custom-footer-links {
    list-style: none;
    padding: 0;
}

.custom-footer-links li {
    margin: 5px 0;
}

.custom-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-links a:hover {
    color: #00aaff;
}

.custom-footer-icons a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.custom-footer-icons a:hover {
    color: #00aaff;
}

.custom-footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.whatsapp-button .fa-whatsapp {
    font-size: 20px;
}
.whatsapp-chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}
.whatsapp-chat-header {
    background-color: #25D366;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-chat-header h4 {
    margin: 0;
    font-size: 16px;
}
.whatsapp-chat-header .close-btn {
    cursor: pointer;
    font-size: 18px;
}
.whatsapp-chat-body {
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.whatsapp-chat-footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
}
.whatsapp-chat-footer a {
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}      



 






/* YouTube promo - minimal & attractive (prefix: ytpromo-) */
.ytpromo-card{
  max-width: 980px;
  margin: 32px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg,#ffffff,#fbfbff);
  box-shadow: 0 12px 40px rgba(2,6,23,0.08);
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.ytpromo-left h3{
  margin:0 0 6px;
  font-size:22px;
  color:#0b1220;
  letter-spacing:0.2px;
}
.ytpromo-sub{
  margin:0;
  color:#525f7f;
  font-size:14px;
}

/* Button */
.ytpromo-right { display:flex; align-items:center; }
.ytpromo-btn{
  display:inline-flex;
  gap:12px;
  align-items:center;
  padding:12px 18px;
  border-radius:12px;
  background: linear-gradient(90deg,#ffffff,#fff5f5);
  border: 1px solid rgba(11,92,255,0.06);
  box-shadow: 0 10px 30px rgba(11,92,255,0.06);
  text-decoration:none;
  transition: transform .14s ease, box-shadow .14s ease;
  overflow: hidden;
  min-height:56px;
}
.ytpromo-btn:hover{ transform: translateY(-4px); box-shadow:0 20px 50px rgba(11,92,255,0.12); }

/* SVG icon */
.ytpromo-icon{ width:48px; height:48px; flex:0 0 48px; }

/* Text inside button */
.ytpromo-text{ display:flex; flex-direction:column; align-items:flex-start; color:#0b1220; font-weight:700; }
.ytpromo-text .ytpromo-note{ display:block; font-weight:600; font-size:12px; color:#6b7280; margin-top:4px; }

/* Small responsive tweak */
@media (max-width:860px){
  .ytpromo-card{ grid-gap:12px; padding:14px; }
  .ytpromo-card{ flex-direction:column; align-items:stretch; text-align:center; gap:12px; }
  .ytpromo-right{ justify-content:center; }
  .ytpromo-btn{ width:100%; justify-content:center; }
  .ytpromo-text{ align-items:center; }
}









/* Component namespace */
.testimonial-widget { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; }

/* Scoped rules */
.testimonial-widget figure.snip1157 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  width: 100%;
  color: #333;
  text-align: left;
  box-shadow: none;
}

.testimonial-widget figure.snip1157 * {
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.testimonial-widget figure.snip1157 img {
  max-width: 100%;
  vertical-align: middle;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 40px 0 0 10px;
}

.testimonial-widget figure.snip1157 blockquote {
  display: block;
  border-radius: 8px;
  position: relative;
  background-color: #fafafa;
  padding: 25px 50px 30px 50px;
  font-size: 0.8em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6em;
  font-style: italic;
}

.testimonial-widget figure.snip1157 blockquote:before,
.testimonial-widget figure.snip1157 blockquote:after {
  font-family: 'FontAwesome';
  content: "\201C";
  position: absolute;
  font-size: 50px;
  opacity: 0.3;
  font-style: normal;
}
.testimonial-widget figure.snip1157 blockquote:before {
  top: 25px;
  left: 20px;
}
.testimonial-widget figure.snip1157 blockquote:after {
  content: "\201D";
  right: 20px;
  bottom: 0;
}

.testimonial-widget figure.snip1157 .arrow {
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #fafafa;
  margin: 0;
  position: absolute;
}

.testimonial-widget figure.snip1157 .author {
  position: absolute;
  bottom: 45px;
  padding: 0 10px 0 120px;
  margin: 0;
  text-transform: uppercase;
  color: #000000;
  transform: translateY(50%);
}
.testimonial-widget figure.snip1157 .author h5 {
  opacity: 0.8;
  margin: 0;
  font-weight: 800;
}
.testimonial-widget figure.snip1157 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}

/* optional hover effect kept */
.testimonial-widget figure.snip1157.hover { /* any hover specific tweaks here */ }


/* Tablet layout (medium screens) */
@media (max-width: 900px) {
  .testimonial-widget {
    gap: 12px;
    padding: 0 12px;
  }

  .testimonial-widget figure.snip1157 {
    max-width: 45%;      /* 2 columns-ish on wider tablets */
    min-width: 200px;
  }

  .testimonial-widget figure.snip1157 img {
    height: 72px;
    width: 72px;
    margin: 28px 0 0 10px;
  }

  .testimonial-widget figure.snip1157 blockquote {
    padding: 20px 40px 24px 40px;
    font-size: 0.85em;
  }

  .testimonial-widget figure.snip1157 .author {
    bottom: 38px;
    padding-left: 110px;
  }
}

/* Mobile layout (small screens) */
@media (max-width: 480px) {
  .testimonial-widget {
    flex-direction: column;  /* stack vertically */
    align-items: stretch;    /* take full width */
    gap: 14px;
    padding: 0 10px;
  }

  .testimonial-widget figure.snip1157 {
    max-width: 100%;
    width: 100%;
    margin: 6px 0;
    display: block;
    min-width: 0;
    overflow: visible;
    padding-bottom: 12px; /* space for author below */
  }

  .testimonial-widget figure.snip1157 img {
    height: 64px;
    width: 64px;
    margin: 18px 0 0 12px;
    float: left;            /* allow text to flow beside image on small widths */
  }

  .testimonial-widget figure.snip1157 blockquote {
    padding: 18px 20px 18px 84px; /* left padding to clear the floated image */
    font-size: 0.93em;
    line-height: 1.5em;
    border-radius: 8px;
  }

  /* Move author out of absolute positioning to avoid overlap on small screens */
  .testimonial-widget figure.snip1157 .author {
    position: static;      /* so it flows after blockquote */
    transform: none;
    color: #ffffff;        /* original choice; change if not visible */
    padding: 10px 12px;
    margin-top: 6px;
    text-transform: uppercase;
    background: transparent; /* keep transparent unless you want a bg */
  }

  .testimonial-widget figure.snip1157 .author h5 {
    font-size: 0.9em;
  }

  /* Make the arrow less intrusive on mobile */
  .testimonial-widget figure.snip1157 .arrow {
    display: none;
  }

  /* ensure hover-only styles don't break touch interactions */
  .testimonial-widget figure.snip1157.hover { /* keep it, but don't rely on :hover */ }
}

/* Extra-small devices (very narrow screens) */
@media (max-width: 360px) {
  .testimonial-widget figure.snip1157 blockquote {
    padding: 14px 14px 14px 78px;
    font-size: 0.95em;
  }

  .testimonial-widget figure.snip1157 img {
    height: 56px;
    width: 56px;
    margin-top: 14px;
  }

  .testimonial-widget figure.snip1157 .author h5 {
    font-size: 0.88em;
  }
}


.bjt-btn-download.outline{
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  border:1.5px solid #0b5ed7;
  color:#0b5ed7;
  background:transparent;
  font-weight:700;
  text-decoration:none;
  font-size:0.88rem;
}
.bjt-btn-download.outline:hover{
  background:rgba(11,94,215,0.06);
}
