@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

/* ===heading== */
.heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2269;
    font-family: "Jost";
    text-transform: capitalize;
}

.heading h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2269;
    font-family: "Montserrat";
    text-transform: capitalize;
}

.course .heading,
.journey-section .heading,
.logo-section .heading,
.placement .heading,
.video-section .heading,
.tools .heading,
.project .heading,
.offerings .heading, .mentor .heading {
    text-align: center;
    margin-bottom: 20px;
}

/* ==misllenious== */
p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-family: "Poppins";
}


/* ================= TOPBAR ================= */
.topbar {
    background: #1F2269;
    color: #fff;
    font-size: 13px;
    padding: 8px 20px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i {
    cursor: pointer;
    margin-left: 10px;
}

.social-icons span {
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 600;
}
.topbar-right span a{
    color:#fff;
    text-decoration: none;
}
/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo img {
    width: 100%;
    height: 70px;
    max-width: 300px
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-family: "Poppins";
}

.nav-links li:hover>.sub-menu {
    display: block;
}

/* DROPDOWN */

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    font-family: "Poppins";

}

.toggle-icon {
    margin-left: 5px;
}

/* BUTTONS */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-buttons button {
    padding: 8px 15px;
    border: none;
    background: #1F2269;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 10001;
}

.menu-toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #333;
    left: 0;
    transition: 0.3s;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

/* ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* ===hero banner=== */
.hero-section {
    position: relative;
    background-size: cover;
    min-height: 80vh;
/*     background-image: url("../images/herobanner.png"); */
	background-image:url('https://pasdigiacademy.com/wp-content/uploads/2026/05/Group-48095475-3.png');
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
/* 	background-attachment:fixed; */
}


.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
}


.hero-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}



.hero-text {
    max-width: 600px;
    color: #1F2269;
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    font-family: "Jost";
}

.hero-text span {
    color: #F57A19;
}

.hero-text p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.learn-btn {
    background: #1F2269;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins';

}

.learn-btn span {
    display: flex;
    align-items: center;
}

.learn-btn span img {
    width: 18px;
    height: 18px;
    display: block;

}
.learn-btn span i{
	color:#7eca75;
	font-size:20px;
}
.discover-btn {
    background: transparent;
    border: 2px solid #1F2269;
    color: #1F2269;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

/* ===hover of buttons== */
.learn-btn:hover {
    background: #2a2db8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.discover-btn:hover {
    background: #1F2269;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* ===SIDE CONTACT BAR=== */
.side-contact {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;


    background: #FDEAC8;
    padding: 8px 5px;
    border-radius: 10px 0 0 10px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}


.side-contact .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #010103;
    text-decoration: none;
    font-size: 25px;


    background: transparent;

    transition: 0.3s;
}

.icon.whatsapp {
    color: #7eca75;
}

.icon.call {
    color: #2a2db8;
}

.icon.mail {
    color: #1e88e5;
}

.side-contact .icon:hover {
    transform: translateX(-6px);
    color: #00c2ff;
}

/* ===institute==== */
.institute-section {
    padding: 60px 0;
    background-image: url("../images/institute.png");
    background-size: cover;
    background-position: center;
}

.trainee-img img {
    width: 100%;
    border-radius: 10px;
}


.institute-section .col-xl-6 .row .col-md-6:first-child .trainee-img::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70%;
    height: 70%;
    background-image: url("../images/traineebackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 8px;
}

/* Bottom-right image - 4th child */
.institute-section .col-xl-6 .row .col-md-6:last-child .trainee-img::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -15px;
    width: 70%;
    height: 70%;
    background-image: url("../images/traineebackground.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 8px;
}


.trainee-img {
    position: relative;
}

/* ===certificate=== */
.certificate {
    padding: 60px 0;
    background-image: linear-gradient(#eddbd09c, #c1cdec);
}

.certificate-img img {
    width: 100%;
}

.evaluation ul li {
    font-size: 16px;
    font-family: "Poppins";

}

.intern-img {
    position: relative;
    isolation: isolate;
}

.intern-img img {
    width: 100%;
}

.intern-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #0099fe;
    opacity: 0.8;
    z-index: -1;
    border-radius: 8px;
}

/* ===course=== */
.course {
    padding: 60px 0;
}




.course-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;

    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;

}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.course-info-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background-color: #f8f9fa;
    font-size: 10px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 10px;

}

.course-info-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins";
    font-size: 10px;
    font-weight: 600;
}

.course-info-bar img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}




.course-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    text-align: left;
}



.course-card-body h5 {
    font-weight: 500;
    margin-bottom: 10px;
    font-family: "Poppins";
    font-size: 18px;
}

.course-card-body p {

    font-size: 14px;
    margin-bottom: 10px;
    flex-grow: 1;
}


.course-card-body a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    padding: 10px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: auto;
}

.course-card-body a span img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.course-card-body a:hover {
    background: linear-gradient(135deg, #5a6fd6, #6a3d9a);
    opacity: 0.95;
}

/* ===journey=== */
.journey-section {
    padding: 60px 0;
    background-image: url("../images/journey.png");
    background-size: cover;
    background-position: center;
}

.journey-circle {

    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    background-image: url('../images/circlebackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.8rem 2.2rem;
    margin: 0 auto;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.journey-circle:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.journey-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(108, 92, 231, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.journey-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.journey-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1F2269;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 1.3;
    margin: 0;

}

.journey-card-desc {

    text-align: center;
    line-height: 1.45;
    margin: 0;
}

.journey-col {
    display: flex;
    justify-content: center;
}

/* ===contact us=== */
.contactus {
    padding: 60px 0;
}

.contact-img {
    position: relative;
    isolation: isolate;
}

.contact-img img {
    width: 100%;
}

.contact-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    background-image: url('../images/contactimgbackground.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    border-radius: 8px;
}

.contact-details h6 {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* ===contact us=== */

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* margin-bottom: 20px; */

}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}
.date-label {
    font-size: 16px;  
    color:#333; 
	font-family:"Poppins";
	font-weight:500;
}
.form-group.half-width {
    flex: 1 1 48%;
}

/* Inputs */
input,
textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* File input */
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #857b7b;
    cursor: pointer;
}

/* Acceptance checkbox spacing */
.acceptance {
    margin: 20px 0;
}

.acceptance .wpcf7-form-control {
    display: block;
}

.acceptance .wpcf7-list-item {
    margin: 0;
}

.acceptance .wpcf7-list-item label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
	font-size: 14px;        
    color: #333;            
    line-height: 1.6;
	font-family:"Poppins";
	font-weight:500;
}

.acceptance .wpcf7-list-item input[type="checkbox"] {
    margin: 4px 8px 0 0;
    flex-shrink: 0;
    max-width: 20px;
}



.form-group span {
    color: red;
}

.form-group .wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}

.form-group select {
    width: 100%;
    height: 45px;           
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
}

/* Button */
.cta-button {
    padding: 1rem 2rem;
    background-color: #1A85B7;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #146c94;
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
    .form-group.half-width {
        flex: 1 1 100%;
        /* stack fields */
    }

    .form-row {
        gap: 15px;
    }
}

/* ======footer===== */

.footer {
    background: #1F2269;
    color: #fff;
    padding-top: 70px;
    /* margin-bottom: 40px; */

}

.footer-box a {
    color: #fff;
    text-decoration: none;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    padding: 0 20px 50px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
}

.logo-box p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.7;
}


.footer-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    padding-bottom: 8px;
    display: inline-block;
    border-bottom: 2px solid #f4b400;
}



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

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #bdbdbd;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: #f4b400;
    padding-left: 5px;
}


.footer-box p {
    font-size: 14px;
    color: #bdbdbd;
    margin-bottom: 12px;
    line-height: 1.6;
}


.footer-bottom {
    text-align: center;
    padding: 18px;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #999;
    letter-spacing: 0.5px;
}
/* ===contact us page== */
.contact-banner{
     background-image: url('../images/contactus.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;


}

.contact-banner::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.6);
}
/* ===about us page-== */
/* ====innerpage banner== */
.about-banner {
    background-image: url('../images/Rectangle 9765.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;


}

.about-banner::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.6);
}

.innerpage-heading {
    position: relative;
    z-index: 2;
    text-align: center;
}

.innerpage-heading h1 {
    font-size: 60px;
    font-family: "Poppins";
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;

}

.innerpage-heading p {
    color: #FFFFFF;

}

/* ===why choose pas== */
.pas-accademy {
    background-color: #DBE8EE;
    padding: 60px 0;
}

.accademy-img img {
    width: 100%;
    border-radius: 10px;
}


.lists-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;

}

.lists-item span {
    color: #1F2269;
}

.lists-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ===founder=== */
.founder {
    padding: 60px 0;
}

.founder-img {
    position: relative;
}

.founder-img::after {
    position: absolute;
    content: '';
    width: 50%;
    height: 70%;
    top: -8px;
    left: -8px;
    background-color: #042450;
    z-index: -1;
}

.founder-img img {
    width: 100%;
}

/* ==faq== */
.home-faq {
    padding-bottom: 60px;
}
.inner-pagefaq{
	padding-top:60px;
}
.faq-img img {
    width: 100%;
}


.accordion-button {
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins";
}



.accordion-item {
    box-sizing: border-box;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(180deg, #fff, #fff), linear-gradient(180deg, #847979, #1A85B7);
    border-radius: 0 0 30px 30px;
    cursor: pointer;
    text-align: left;
    padding: 18px;
    border-top: 1px solid #847979 !important;
    margin-bottom: 20px;
}

.accordion-item:last-of-type {
    border-radius: 0 0 30px 30px !important;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #3E3E3E;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.accordion-body {
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    color: #787878;
    font-family: "Poppins";
    font-size: 16px;
}


/* === TESTIMONIAL SECTION === */
.testimonial-section {
    padding: 60px 0;
    background-image: url('../images/testimonial.png');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.testimonial-title {
    font-size: 28px;
    font-weight: 700;
    color: #2b2b52;
}

.testimonial-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 60px;
}

/* SWIPER */
.testimonial-slider {
    max-width: 1000px;
    margin: auto;
    position: relative;
    padding-bottom: 50px;
}

.swiper {
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1000px;
    margin: auto;
}

.swiper-slide {
    padding-top: 40px;
}

/* CARD */
.testimonial-box {
    background: #f7dede;
    border-radius: 16px;
    padding: 60px 20px 25px;
    position: relative;
    text-align: center;
    min-height: 240px;
    overflow: visible;
}

/* AVATAR */
.testimonial-avatar {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    background: #fff;
    z-index: 5;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT */
.testimonial-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.testimonial-name {
    margin-top: 15px;
    font-weight: 700;
    color: #2b2b52;
    font-size: 14px;
}


.quote-left,
.quote-right {
    font-size: 26px;
    color: #6c5ce7;
    position: absolute;
    font-weight: bold;
}

.quote-left {
    top: 10px;
    left: 15px;
}

.quote-right {
    bottom: 10px;
    right: 15px;
}

/* PAGINATION */
.swiper-pagination {
    bottom: -2px !important;
}

.swiper-pagination-bullet {
    background: #6c5ce7;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ==placement== */
.placement {
    padding: 60px 0;
    background-image: url('../images/placementbackground.png');
    background-size: cover;
    background-position: center;
}

.placement .swiper {
    max-width: 1000px;
    margin: auto;
}


.placement .swiper-slide {
    display: flex;
    justify-content: center;
}


.placement-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding-top: 40px
}

.bg-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #1e88e5;
    z-index: 1;
}


.placement-card img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: 0.4s;
}



.overlay {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    color: #fff;
    z-index: 3;
    transition: 0.4s;
}


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

.placement-card:hover .overlay {
    bottom: 0;
}

.name {
    font-weight: 700;
    font-family: "Poppins";
    font-size: 16px;

}

.role {
    font-size: 13px;
    font-family: "Poppins";
    text-align: center;
}


/* ==video testimonial== */
.video-section {
    padding-bottom: 60px;
    background-image: url('../images/videobackground.png');
    background-size: cover;
    background-position: center;
}

.video-section .swiper {
    max-width: 100% !important;
}

.videoSwiper {
    width: 100%;
}

.video-box iframe {
    width: 100%;
    height: 400px;
    display: block;
}


/* ===logo-slider==== */

.logo-section {
    padding: 60px 0;
}

.swiper {
    /* height: 100%; */
    overflow: hidden;
}

.logoSwiper {
    padding: 20px 0;
    height: auto;
}

.logoSwiper .swiper-wrapper {
    align-items: center !important;
    height: auto !important;
}



.logoSwiper .swiper-slide {
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}



.logoSwiper img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}



/* == Mentor == */

.mentor {
    padding: 60px 0;
    background-image: url('../images/placementbackground.png');
    background-size: cover;
    background-position: center;
}

.mentor .swiper {
    max-width: 1000px;
    margin: auto;
}

.mentor .swiper-slide {
    display: flex;
    justify-content: center;
}

.mentor-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
/*     padding-top: 40px; */
}

.bg-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #1e88e5;
    z-index: 1;
}

.mentor-card img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transition: 0.4s;
	border-radius:15px;
}

.overlay {
    position: absolute;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    color: #fff;
    z-index: 3;
    transition: 0.4s;
}

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

.mentor-card:hover .overlay {
    bottom: 0;
}

.mentor-name {
    font-weight: 700;
    font-family: "Poppins";
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkedin-icon {
    color: #0A66C2;
    font-size: 18px;
    transition: 0.3s;
}

.linkedin-icon:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.role {
    font-size: 13px;
    font-family: "Poppins";
    text-align: center;
}








/* =====dropdown page start=== */
/* =====innerpage banner title and image === */
.innerpage-banner-titleandimage {
    width: 100%;
    min-height: 500px;
    background-image: url('../images/project.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 70px 0 60px
}

.innerpage-banner-content {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.innerpage-banner-heading h1,
.innerpage-banner-heading-text h1 {
    font-family: "Montserrat";
    font-size: 55px;
    color: #1A85B7;
    font-weight: 600;
    /* min-width: 700px;
     */
    max-width: 100%;
}



.innerpage-banner-heading {
    flex: 1;
}


.innerpage-banner-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.innerpage-banner-img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* ===overview== */
.overview {
    padding: 60px 0;
}

/* ====tools=== */
.tools {
    padding-bottom: 60px;
}

.tools-card {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    padding: 15px;
    background-image: url('../images/tools.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.tools-icon {
    min-width: 60px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    justify-content: center;
    border-radius: 10px;
    border: 1px dotted #1f2269;
}

.tools-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.tools-card h3 {
    font-family: "poppins";
    font-size: 18px;
    color: #fff;

}

/* ===project=== */
.project {
    padding: 60px 0;
    background-image: url('../images/project.png');
    background-size: cover;
    background-position: center;
}

.project-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2269;
    font-family: "jost";
}

.project-img img {
    width: 100%;
	height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===innerpage== */
.offerings {
    padding: 60px 0;
    background-image: url('../images/offerings.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offerings-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    padding: 15px;
    background-image: url('../images/offeringcard.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.offerings-icon {
    min-width: 60px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    justify-content: center;
    border-radius: 10px;
    border: 1px dotted #1f2269;
}

.offerings-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.offerings-card h3 {
    font-family: "poppins";
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

/* FLIP CONTAINER */
.flip-card {
    perspective: 1000px;
    height: 220px;
}

/* INNER */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* HOVER FLIP (desktop) */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
}

/* FRONT */
.flip-card-front {
    z-index: 2;
}

/* BACK */
.flip-card-back {
    /* background: #fff; */
    background-image: url('../images/offeringcard.png');
    transform: rotateY(180deg);
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* SCROLLABLE CONTENT */
.flip-content {
    overflow-y: auto;
    margin-top: 10px;
    flex-grow: 1;
}

/* OPTIONAL SCROLL STYLE */
.flip-content::-webkit-scrollbar {
    width: 4px;
}

.flip-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
/* ===innerpage-faq=== */
.innerpage-faq{
	padding-top:60px;
}
/* ===certificate=== */

.certificate-img img {
    width: 100%;
}

.innerpage-certificate {
    padding: 60px 0;
}


/* ===BOTTOM NAV=== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    /* background: #1F2269; */
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 10px;
    z-index: 999;
}

.bottom-nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.bottom-nav a.active {
    color: yellow;
    font-weight: 600;
}



/* ====gallery page==== */
.gallery-banner {
    background-image: url('../images/gallery.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;


}

.gallery-banner::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.6);
}

.gallery {
    padding: 60px 0;
}

.gallery-img img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
}

input[name="date-639"] {
    background: url("https://cdn-icons-png.flaticon.com/512/747/747310.png") no-repeat right 10px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}